html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  cursor: default;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* href */
.href {
  color: white;
  text-decoration: none;
}

/* dash  */
.dash {
  width: 100px;
}

/* navigation bar and animation */
.navbar {
  width: 100%;
  background-color: black;
  height: 7rem;
  opacity: 0.8;
  animation: navcome 1s linear 1;
  transition: all 0.8s linear;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: fixed;
  z-index: 10;
}
@keyframes navcome {
  from {
    height: 0rem;
  }
  to {
    height: 7rem;
  }
}
.nav-height {
  height: 100vh;
}

/* nav content  */
.logo {
  height: 4rem;
  width: 29rem;
}
.dropdown-bur {
  height: 4rem;
  float: right;
  cursor: pointer;
  transition: all 1s linear;
}
.arrow {
  width: 8.2rem;
}
.hide {
  display: none;
}
.nav-btn {
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-btns {
  font-family: "Passion One", cursive;
  color: white;
  text-align: center;
  font-size: 4rem;
  cursor: pointer;
  margin-bottom: 3rem;
  background-color: black;
  width: max-content;
  border: none;
  outline: none;
}
.nav-btns:hover {
  color: red;
}

/* section home */
.home-section {
  background-image: url("scenery.webp");
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.slide {
  color: white;
  font-size: 9rem;
  /* transform: scale(1.2); */
  margin-bottom: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.6s linear;
}
/*
@keyframes slider {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
} */
.tag {
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  background-color: black;
  padding: 3px;
  margin-bottom: 30px;
  word-spacing: 0.6rem;
  letter-spacing: 0.1rem;
  opacity: 0;
  transition: all 0.8s linear;
}
.dis-btn {
  position: relative;
  font-size: 15px;
  color: white;
  padding: 10px 50px;
  background-color: rgb(172, 5, 5);
  border-radius: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-bottom: 30px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s linear;
}
.dis-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: -35px;
  height: 100%;
  width: 30px;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(20deg) translateX(0);
}
.dis-btn:hover:after {
  transition: all 0.8s linear;
  transform: skewX(20deg) translateX(300px);
}

/* section about us  */
.about-section {
  width: 100%;
  height: 100%;
  background-color: rgb(51, 50, 50);
  padding: 8rem 10rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-tag {
  font-size: 7rem;
  text-align: center;
  color: white;
}
.about-2 {
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
}
.iframe {
  width: 80%;
  height: 46vh;
  margin-bottom: 40px;
  box-shadow: 14px 14px 15px black;
}
.about-para {
  font-size: 1.5rem;
  width: 80%;
  padding: 1rem 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  color: white;
  word-spacing: 2px;
  display: flex;
  flex-direction: column;
}
.comma {
  width: 5rem;
  height: 5rem;
  margin: 7px;
  image-rendering: pixelated;
}

/* pricing section  */
.pricing-section {
  width: 100%;
  height: 100%;
  background-color: black;
  padding: 20rem 15rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pricing-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-tag {
  font-size: 7rem;
  text-align: center;
  color: white;
}
.swiper-container {
  width: 60%;
  height: 100%;
  padding: 5px;
  padding-bottom: 100px;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 270px;
  height: 100%;
  background-color: rgb(39, 39, 39);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}
.slide-tag {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  font-size: 15px;
  padding: 10px 10px;
  margin: 0;
}
.price {
  font-size: 50px;
  color: white;
  text-align: center;
  font-weight: bolder;
  margin: 0;
  padding: 10px;
}
.item {
  text-align: center;
  font-size: 15px;
  margin: 0;
  padding: 8px;
}
.btn {
  color: white;
  border: none;
  outline: none;
  padding: 15px 30px;
  border-radius: 25px;
  width: fit-content;
  margin-top: 20px;
  align-self: center;
  cursor: pointer;
}

/* contact section */
.contact-section {
  width: 100%;
  height: 100%;
  background-color: #1f1d1d;
  padding: 20vh 20vh 15vh 15vh;
  box-sizing: border-box;
  margin-bottom: 0;
}
.contact-nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact-divs {
  width: 15rem;
  height: 20rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-img {
  width: 5rem;
  height: 10rem;
  margin-bottom: 10px;
}
.contact-type {
  font-family: "Passion One", cursive;
  font-size: 3rem;
  margin: 0;
  color: white;
}
.contact-thing {
  color: white;
  margin-bottom: 0;
}
.form-div {
  display: flex;
  width: 50%;
  height: 50vh;
  flex-direction: column;
}
.form {
  display: flex;
  flex-direction: column;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-tag {
  font-size: 7rem;
  color: white;
  text-align: center;
}
.get-in {
  font-size: 3rem;
  text-align: center;
  color: white;
  font-weight: bold;
}
.form-ele {
  height: 40px;
  border: none;
  margin-bottom: 10px;
  background-color: grey;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  padding-left: 5px;
  box-sizing: border-box;
}

/* footer  */
.footer {
  margin: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 2vh 10vh 2vh 10vh;
  width: 100%;
  background-color: rgb(51, 50, 50);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.final-tags {
  font-size: 2rem;
  color: white;
  font-family: "Passion One", cursive;
  margin-right: 1.5rem;
  cursor: pointer;
}
.final-tags:hover {
  color: red;
}

@media only screen and (max-width: 420px) {
  html {
    font-size: 50%;
  }
  .slide {
    font-size: 6rem;
  }
  .about-section,
  .pricing-section {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10rem;
  }
  .about-1,
  .about-2,
  .about-para,
  .pricing-1,
  .swiper-container {
    width: 100%;
  }
  .iframe {
    width: 90%;
    height: 46vh;
    margin-bottom: 40px;
    align-self: center;
    box-shadow: 5px 5px 10px black;
  }
  .contact-section,
  .footer {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-divs {
    margin-left: 0.5rem;
  }
  .contact-form,
  .contact-tag,
  .form-div,
  .contact-tag-parent {
    width: 100%;
  }
}

@media only screen and (max-width: 335px) {
  html {
    font-size: 40%;
  }
  .slide {
    font-size: 5rem;
  }
  .about-section,
  .pricing-section {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10rem;
  }
  .about-1,
  .about-2,
  .about-para,
  .pricing-1,
  .swiper-container {
    width: 100%;
  }
  .iframe {
    width: 90%;
    height: 46vh;
    margin-bottom: 40px;
    box-shadow: 5px 5px 10px black;
  }
  .contact-section {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-divs {
    margin-left: 0.5rem;
  }
  .contact-form,
  .contact-tag,
  .form-div,
  .contact-tag-parent {
    width: 100%;
  }
}
