@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto+Condensed:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  color: white;
  font-size: 4.7vh;
}

a {
  text-decoration: none;
  font-size: 17px;
  color: white;
}

p {
  color: white;
  font-size: 17px;
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 10px 0;
  text-align: center;
  background-image: url("../assets/img/wall.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  padding-bottom: 23vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 36, 107, 0.2588235294);
}
header p {
  color: white;
  margin-top: 50px;
  font-weight: bold;
}
header .logo {
  display: flex;
  margin-left: 14vh;
}
header .logo img {
  max-width: 30vh;
  margin-top: 20px;
  cursor: pointer;
}
header h1 {
  margin-top: 140px;
}
header .nav {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 40px;
}
header .nav a {
  background-color: #00246b;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  color: white;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.589);
}
header .nav a img {
  max-width: 20px;
  margin-bottom: -5px;
  margin-right: 5px;
}
header .nav .call {
  margin-left: 20px;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.scroll-down img {
  margin-bottom: -170px;
  width: 60px;
}

.effect {
  transition: transform 250ms, opacity 400ms;
}

.effect:hover {
  transform: scale(1.15);
}

.thanks {
  padding-top: 50px;
}
.thanks p {
  color: rgba(0, 0, 0, 0.8078431373);
}

.contact-us {
  justify-content: center;
}

body {
  font-family: poppins;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
}

main {
  text-align: center;
}
main .check {
  background-color: #00246b;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.589);
}
main .check a {
  background-color: #cadcfc;
  padding: 12px;
  border-radius: 10px;
  color: #00246b;
}

.home {
  padding-top: 50px;
  text-align: center;
}
.home h2 {
  font-size: 4vh;
  color: rgba(0, 0, 0, 0.8078431373);
  padding-bottom: 30px;
}
.home p {
  color: rgba(0, 0, 0, 0.8078431373);
  padding-bottom: 30px;
}

.features {
  text-align: left;
  display: flex;
  justify-content: center;
  padding-left: 230px;
  padding-right: 230px;
}
.features .step img {
  margin: 50px 100px 50px 100px;
}

.member {
  width: calc(50% - 20px);
  margin: 10px;
  padding: 20px;
  background-color: #00246b;
  border-radius: 10px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.589);
  text-align: center;
}
.member p {
  text-align: center;
  margin: 0 auto;
}
.member h2 {
  color: white;
  padding-bottom: 30px;
}
.member img {
  max-width: 50px;
}

.expandable-text {
  max-height: 80px; /* Limit the height to show only part of the text */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.more-text {
  display: inline; /* Initially hide the extra text */
}

.show-more-btn {
  background-color: #cadcfc;
  color: #00246b;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  margin-top: 15px;
  border-radius: 10px;
  font-size: 16px;
}

.vertical {
  width: calc(100% - 10px);
}

.checkin {
  padding-top: 50px;
}

.checkin-head {
  padding-bottom: 50px;
}
.checkin-head h1 {
  margin-top: 50px;
}

.contact-form {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 50vh;
  margin-bottom: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

.contact-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 15px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #218838;
}

.contact-head {
  padding-bottom: 50px;
  text-align: center;
}

.amenities div p {
  max-width: 50vh;
  padding-bottom: 10px;
}

footer {
  background: #00246b;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  padding-bottom: 10px;
  margin-top: 50px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.589);
}
footer div {
  display: flex;
  justify-content: center;
}
footer div a {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  text-decoration: underline;
}
footer div p {
  margin-bottom: 10px;
  padding-right: 20px;
}
footer img {
  max-width: 259px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .scroll-down {
    display: none;
  }
  main .check {
    padding: 20px;
  }
  main .check p {
    margin: 5px;
  }
  .home {
    padding-left: 15px;
    padding-right: 15px;
  }
  .features {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .features .member {
    width: calc(100% - 20px);
  }
  header {
    padding-bottom: 50px;
  }
  header .nav {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  header h1 {
    margin-top: 50px;
    font-size: 45px;
  }
  header .logo {
    margin-left: 0;
    justify-content: center;
  }
  header .logo a img {
    max-width: 300px;
  }
}
@media (max-width: 1656px) {
  .scroll-down img {
    margin-bottom: -150px;
  }
  .amenities {
    padding-left: 9.4%;
    padding-right: 9.4%;
  }
}
@media (max-width: 1440px) {
  .amenities {
    padding-left: 6.6%;
    padding-right: 6.6%;
  }
  .scroll-down img {
    margin-bottom: -120px;
  }
}
@media (max-width: 800px) {
  .amenities {
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */