@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background-color: #fff;
}
html::-webkit-scrollbar-thumb {
  background-color: #8e44ad;
}

section {
  padding: 5rem 10%;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
}
.heading {
  background-size: cover !important;
  background-position: center !important;
  padding-top: 10rem;
  padding-bottom: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading h1 {
  font-size: 10rem;
  text-transform: uppercase;
  color: #fff;
  color:#000000;
  text-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: #222;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.7rem;
  padding: 1rem 3rem;
  cursor: pointer;
}
.btn:hover {
  background: #8e44ad;
}

.heading-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 6rem;
  text-transform: uppercase;
  color: #222;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.header .logo {
  font-size: 2.5rem;
  color: #222;
}
.header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  color: #222;
}
.header .navbar .logout{
  color: #ff0000;
}
.header .navbar .logout:hover{
  color: rgb(192, 16, 16);
}
.header .navbar a:hover {
  color: #8e44ad;
}



.home {
  padding: 0;
  padding-top: 100px;
}
.home .slide {
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  min-height: 0rem;
}
.home .slide .content {
  width: 85rem;
  display: none;
}
.home .swiper-slide-active .content {
  display: inline-block;
}
.home .slide .content span {
  display: block;
  font-size: 2.2rem;
  color: rgb(255, 255, 255);
  padding-bottom: 1rem;
  animation: fadeIn 0.2s linear backwards 0.2s;
}
.home .slide .content h3 {
  font-size: 6vw;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  animation: fadeIn 0.2s linear backwards 0.4s;
}
.home .slide .content .btn {
  animation: fadeIn 0.2s linear backwards 0.6s;
}
.home .swiper-button-next, .home .swiper-button-prev {
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
  height: 7rem;
  width: 7rem;
  background: #fff;
  color: #222;
}
.home .swiper-button-next:hover, .home .swiper-button-prev:hover {
  background: #8e44ad;
  color: #fff;
}
.home .swiper-button-next::after {
  font-size: 2rem;
}
.home .swiper-button-prev {
  right: 7rem;
}
.home .swiper-button-prev::after {
  font-size: 2rem;
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
.services .box-container .box {
  padding: 3rem 2rem;
  text-align: center;
  background: #8e44ad;
  cursor: pointer;
}
.services .box-container .box:hover {
  background: #222;
}
.services .box-container .box img {
  height: 7rem;
}
.services .box-container .box h3 {
  color: #fff;
  font-size: 1.7rem;
  padding-top: 1rem;
}

.home-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-about .image {
  flex: 1 1 41rem;
}
.home-about .image img {
  width: 100%;
}
.home-about .content {
  flex: 1 1 41rem;
  padding: 3rem;
  background: #eee;
}
.home-about .content h3 {
  font-size: 3rem;
  color: #222;
}
.home-about .content p {
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 2;
  color: #222;
}

.home-packages {
  background: #eee;
}
.home-packages .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.home-packages .box-container .box {
  border: 0.1rem solid #222;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.home-packages .box-container .box:hover .image img {
  transform: scale(1.1);
}
.home-packages .box-container .box .image {
  height: 25rem;
  overflow: hidden;
}
.home-packages .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.home-packages .box-container .box .content {
  padding: 2rem;
  text-align: center;
}
.home-packages .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #222;
}
.home-packages .box-container .box .content p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 2;
  padding: 1rem 0;
}
.home-packages .load-more {
  text-align: center;
  margin-top: 2rem;
}

.home-offer {
  text-align: center;
}
.home-offer .content {
  max-width: 70rem;
  margin: 0 auto;
}
.home-offer .content h3 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #222;
}
.home-offer .content p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 2;
  padding: 1rem 0;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.about .image {
  flex: 1 1 41rem;
}
.about .image img {
  width: 100%;
}
.about .content {
  flex: 1 1 41rem;
  text-align: center;
}
.about .content h3 {
  font-size: 3rem;
  color: #222;
}
.about .content p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 2;
  padding: 1rem 0;
}
.about .content .icons-container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}
.about .content .icons-container .icons {
  background: #eee;
  padding: 2rem;
  flex: 1 1 16rem;
}
.about .content .icons-container .icons i {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #8e44ad;
}
.about .content .icons-container .icons span {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}

.reviews {
  background: #eee;
}
.reviews .slide {
  padding: 2rem;
  border: 0.1rem solid #222;
  background: #fff;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reviews .slide .stars {
  padding-bottom: 0.5rem;
}
.reviews .slide .stars i {
  font-size: 1.7rem;
  color: #8e44ad;
}
.reviews .slide p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 2;
  padding: 1rem 0;
}
.reviews .slide h3 {
  font-size: 2rem;
  color: #222;
}
.reviews .slide span {
  font-size: 1.5rem;
  color: #8e44ad;
  display: block;
}
.reviews .slide img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  margin-top: 1rem;
}

.packages .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.packages .box-container .box {
  border: 0.1rem solid #222;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  display: none;
}
.packages .box-container .box:nth-child(1), .packages .box-container .box:nth-child(2), .packages .box-container .box:nth-child(3), .packages .box-container .box:nth-child(4), .packages .box-container .box:nth-child(5), .packages .box-container .box:nth-child(6) {
  display: inline-block;
}
.packages .box-container .box:hover .image img {
  transform: scale(1.1);
}
.packages .box-container .box .image {
  height: 25rem;
  overflow: hidden;
}
.packages .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.packages .box-container .box .content {
  padding: 2rem;
  text-align: center;
}
.packages .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #222;
}
.packages .box-container .box .content p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 2;
  padding: 1rem 0;
}
.packages .load-more {
  text-align: center;
  margin-top: 2rem;
}

.booking .book-form {
  padding: 2rem;
  background: #eee;
}
.booking .book-form .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.booking .book-form .flex .inputBox {
  flex: 1 1 41rem;
}
.booking .book-form .flex .inputBox input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #000000;
  text-transform: none;
  margin-top: 1.5rem;
  border: 0.1rem solid #222;
}
.booking .book-form .flex .inputBox input:focus {
  background: #222;
  color: #fff;
}
.booking .book-form .flex .inputBox input:focus::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.booking .book-form .flex .inputBox input:focus::placeholder {
  color: rgb(255, 255, 255);
}
.booking .book-form .flex .inputBox select {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #000000;
  text-transform: none;
  margin-top: 1.5rem;
  border: 0.1rem solid #222;
}
.booking .book-form .flex .inputBox select:focus {
  background: #222;
  color: #fff;
}
.booking .book-form .flex .inputBox select:focus::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.booking .book-form .flex .inputBox select:focus::placeholder {
  color: rgb(255, 255, 255);
}
.booking .book-form .flex .inputBox span {
  font-size: 1.5rem;
  color: #000000;
}
.booking .book-form .btn {
  margin-top: 2rem;
}

.error {
  color: red;
}

.footer {
  background-color: #000000;
  
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}
.footer .box-container .box h3 {
  color: #fff;
  font-size: 2.5rem;
  padding-bottom: 2rem;
}
.footer .box-container .box a {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
  display: block;
}
.footer .box-container .box a i {
  color: #8e44ad;
  padding-right: 0.5rem;
  transition: 0.2s linear;
}
.footer .box-container .box a:hover i {
  padding-right: 2rem;
}
.footer .credit {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 0.1rem solid rgb(255, 255, 255);
  font-size: 2rem;
  color: #fff;
}
.footer .credit span {
  color: #8e44ad;
  color:white;
}

/* media queries  */
@media (max-width: 1200px) {
  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .home .slide .content h3 {
    font-size: 10vw;
  }
}

.dropbtn{
  display: none;
}

.dropdown {
display: none;
}

@media (max-width: 768px) {
  .heading h1 {
    font-size: 4rem;
  }

  

  .header .navbar {
      display: none;
}

.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  display: inline-block;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: absolute;
  right: 5px;
  top:5px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .heading-title {
    font-size: 3.5rem;
    color: black;
  }
}/*# sourceMappingURL=styles.css.map */