/* content css */
#content {
  margin: 0px 0px;
}

#content .find-box {
  position: relative;
  height: 62vh;
  width: 100vw;
  text-align: center;
  background: linear-gradient(rgba(72, 146, 251, 0.6), rgba(174, 215, 213, 0.6)),
    url(../image/banner.png), no-repeat center center;
  background-size: cover;
}

#content .find-box h1 {
  margin-top: 0;
  padding-top: 12vh;
  font-size: 50px;
  color: white;
  text-shadow: 4px 4px black;
  position: relative;
  animation: slideInLeft 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

#content .find-box form {
  position: relative;
  display: inline-block;
  animation: slideInRight 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#content .find-box input {
  margin-top: 0px;
  color: rgb(5, 38, 255);
  font-size: 20px;
  padding: 8px 10px;
  width: 30vw;
  font-family: "Times New Roman", Times, serif;
  border: 2px solid black;
  border-right: 0;
  box-shadow: 5px 5px black;
}
#content .find-box input:focus {
  outline: none;
}

#content .find-box button {
  font-size: 20px;
  padding: 8px;
  color: black;
  font-family: "Times New Roman", Times, serif;
  border: 2px solid black;
  border-left: 0;
  box-shadow: 5px 5px black;
}
#content .find-box button:hover {
  cursor: pointer;
}

#content .find-box::after {
  bottom: 0;
  background: url(../image/overlay-bottom.png) bottom center no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 100vw;
  height: 80px;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
}

#content .find-box .find-result {
  /* display: none; */
  position: fixed;
  top: 20vh;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  height: 70vh;
  width: 50vw;
  border: solid;
  background-color: white;
  z-index: 2;
}

#content .find-box .find-result img {
  margin-top: 40px;
  border: solid;
  border-radius: 15px;
  width: 200px;
}

#content .find-box .find-result > button {
  position: fixed;
  right: 5px;
  top: 5px;
  width: 40px;
}

#content .find-box .find-result .list-class {
  display: flex;
  justify-content: center;
}
.popup.active {
  display: block;
  width: 436px;
  background-color: cadetblue;
  border-radius: 10px;
}

#content .find-box .find-result .list-class button {
  margin: 30px 5px;
  background-color: rgb(0, 132, 255);
  width: 15vw;
}

#content .find-box .find-result .list-class p {
  font-size: 20px;
  margin-top: 30px;
}

#content .about {
  text-align: center;

}

#content .about h1 {
  font-size: 36px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 20px;
}

#content .about .info {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

#content .about .info-text {
  margin: 0 50px;
  width: 50vw;
  margin-left: 20px;
  text-align: left;
}

#content .about .info-text p {
  font-size: 20px;
}

#content .about img {
  width: 340px;
  border: solid;
  margin: 0 20px;
}

@media only screen and (max-width: 600px) {
  #content .find-box {
    position: relative;
    text-align: center;
    background: linear-gradient(rgba(72, 146, 251, 0.6), rgba(9, 112, 255, 0.6)),
      url(../image/banner.png), no-repeat center center;
    background-size: contain;
    height: 200px;
  }
  #content .find-box h1 {
    padding-top: 5vh;
    font-size: 20px;
  }
  #content .find-box input {
    font-size: 12px;
    width: 60vw;
  }
  #content .find-box button {
    font-size: 12px;
  }
  #content .find-box .find-result {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    top: 10vh;
    height: fit-content;
    padding-bottom: 40px;
    width: 80vw;
    border: solid;
    background-color: white;
    z-index: 2;
  }
  #content .find-box .find-result .list-class button {
    margin: 30px 5px;
    background-color: rgb(0, 132, 255);
    width: 60vw;
  }
  #content .about h1 {
    font-size: 30px;
    text-align: center;
  }
  #content .about .info {
    flex-wrap: wrap; 
  }

  #content .about .info-text {
    width: 100vw; 
    text-align: justify;
  }
  #content .about .tg {
    display: block;
  }
  #content .about .tg h2 {
    font-size: 16px;
  }
}
