/* IMPORTS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Bangers&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* VARIABLES */
:root {
  --bg-color: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(238, 79, 156, 0.2) 100%
  );
  --bg-color-inverse: linear-gradient(
    180deg,
    rgba(238, 79, 156, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  --bg-image: linear-gradient(
      to bottom,
      rgba(238, 79, 156, 0.8) 50%,
      rgba(255, 255, 255, 0.8) 100%
    ),
    url("../assets/images/disney.webp");

  --bg-image-banner: linear-gradient(
      180deg,
      rgba(43, 86, 142, 0.8) 50%,
      rgba(43, 86, 142, 0.5) 100%
    ),
    url("../assets/images/disney.webp");
  --pink: #ee4f9c;
  --white: #fff;
  --blue: rgba(43, 86, 142, 1);
  --black: #1a1a1a;

  --shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.2);

  --btn-border: 3px solid var(--blue);
}



/* RESETS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pink);
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.home {
  width: 100%;
  height: 100dvh;
}



/* HEADER */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20rem;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo {
  padding: 0.5rem 1rem;
  width: 150px;
  height: 80px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.navbar {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.menu-link a {
  text-transform: capitalize;
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  color: var(--blue);
  transition: color 0.3s ease-in-out;
}

.menu-link a:hover {
  color: var(--pink);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 274px;
  max-width: 300px;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  background-color: transparent;
  border: var(--btn-border);
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  background-color: var(--pink);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.05);
  background-color: var(--blue);
}

.menu-btns {
  display: none;
}



/* HERO */

.hero {
  padding: 12.5rem 20rem 0 20rem;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-content img {
  width: 35%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-title {
  text-align: center;
}

.hero-title span {
  font-family: "Poppins", sans-serif;
  font-size: 3.625rem;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  text-shadow: 0 0 5px var(--white), 0 0 10px var(--pink), 0 0 20px var(--pink),
    0 0 40px var(--blue), 0 0 80px var(--blue);
}

.hero-title h1 {
  color: var(--white);
  text-shadow: 0 0 5px var(--white), 0 0 10px var(--pink), 0 0 20px var(--pink),
    0 0 40px var(--blue), 0 0 80px var(--blue);
  font-size: 5.5rem;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

.overlaping {
  position: relative;
  bottom: -100px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 1rem;
  width: 100%;
  max-width: 1200px;
  height: 120px;
  background-color: var(--pink);
  box-shadow: var(--shadow);
  z-index: 1;
}

.overlaping-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.overlaping-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: bold;
}

.overlaping-btn {
  width: 200px;
}
.bi-arrow-right {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.overlaping-btn:hover .bi-arrow-right {
  transform: translateX(5px);
}



/* ABOUT */

.about {
  width: 100%;
  height: 100%;
  padding: 12.5rem 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
}

.video-container {
  width: 100%;
  max-width: 600px;
  height: 400px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.about-content {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.about-description {
  width: 500px;
  max-width: 100%;
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  color: var(--white);
  text-align: left;
  line-height: 1.6;
}

/* DESTINATIONS */

.destinations {
  width: 100%;
  height: 100%;
  padding: 6.25rem 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  background: var(--bg-color-inverse);
}

.destinations-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.destinations-description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  color: var(--white);
  text-transform: capitalize;
}

.destinations-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.cards-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-self: center;
  flex-direction: row;
  gap: 2rem;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.card-content {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: var(--blue);
  padding: 0 1rem;
}



/* PRODUCTS */

.products {
  width: 100%;
  height: 100%;
  padding: 6.25rem 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  background: var(--bg-color);
}

.products-content {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.product-img {
  max-height: 40%;
}

.products-description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  color: var(--white);
  text-transform: capitalize;
}

.products-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.card-title span {
  font-size: 1.125rem;
}

.product-card-description {
  text-align: left;
}

.bi-stars {
  font-size: 1rem;
  color: var(--pink);
  margin-right: 0.5rem;
}

.product-btn {
  margin: 2rem auto;
}

.product-btn:hover .bounce {
  animation-play-state: paused;
}

.bounce {
  animation: bounce 2s ease infinite;
}




/* SERVICES */

.services {
  width: 100%;
  height: 100%;
  padding: 12.5rem 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: var(--bg-color-inverse);
}

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100%;
  max-width: 800px;
  text-align: center;
  color: var(--white);
}

.services-description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
}

.services-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}

.box-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.services-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 380px;
  height: 230px;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-box-title {
  font-size: 1.5rem;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
}

.service-box-description {
  font-size: 1.125rem;
  color: var(--blue);
  font-family: "Open Sans", sans-serif;
}

.bi-handbag-fill,
.bi-bus-front-fill,
.fa-bed,
.fa-burger,
.fa-music,
.fa-briefcase-medical {
  font-size: 36px;
  color: var(--pink);
}

/* CTA BANNER */

.banner {
  width: 100%;
  height: 200px;
  background: var(--bg-image-banner);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.banner-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: var(--white);
}




/* PHOTO GALLERY */

.gallery {
  width: 100%;
  padding: 12rem 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: var(--bg-color);
}

.gallery-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: var(--white);
}

.gallery-description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
}

.gallery-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
}

.gallery-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 1rem;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box {
  width: 100%;
  max-width: 600px;
}

.box img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}




/* FOOTER */

.footer {
  width: 100%;
  height: 100%;
  padding: 6.25rem 20rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  background: var(--black);
}

.footer-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.footer-col img {
  width: 250px;
}

.footer-social {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  border: 2px solid var(--pink);
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.bi-facebook,
.bi-instagram,
.bi-twitter-x,
.bi-whatsapp {
  font-size: 22px;
  color: var(--pink);
}

.footer-social a:hover {
  background-color: var(--pink);
  transition: all 0.3s ease-in-out;
}

.footer-social a:hover .bi-facebook,
.footer-social a:hover .bi-instagram,
.footer-social a:hover .bi-twitter-x,
.footer-social a:hover .bi-whatsapp {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.footer-title {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link i {
  color: var(--blue);
}

.footer-link a,
.footer-link p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;

  cursor: pointer;
}

.footer-link a:hover,
.footer-link p:hover {
  color: var(--pink);
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}




/* CONTACT FORM POPUP */

.contact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: block;
  gap: 1rem;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}

.contact-content i {
  position: absolute;
  top: 2rem;
  right: 2rem;
  border: 2px solid var(--pink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.bi-x-lg {
  font-size: 1.5rem;
  color: var(--pink);
}

.contact-header {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.contact-logo {
  width: 300px;
  height: 160px;
}

.contact-title {
  font-size: 2.5rem;
  font-family: "Bangers", sans-serif;
  font-weight: 700;
  color: var(--pink);
}

.contact-description {
  font-size: 1.5rem;
  font-family: "Amatic SC", sans-serif;
  font-weight: 600;
  color: var(--pink);
}

.contact-form {
  width: 100%;
  height: 50%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.contact-form input {
  background-color: var(--pink);
  border: none;
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  text-align: center;
}

.contact-form input::placeholder {
  color: var(--white);
  font-family: "Amatic SC", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.contact-btn {
  margin-top: 2rem;
}

.hide-form {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}


/* SUCCESS AND ERROR PAGES STYLES */

.success-body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success {
  width: 80%;
  margin: 0 auto;
  height: 90vh;
  border-radius: 1rem;
  background-color: rgba(248, 245, 245, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.heading {
  max-width: 600px;
}

.heading h1 {
  color: #ee4f9c;
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
}

.heading img {
  width: 70%;
  margin-bottom: 2rem;
}

/* KEYFRAMES */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-2.5px);
  }
}

/* MEDIA QUERIES */
/* 1280px - laptops */

@media screen and (max-width: 1280px) {
  .topbar {
    padding: 0 4.375rem;
  }

  .overlaping {
    width: 1150px;
    bottom: -80px;
  }

  .about {
    padding: 12.5rem 4.375rem;
  }

  .about-title {
    font-size: 2.25rem;
  }

  .video-container {
    height: 320px;
  }

  .destinations {
    padding: 12.5rem 4.375rem;
  }

  .destinations-title {
    font-size: 2.25rem;
  }

  .products {
    padding: 12.5rem 4.375rem;
  }

  .products-title {
    font-size: 2.25rem;
  }

  .services {
    padding: 12.5rem 4.375rem;
  }

  .services-title {
    font-size: 2.25rem;
  }

  .services-box {
    max-width: 369px;
  }

  .service-box-description {
    font-size: 1rem;
  }

  .gallery {
    padding: 12rem 4.375rem;
  }

  .gallery-title {
    font-size: 2.25rem;
  }

  .footer {
    padding: 6rem 4.375rem;
  }
}

/* 1024px - Tablets and old screens*/
@media screen and (max-width: 1024px) {
  .topbar {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .logo {
    width: 150px;
    margin: 0 auto;
  }

  .navbar {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
    padding: 1rem;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .menu {
    height: 100%;
    flex-direction: column;
    gap: 2rem;
  }

  .menu-link a {
    font-size: 1.5rem;
  }

  .menu-btns {
    display: flex;
    align-items: center;
    position: relative;
  }

  .menu-btns i {
    position: absolute;
    right: 1rem;
  }

  .bi-list {
    color: var(--pink);
    font-size: 2rem;
  }

  .bi-x {
    color: var(--blue);
    font-size: 2.5rem;
    display: none;
  }

  .show-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    padding: 12.5rem 1rem;
  }

  .hero-content {
    margin-top: 10rem;
  }

  .hero-content img {
    width: 30%;
  }

  .overlaping {
    bottom: -20px;  
    padding: 2rem 0;
    gap: 1rem;
    width: 900px;
  }

  .about{
    flex-direction: column;
    padding: 12.5rem 1rem;
  
  }

  .banner {
    width: 100%;
    height: 200px;
    background: var(--bg-image-banner);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

.banner-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: var(--white);
}

.gallery {
  width: 100%;
  padding: 12rem 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: var(--bg-color);
}

.gallery-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: var(--white);
}

.gallery-description {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
}

.gallery-title {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
}

.gallery-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 1rem;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box {
  width: 100%;
  max-width: 600px;
}

.box img {
  width: 100%;
  height: 100%;
  bo
    padding: 6rem 4.375rem;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .video-container {
    height: 400px;
  }

  .about-content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about-description {
    text-align: center;
  }

  .cards-container {
    flex-direction: column;
  }

  .products {
    padding: 6rem 4.375rem;
  }

  .services {
    padding: 6rem 1rem;
  }

  .gallery {
    padding: 6rem 4.375rem;
  }

  .gallery-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}


/* 768px - Small Tablets */
@media screen and (max-width: 768px) {
  .menu-link a {
    font-size: 1.5rem;
  }

  .overlaping {
    max-width: 754px;
    bottom: -200px;
    flex-direction: column;
    height: 100%;
  }

  .about {
    padding: 12.5rem 1rem 6rem 1rem;
  }
  .box-container {
  }
  .services-box {
    max-width: 300px;
  }
  .service-box-description {
    font-size: 0.875rem;
  }

  .footer {
    padding: 6rem 1rem;
    gap: 0.5rem;
  }

  .footer-col img {
    width: 70%;
  }
  .footer-link a,
  .footer-link p {
    font-size: 0.875rem;
  }

  .success {
    width: 90%;
  }

  .heading img {
    width: 60%;
  }
}

@media screen and (max-width: 450px) {
  .topbar {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .hero {
    height: 100dvh;
    gap: 1.5rem;
    padding: 12.5rem 1rem 0 1rem;
  }

  .hero-content img {
    width: 70%;
    height: auto;
  }

  .hero-content span {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .overlaping {
    bottom: -160px;
    max-width: 100%;
  }

  .about {
    height: 100%;
    padding: 12.5rem 1rem;
    flex-direction: column-reverse;
  }

  .about-content {
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .overlaping {
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding: 1rem 0.5rem;
    bottom: -80px;
  }

  .overlaping-title {
    text-align: center;
  }

  .destinations {
    padding: 0 1rem 12.5rem 1rem;
    gap: 2rem;
    text-align: center;
  }

  .destinations-title {
    font-size: 2rem;
  }

  .cards-container {
    flex-direction: column;
    gap: 2rem;
  }

  .card {
    height: auto;
  }

  .card-img {
    height: 20%;
  }

  .products {
    padding: 0 1rem 12.5rem 1rem;
    gap: 2rem;
    text-align: center;
  }

  .products-title {
    font-size: 2rem;
  }

  .cards-container {
    flex-direction: column;
    gap: 2rem;
  }

  .card {
    height: auto;
  }

  .product-img {
    height: 40%;
  }

  .services {
    padding: 6rem 1rem;
  }

  .services {
    padding: 6rem 1rem;
  }
  .services-box:hover {
    transform: translateY(-5px);
  }

  .banner-title {
    max-width: 300px;
    font-size: 2rem;
    text-align: center;
  }

  .gallery {
    padding: 6rem 1rem;
  }

  .gallery-container {
    flex-direction: column;
  }

  .footer {
    padding: 6rem 1rem;
    flex-direction: column;
    gap: 3rem;
  }

  .footer-col:nth-of-type(1) {
    justify-content: center;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    justify-content: center;
  }

  .success {
    width: 90%;
  }

  .heading {
    max-width: 300px;
  }
  .heading h1 {
    font-size: 1.5rem;
  }

  .heading img {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .overlaping {
    bottom: -20px;
  }

  .overlaping-title {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .destinations-description,
  .products-description,
  .services-description,
  .gallery-description {
    font-size: 1rem;
  }

  .destinations-title,
  .products-title,
  .services-title,
  .gallery-title {
    font-size: 1.5rem;
  }

  .success {
    width: 90%;
  }

  .heading {
    max-width: 200px;
  }

  .heading h1 {
    font-size: 1.5rem;
  }

  .heading img {
    width: 100%;
  }
}
