/*
font-family: 'Lilita One', cursive;
font-family: 'Luckiest Guy', cursive;
font-family: 'Titan One', cursive;
font-family: 'Pacifico', cursive;
font-family: 'Righteous', cursive;

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Righteous&display=swap" rel="stylesheet">
*/
body {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.hidden {
  opacity: 0;
  filter: blur(5px) 1s;
  transition: all 2s;
}

.show {
  opacity: 1;
}

.empty-box {
  width: 100%;
  height: 120px;
}

@keyframes left-to-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.navbar {
  animation: left-to-right 1.5s ease-out;
  width: 100%;
  height: auto;
  background-color: #176BB7;
  position: fixed;
  top: 0;
  z-index: 100;
}

.container {
  padding-top: 30px;
  display: flex;
  align-items: flex-end;
}

.navbar-left {
  flex: 1;
  height: 100%;
  align-items: flex-end;
  display: flex;
}
.navbar-left h1 {
  margin: 0;
  color: #DAFFFB;
  font-family: "Titan One", cursive;
  font-size: 55px;
  font-weight: 100;
  cursor: pointer;
}

.navbar-right {
  height: 56px;
}
.navbar-right i {
  display: none;
  font-size: 30px;
  color: #DAFFFB;
  cursor: pointer;
}
.navbar-right #sideMenuBar {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.navbar-right #sideMenuBar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.navbar-right #sideMenuBar ul li {
  padding-left: 10px;
}
.navbar-right #sideMenuBar ul li a {
  color: #DAFFFB;
  text-decoration: none;
  font-family: "Changa One", cursive;
  font-size: 20px;
  font-weight: lighter;
  padding: 5px 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
}
.navbar-right #sideMenuBar ul li a:hover {
  color: #176BB7;
  background-color: #DAFFFB;
  transition: 0.6s;
}

.slider-item {
  height: 100vh;
}

.slider-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.about-sl {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-sl-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#line {
  height: 300px;
  background-color: #001C30;
}

.line {
  margin: 0;
  padding: 0;
  width: 2px;
}

.about-sl-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-sl-heading h1 {
  font-weight: 500;
  font-size: 50px;
  font-family: "Titan One", cursive;
  text-align: center;
  color: #001C30;
}

.about-sl-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 5%;
}
.about-sl-details h4 {
  padding-top: 20px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  font-family: "Righteous", cursive;
  color: #001C30;
}
.about-sl-details h2 {
  padding: 40px 0px 40px 0px;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  font-family: "Pacifico", cursive;
  color: #001C30;
}

.picture-gallery {
  width: 100%;
  padding: 0px 5%;
  max-height: 100vh;
  overflow: scroll;
}

.picture-gallery::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.item {
  height: 40vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.picture-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.packagers {
  display: flex;
  justify-content: center;
  align-items: center;
}
.packagers #tour-more-details {
  position: absolute;
  height: auto;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #001C30;
  color: #DAFFFB;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  -moz-border-radius: 50px;
}
.packagers #tour-more-details .tour-detail-box-1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-1-price {
  display: none;
  flex-direction: column;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-1-price h4 {
  padding: 0px 10% 0px 10%;
  font-size: 20px;
  text-align: center;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-2-price {
  display: none;
  flex-direction: column;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-2-price h4 {
  padding: 0px 10% 0px 10%;
  font-size: 20px;
  text-align: center;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-3-price {
  display: none;
  flex-direction: column;
}
.packagers #tour-more-details .tour-detail-box-1 #tour-price-details #tour-3-price h4 {
  padding: 0px 10% 0px 10%;
  font-size: 20px;
  text-align: center;
}
.packagers #tour-more-details .tour-detail-box-1 ul {
  padding-bottom: 5%;
}
.packagers #tour-more-details .tour-detail-box-1 ul li {
  padding-right: 10px;
}
.packagers #tour-more-details #tour-line {
  height: 300px;
  border: 1px solid #DAFFFB;
}
.packagers #tour-more-details .tour-detail-box-2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
}
.packagers #tour-more-details .tour-detail-box-2 .tour-days-details #tour-1-details {
  display: none;
}
.packagers #tour-more-details .tour-detail-box-2 .tour-days-details #tour-2-details {
  display: none;
}
.packagers #tour-more-details .tour-detail-box-2 .tour-days-details #tour-3-details {
  display: none;
}
.packagers #tour-more-details .tour-detail-box-2 ul li {
  padding-bottom: 5px;
  padding-right: 10px;
}
.packagers #tour-more-details i {
  cursor: pointer;
  position: absolute;
  top: 10%;
  right: 5%;
}

.packagers-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.packager {
  height: 500px;
  padding: 0;
  position: relative;
}
.packager img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  -moz-border-radius: 50px;
}

.tours {
  width: 100%;
  height: 100%;
  padding: 5%;
  display: flex;
  position: absolute;
  top: 0;
}
.tours .tour-1 {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  color: #DAFFFB;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.tours .tour-1 .tour-name {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Titan One", cursive;
}
.tours .tour-1 h4 {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Righteous", cursive;
}
.tours .tour-1 .tour-contact {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  background-color: #25D366;
  animation: moveUpDown 1s linear infinite;
  border: 1px solid #001C30;
}
.tours .tour-1 .tour-contact i {
  font-size: 30px;
  cursor: pointer;
  transition: transform 1s;
}
.tours .tour-1 .tour-contact:hover i {
  transform: rotateY(360deg);
}
.tours .tour-1 button {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  width: 100px;
  height: 50px;
  background-color: #DAFFFB;
  color: #193498;
  font-size: 20px;
  font-weight: 900;
  border: 1px solid #001C30;
}
.tours .tour-2 {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  color: #DAFFFB;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.tours .tour-2 .tour-name {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Titan One", cursive;
}
.tours .tour-2 h4 {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Righteous", cursive;
}
.tours .tour-2 .tour-contact {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  background-color: #25D366;
  animation: moveUpDown 1s linear infinite;
  border: 1px solid #001C30;
}
.tours .tour-2 .tour-contact i {
  font-size: 30px;
  cursor: pointer;
  transition: transform 1s;
}
.tours .tour-2 .tour-contact:hover i {
  transform: rotateY(360deg);
}
.tours .tour-2 button {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  width: 100px;
  height: 50px;
  background-color: #DAFFFB;
  color: #193498;
  font-size: 20px;
  font-weight: 900;
  border: 1px solid #001C30;
}
.tours .tour-3 {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  color: #DAFFFB;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.tours .tour-3 .tour-name {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Titan One", cursive;
}
.tours .tour-3 h4 {
  font-weight: 400;
  text-align: center;
  padding-bottom: 5%;
  font-family: "Righteous", cursive;
}
.tours .tour-3 .tour-contact {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  background-color: #25D366;
  animation: moveUpDown 1s linear infinite;
  border: 1px solid #001C30;
}
.tours .tour-3 .tour-contact i {
  font-size: 30px;
  cursor: pointer;
  transition: transform 1s;
}
.tours .tour-3 .tour-contact:hover i {
  transform: rotateY(360deg);
}
.tours .tour-3 button {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  width: 100px;
  height: 50px;
  background-color: #DAFFFB;
  color: #193498;
  font-size: 20px;
  font-weight: 900;
  border: 1px solid #001C30;
}

.about-us {
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
}
.about-us-box img {
  width: 250px;
}
.about-us-box .about-us-name {
  padding-top: 10%;
}
.about-us-box .about-us-name h4 {
  font-weight: 400;
  text-align: center;
  font-family: "Righteous", cursive;
}

.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 200px;
}
.contact-us .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us .container .contact-us-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-us .container .contact-us-box input {
  margin-bottom: 5%;
}
.contact-us .container .contact-us-box .contact-us-button-box {
  padding-top: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #176BB7;
}
.footer h4 {
  font-family: "Righteous", cursive;
  font-weight: 400;
  font-size: 40px;
  color: #DAFFFB;
}
.footer .footer-line {
  width: 80%;
  height: 2px;
  background-color: #DAFFFB;
}
.footer .footer-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .footer-details .footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-details .footer-contact .footer-contact-left {
  padding-right: 25px;
}
.footer .footer-details .footer-contact .footer-contact-right {
  padding-left: 25px;
}
.footer .footer-details .footer-contact .footer-contact-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
}
.footer .footer-details .footer-contact .footer-contact-box i {
  color: #DAFFFB;
  font-size: 20px;
}
.footer .footer-details .footer-contact .footer-contact-box a {
  text-decoration: none;
}
.footer .footer-details .footer-contact .footer-contact-box a p {
  padding: 0;
  margin: 0;
  padding-left: 20px;
  font-family: "Righteous", cursive;
  font-size: 18px;
  color: #DAFFFB;
  text-align: center;
}

@media (max-width: 1200px) {
  .navbar-left h1 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .navbar-left {
    display: flex;
  }
  .navbar-left h1 {
    font-size: 60px;
  }
  .navbar-right {
    display: flex;
    align-items: center;
    justify-content: right;
  }
  .navbar-right i {
    display: flex;
    font-size: 40px;
    z-index: 50;
  }
  .navbar-right #sideMenuBar {
    width: 50%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #64CCC5;
    opacity: 0.9;
    padding-top: 15vh;
    align-items: flex-start;
    border-radius: 30px 0px 0px 30px;
    transform: translateX(100%);
    visibility: hidden;
  }
  .navbar-right #sideMenuBar ul {
    flex-direction: column;
  }
  .navbar-right #sideMenuBar ul li {
    padding-bottom: 5vh;
  }
  .navbar-right #sideMenuBar ul li a {
    font-size: 40px;
  }
  #line {
    display: none;
  }
  .packagers #tour-more-details #tour-line {
    height: 400px;
  }
  .packagers #tour-more-details i {
    top: 5%;
    right: 3%;
  }
  .footer .footer-line {
    width: 60%;
  }
  .footer .footer-details .footer-contact {
    flex-direction: column;
    justify-content: center;
  }
  .footer .footer-details .footer-contact .footer-contact-left {
    padding-right: 0px;
  }
  .footer .footer-details .footer-contact .footer-contact-right {
    padding-left: 0px;
  }
  .footer .footer-details .footer-contact .footer-contact-box {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .packager img {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
  }
  .tour-contact {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
  }
  .packagers #tour-more-details {
    height: auto;
    flex-direction: column;
  }
  .packagers #tour-more-details .tour-detail-box-1 {
    padding: 10%;
  }
  .packagers #tour-more-details .tour-detail-box-2 {
    padding: 10%;
  }
  .packagers #tour-more-details #tour-line {
    width: 80%;
    height: 2px;
  }
  .packagers #tour-more-details i {
    top: 3%;
    right: 3%;
  }
}
@media (max-width: 576px) {
  .navbar-left {
    padding-left: 15px;
  }
  .navbar-left h1 {
    font-size: 50px;
  }
  .navbar-right i {
    font-size: 35px;
    padding-right: 15px;
  }
  .navbar-right #sideMenuBar {
    width: 70%;
  }
  .navbar-right #sideMenuBar ul li a {
    font-size: 30px;
  }
  .about-sl {
    padding: 0;
  }
  .packagers #tour-more-details {
    height: auto;
    flex-direction: column;
  }
  .packagers #tour-more-details .tour-detail-box-1 ul {
    padding-top: 6%;
  }
  .footer {
    height: 300px;
  }
  .footer h4 {
    font-weight: 400;
  }
  .footer .footer-details .footer-contact .footer-contact-box i {
    font-size: 18px;
  }
  .footer .footer-details .footer-contact .footer-contact-box a p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
