@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}






.max-width {
  /* max-width: 1300px; */
  padding: 0 80px;
}

.section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Navigation Bar */
header {
  background: url(images/pexels-luis-rodrigues-1687575.jpg) no-repeat;
  background-size: cover;
  background-position: left;
  background-attachment: fixed;
  min-height: 100vh;
}

.nav-bar {
  width: 100%;
  padding: 20px 0;
}

.nav-bar .logo-container {
  background: rgb(59, 59, 59);
  padding: 15px 30px;
}

.nav-bar .logo-container a {
  color: mintcream;
  font-size: 25px;
}

.nav-bar ul {
  display: flex;
  list-style: none;
  /* gap: 20px; */
}

.nav-bar ul li {
  margin: 0 15px;
}

.nav-bar ul li a {
  font-size: 15px;
  font-weight: 400;
  color: mintcream;
  transition: all 0.3s ease;
}

.nav-bar ul li a:hover {
  color: #000;
}

#home-color {
  color: #f9ab30;
}

#home-color:hover {
  color: #000;
}

#book-now {
  background: #f9ab30;
  padding: 18px;
  border-radius: 2px;
}

/* Home Content */
.home .section-content {
  justify-content: center;
}

.home .caption h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.home .caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 170px;
}

/* Services Section */
.services {
  opacity: 0.9;
  background: #99999910;
}

.services .max-width {
  padding: 100px 80px;
}

.services .section-content {
  align-items: flex-start;
}

.services .column {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.services .left .box {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 40px;
  /* padding-right: 20px;
    margin-bottom: 50px; */
  transition: all 0.3s ease-in-out;
}

.services .left .box:hover {
  transform: scale(1.02);
}

.services .left .box h3 {
  line-height: 1.8;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 10px;
}

.services .left .box img {
  width: 50px;
  height: 50px;
}

.services .left .box p {
  line-height: 1.8;
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.services .right .box {
  padding-left: 50px;
}

.services .right .box h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.services .right .box p {
  line-height: 1.8;
  color: #999999;
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}

.services .right .box a {
  display: block;
  width: fit-content;
  background-color: #f9ab30;
  box-shadow: 0px 24px 36px -11px rgb(0 0 0 / 9%);
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.services .right .box a:hover {
  color: #000;
}

/* About Content */
.about {
  /* padding: 100px 80px;*/
}

.about .max-width {
  padding: 100px 80px;
}

/* .about .section-content {
    align-items: flex-start;
} */

.about .column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
}

.about .left .box {
  padding-right: 20px;
  flex-grow: 1;
  /* Tostretch the image / Fit to the container */
}

.about .left img {
  width: 100%;
  object-fit: cover;
  height: 600px;
}

.about .right .box {
  padding-left: 50px;
}

.about .right .box h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.about .right .box p {
  line-height: 1.8;
  color: #999999;
  font-size: 16px;
  font-weight: 400;
  margin: 2rem 0;
}

.about .right .box .stats-container {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

.about .right .stats {
  text-align: center;
}

.about .right .stats .card-1 {
  color: #f9ab30;
  font-size: 28px;
  font-weight: 600;
}

.about .right .stats .card-2 {
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
}

/* Best Place Destination */
.best-place-destination {
  opacity: 0.9;
  background: #99999910;
}

.best-place-destination .max-width {
  padding: 100px 80px;
}

.best-place-destination .section-content {
  display: block;
}

.best-place-destination .section-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
}

.best-place-destination .best-place-content {
  display: flex;
  column-gap: 30px;
}

.best-place-destination .best-place-content .palawan {
  background: url(images/Palawan\ Beach.jpg);
}

.best-place-destination .best-place-content .boracay {
  background: url(images/Boracay\ Beach.jpg);
}

.best-place-destination .best-place-content .batangas {
  background: url(images/Batangas\ Beach.jpg);
}

.best-place-destination .best-place-content .siargao {
  background: url(images/Siargao\ Beach.jpg);
}

.best-place-destination .best-place-content .images {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 25%;
  /* width: 100%; */
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
  /* transition: all 0.3s ease; */
}



.best-place-destination .best-place-content .text {
  position: relative;
}

.best-place-destination .best-place-content .text h3 {
  font-size: 22px;
  font-weight: 400;
  padding: 15px 0 0 15px;
  color: #fff;
}

.best-place-destination .best-place-content .text span {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  background-color: #33313b;
  color: #fff;
  padding: 4px 5px 4px 15px;
  border-radius: 20px 0 0 20px;
  /* bottom: 20px; */
  top: 250px;
  right: 0px;
  transition: all 0.3s ease;
}

.best-place-destination .best-place-content .text span:hover {
  padding: 4px 15px 4px 15px;
}

/* Tour Destination */
.tour-destination .max-width {
  padding: 100px 80px;
}

.tour-destination .section-content {
  display: block;
}

.tour-destination .section-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
}

.tour-destination .destination-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tour-destination .box {
  /* display: flex; */
  width: 31.5%;
  border: solid #99999925 2px;
  outline: none;
}

.tour-destination .row-1 {
  margin-bottom: 30px;
}

.tour-destination .box .tour-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
  /* transition: all 0.3s ease-in-out; */
}

/* .tour-destination .box .tour-image:hover {
  transform: scale(1.01);
} */

.tour-destination .box .tour-rate-content {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.tour-destination .box .tour-rate {
  /* display: inline-block; */
  /* justify-content: center; */
  display: flex;
  justify-content: center;
  width: 150px;
  color: #fff;
  font-size: 16px;
  background: #f9ab30;
  padding: 8px;
  border-radius: 40px;
  transition: all .3s ease-in-out;

}

.tour-destination .destination-content .box:hover .tour-rate {
  transform: scale(1.1);
}

.tour-destination .box .text {
  padding: 15px;
}

.tour-destination .box .text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  margin: 15px 0;
}

.tour-destination .box .text .tour-number {
  font-size: 12px;
  color: #999;
}

.tour-destination .box .city {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.tour-destination .box .city span {
  color: #999;
}

.tour-destination .box .characteristic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tour-destination .box .city img {
  width: 15px;
  height: 100%;
}

.tour-destination .box .characteristic img {
  width: 15px;
  height: 100%;
}

/* Tour Feedback */
.tourist-feedback {
  background: url(images/xbg_3.jpg.pagespeed.ic.HSaugsFrb6.webp) no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.tourist-feedback .max-width {
  padding: 100px 80px;
}

.tourist-feedback h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.tourist-feedback .feedback-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tourist-feedback .box {
  width: 31.5%;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.tourist-feedback .box p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #999999;
  margin-bottom: 1.5rem;
}

.tourist-feedback .box .user-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}

.tourist-feedback .box .user-profile img {
  width: 80px;
  height: 80px;
  border-radius: 40px;
}

.tourist-feedback .box .user-profile .user-text {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.tourist-feedback .box .user-profile .user-text .text-1 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
  color: #000000;
}

.tourist-feedback .box .user-profile .user-text .text-2 {
  font-size: 16px;
  color: #cccccc;
}

.recent-post {}

.recent-post .max-width {
  padding: 100px 80px;
}

.recent-post .section-content {
  display: block;
}

.recent-post .section-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
}

.recent-post .post-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.recent-post .post-content .box {
  width: 31.5%;
  box-shadow: 0 5px 20px 0 #888888;
}

.recent-post .post-content .box .image {
  height: 270px;
  width: 100%;
  margin-bottom: 1rem;
}

.recent-post .post-content .box .one {
  background: url(images/ximage_1.jpg.pagespeed.ic.QnA6DpkzOF.webp) no-repeat center;
  object-fit: cover;
  background-size: cover;
}

.recent-post .post-content .box .two {
  background: url(images/ximage_2.jpg.pagespeed.ic.FWMjlnCNLs.webp) no-repeat center;
  object-fit: cover;
  background-size: cover;
}

.recent-post .post-content .box .three {
  background: url(images/ximage_3.jpg.pagespeed.ic.7IAJXQIWQY.webp) no-repeat center;
  object-fit: cover;
  background-size: cover;
}

.recent-post .post-content .box .image .image-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  background: #f9ab30;
  padding: 5px 15px;
  border-radius: 0 0 30px 0;
  width: fit-content;
}

.recent-post .post-content .box .image .day {
  font-size: 50px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.recent-post .post-content .box .image .date {
  display: flex;
  flex-direction: column;
}

.recent-post .post-content .box .image .date span {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.recent-post .post-content .box .text a {
  display: block;
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: 600;
}

.recent-post .post-content .box .text p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #999999;
  margin: 1rem 0;
  padding: 0 15px;
}

footer {
  background: url(images/footer-bg.jpg.webp) no-repeat;
  background-position: bottom center;
  background-size: cover;
}

footer .max-width {
  padding: 100px 80px;
}

footer .section-content {
  align-items: stretch;
}

footer .section-content .box {
  width: 23%;
}

footer .section-content .box .social-media {
  display: flex;
  width: 180px;
  justify-content: space-between;
}

footer .section-content .box .social-media img {
  width: 50px;
  height: 50px;
  background-color: #33313b;
  border-radius: 20px;
  padding: 12px;
}

footer .section-content .box h3 {
  margin-bottom: 1.5rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
}

footer .section-content .col-1 p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3.5rem;

}

footer .section-content .col-2 {
  display: flex;
  flex-direction: column;
  /* row-gap: 1.2rem; */
}

footer .section-content .col-2 a {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

footer .section-content .col-3 .contact-box {
  display: flex;
  align-items: flex-start;
  /* justify-content: space-between; */
  column-gap: 1.5rem;
  margin-bottom: 1.5rem;
}

footer .section-content .col-3 img {
  width: 20px;
  height: 20px;
}

footer .section-content .col-3 .svg {
  filter: invert(100%);
}

footer .section-content .col-3 .address {
  color: rgba(255, 255, 255, 0.7);

}

footer .section-content .col-3 a {
  color: #fff;
}