@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
  --orange: #184D47;
  --light-orange: #96BB7C;
  --white: #fff;
  --black: black;
  --light-color: rgba(0, 0, 0, .1);
  --grey: #666;
  --grey-shade: #747d8c;
  --border: rgba(255, 255, 255, .2);
  --black-shade: rgba(0, 0, 0, .7);
  --very-light-green: #D6EFC7;
}

* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection {
  background: var(--orange);
  color: var(--white);
}

.body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  padding: 2.5rem 0 4rem 0;
}

.heading span {
  font-size: 3.5rem;
  background: var(--very-light-green);
  color: var(--orange);
  border-radius: .5rem;
  padding: .2rem 1rem;
}

.heading span.space {
  background: none;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: .8rem 3rem;
  border: .2rem solid var(--orange);
  cursor: pointer;
  font-size: 1.7rem;
}

.home .content .btn {
  margin-top: 5rem;
}

.btn:hover {
  background: var(--light-orange);
  color: var(--orange);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 9%;
}

.navbar-color {
  background: var(--very-light-green);
}

.header a img {
  height: 6rem;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bolder;
  color: var(--white);
  text-transform: uppercase;
}

.header .logo span {
  color: var(--orange);
}

.header .navbar a {
  color: var(--orange);
  font-size: 2rem;
  margin: 0 .8rem;
}

.header .navbar a:hover {
  color: var(--light-orange);
}

.header .icons i {
  font-size: 2.5rem;
  color: var(--orange);
  cursor: pointer;
  margin-right: 2rem;
}

.header .icons i:hover {
  color: var(--orange);
}

.header .search-bar-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: var(--grey-shade);
  border-top: .1rem solid var(--border);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.header .search-bar-container.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header .search-bar-container #search-bar {
  width: 100%;
  padding: 1rem;
  text-transform: none;
  color: var(--grey-shade);
  font-size: 1.7rem;
  border-radius: .5rem;
}

.header .search-bar-container label {
  color: var(--white);
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

.header .search-bar-container label:hover {
  color: var(--orange);
}

.login-form-container {
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 10000;
  min-height: 100vh;
  width: 100%;
  background: var(--black-shade);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-container.active {
  top: 0;
}

.login-form-container form {
  margin: 2rem;
  padding: 1.5rem 2rem;
  border-radius: .5rem;
  background: var(--white);
  width: 50rem;
}

.login-form-container form h3 {
  font-size: 3rem;
  color: #444;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 0;
}

.login-form-container form .box {
  width: 100%;
  padding: 1rem;
  font-size: 1.7rem;
  color: var(--grey-shade);
  margin: .6rem 0;
  border: .1rem solid rgba(0, 0, 0, .3);
  text-transform: none;
}

.login-form-container form .box:focus {
  border-color: var(--orange);
  ;
}

.login-form-container form #remember {
  margin: 2rem 0;
}

.login-form-container form label {
  font-size: 1.5rem;
}

.login-form-container form .btn {
  display: block;
  width: 100%;
}

.login-form-container form p {
  padding: .5rem 0;
  font-size: 1.5rem;
  color: var(--grey);
}

.login-form-container form p a {
  color: var(--orange);
}

.login-form-container form p a:hover {
  color: var(--grey-shade);
  text-decoration: underline;
}

.login-form-container #form-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 5rem;
  color: var(--white);
  cursor: pointer;
}

#menu-bar {
  color: var(--white);
  border: .1rem solid var(--white);
  border-radius: .5rem;
  font-size: 3rem;
  padding: .5rem 1.2rem;
  cursor: pointer;
  display: none;
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content {
  text-align: center;
}

.home .content h3 {
  font-size: 4.5rem;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 .3rem .5rem var(--light-color);
}

.home .content p {
  font-size: 2.5rem;
  color: var(--white);
  padding: .5rem 0;
}

.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home .controls {
  padding: 1rem;
  border-radius: 5rem;
  background: var(--black-shade);
  position: relative;
  top: 13rem;
}

.home .controls .vid-btn {
  height: 1rem;
  width: 1rem;
  display: inline-block;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  margin: 0 .5rem;
}

.home .controls .vid-btn.active {
  background: var(--orange);
}

.book .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.book .row .image {
  flex: 1 1 40rem;
}

.book .row .image img {
  width: 100%;
}

.book .row form {
  flex: 1 1 40rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem var(--light-color);
  border-radius: .5rem;
}

.book .row form .inputBox {
  padding: .5rem 0;
}

.book .row form .inputBox input {
  width: 100%;
  padding: 1rem;
  border: .1rem solid var(--light-color);
  font-size: 1.7rem;
  color: var(--grey-shade);
  text-transform: none;
}

.book .row form .inputBox h3 {
  font-size: 2rem;
  padding: 1rem 0;
  color: var(--grey);
}

.packages .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.packages .box-container .box {
  flex: 1 1 30rem;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem var(--light-color);
}

.packages .box-container .box img {
  /*height: 25rem;*/
  width: 40rem !important;
  object-fit: contain;
  border-bottom: 0.2rem solid var(--orange);
}

.packages .box-container .box .content {
  padding: 2rem;
}

.packages .box-container .box .content h3 {
  font-size: 2rem;
  color: var(--grey-shade);
}

.packages .box-container .box .content h3 i {
  color: var(--orange);
}

.packages .box-container .box .content p {
  font-size: 1.7rem;
  color: var(--grey);
  padding: 1rem 0;
}

.packages .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--orange);
}

.packages .box-container .box .content .price {
  font-size: 2rem;
  color: var(--grey-shade);
  padding-top: 1rem;
}

.packages .box-container .box .content .price span {
  color: var(--grey);
  font-size: 1.5rem;
  text-decoration: line-through;
}


.services .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services .box-container .box {
  flex: 1 1 30rem;
  border-radius: .5rem;
  padding: 1rem;
  text-align: center;
}

.services .box-container .box i {
  padding: 1rem;
  font-size: 5rem;
  color: var(--orange);
}

.services .box-container .box h3 {
  font-size: 2.5rem;
  color: var(--grey-shade);
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: var(--grey);
  padding: 1rem 0;
}

.services .box-container .box:hover {
  box-shadow: 0 1rem 2rem var(--light-orange);
}

.gallery .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery .box-container .box {
  overflow: hidden;
  box-shadow: 0 1rem 2rem var(--light-color);
  border: 1rem solid var(--white);
  border-radius: .5rem;
  flex: 1 1 30rem;
  height: 25rem;
  position: relative;
}

.gallery .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .box-container .box .content {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: var(--black-shade);
  padding: 2rem;
  padding-top: 5rem;
}

.gallery .box-container .box:hover .content {
  top: 0;
}

.gallery .box-container .box .content h3 {
  font-size: 2.5rem;
  color: var(--light-orange);
}

.gallery .box-container .box .content p {
  font-size: 1.5rem;
  color: #eee;
  padding: .5rem 0;
}

.review .review-slider {
  padding-bottom: 2rem;
}

.review .box {
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1rem 2rem var(--light-color);
  border-radius: .5rem;
}

.review .box img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review .box h3 {
  color: var(--grey-shade);
  font-size: 2.5rem;
}

.review .box p {
  color: var(--grey);
  font-size: 1.5rem;
  padding: 1rem 0;
}

.review .box .stars i {
  color: var(--orange);
  font-size: 1.7rem;
}

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.contact .row .image {
  flex: 1 1 35rem;
}

.contact .row .image img {
  width: 100%;
}

.contact .row form {
  flex: 1 1 50rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem var(--light-color);
  border-radius: .5rem;
}

.contact .row form .inputBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input,
.contact .row form textarea {
  width: 49%;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.7rem;
  color: var(--grey-shade);
  background: #f7f7f7;
  text-transform: none;
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
  width: 100%;
}

.page-management {
  margin-top: 10rem;
}

.detail-page h2 {
  text-transform: uppercase;
  font-size: 4rem;
  padding-bottom: 2rem;
}

.detail-page p {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 3rem;
}


.brand-container {
  text-align: center;
}

.footer {
  background: var(--orange);
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
  flex: 1 1 25rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: .7rem 0;
  color: var(--white);
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: .7rem 0;
  color: #eee;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.5rem;
  padding: .7rem 0;
  color: #eee;
}

.footer .box-container .box a:hover {
  color: var(--light-orange);
  text-decoration: none;
}

.footer .credit {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: normal;
  color: var(--white);
  border-top: .1rem solid var(--border);
}

.footer .credit span a {
  color: var(--very-light-green);
}




/*new*/

.packages-new .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;

}

.packages-new .box-container .box {
  flex: 1 1 30rem;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem var(--light-color);
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;

}

.packages-new .box-container .box img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  align-items: center;
}

.packages-new .box-container .box .content {
  padding: 2rem;
  align-items: center;
  text-align: center;
}

.packages-new .box-container .box .content h3 {
  font-size: 2rem;
  color: var(--grey-shade);
}

.packages-new .box-container .box .content h3 i {
  color: var(--orange);
}

.packages-new .box-container .box .content p {
  font-size: 1.7rem;
  color: var(--grey);
  padding: 1rem 0;
}

.packages-new .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--orange);
}

.packages-new .box-container .box .content .price {
  font-size: 2rem;
  color: var(--grey-shade);
  padding-top: 1rem;
}

.packages-new .box-container .box .content .price span {
  color: var(--grey);
  font-size: 1.5rem;
  text-decoration: line-through;
}

/* media queries  */
@media (min-width:1130px) {
  .footer .box-container .about-us p {
    padding-right: 4rem;
  }


}

@media (max-width:1200px) {

  html {
    font-size: 55%;
  }

  .header {
    padding: 1rem 4%;
  }

}

@media (max-width:991px) {

  section {
    padding: 2rem;
  }

}

@media (max-width:768px) {

  #menu-bar {
    display: initial;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--grey-shade);
    /* border-top: .1rem solid var(--border);*/
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    border-radius: .5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: var(--orange);
    color: var(--white);
  }

  /*new update*/
  section {
    padding: 2rem 4rem;
  }

  .packages {
    padding-right: 6rem;
    padding-left: 6rem;
  }

  .packages .box-container {
    gap: 4rem;
  }

  .header {
    background: var(--very-light-green);
    padding: 2rem 4%;
  }

  .packages .box-container .box .content {
    text-align: center;
  }

  .packages .box-container .box .content p {
    padding: 1.5rem 0;
  }

  .packages .box-container .box .content .price {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .services .box-container .box {
    box-shadow: 0 1rem 2rem var(--light-color);
  }

  .login-form-container {
    min-height: 70vh;
  }

  .packages .box-container .box img {
    height: 28rem;
    width: 100%;
    object-fit: cover;
  }

  .packages .box-container .box {
    flex: 1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
   box-shadow: 0 1rem 2rem var(--light-color);
  }

.packages .box-container .box:hover{
    box-shadow: 0 1rem 2rem var(--light-orange);
  }

  .review{
    display: none;
  }
}

@media (max-width:450px) {

  html {
    font-size: 50%;
  }

  .heading span {
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input {
    width: 100%;
  }

}