@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,30..900;1,30..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --font-family: "Figtree", sans-serif;
}
body {
  font-family: var(--font-family);
}

/* Navbar */
.navbar {
  height: fit-content;
  z-index: 9;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  height: 6rem;
  padding: 0 1rem;
}
.logo-hamburger {
  display: flex;
  align-items: center;
}
.logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  z-index: 6;
}
.hamburger {
  display: none;
}
.navlinks {
  scroll-behavior: smooth;
  display: flex;
  gap: 2rem;
}
li {
  list-style: none;
}
.navlinks a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  transition: transform .2s ease;
}
.navlinks a:hover {
  transform: scale(1.1);
}
.btn-1 {
  display: none;
}
.nav-btn {
  border: 1px solid var(--primary-color);
  border-radius: 5rem;
  width: fit-content;
  height: fit-content;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1rem;
  padding: .8rem 2rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-btn:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--white);
  transition: all .5s ease-in-out;
  color: var(--white);
}

/* Header */
header {
  padding: 1rem;
  overflow: hidden;
  width: 100%;
}
.hero-wrapper {
  background-image: url(/Images/header-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 1.5rem;
  padding: 1rem .5rem;
}
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  place-content: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.hero-content h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: h2 1s ease-in-out;
  animation-delay: .9s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes h2 {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content p {
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 5.5rem;
  animation: p 1s ease-in-out;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes p {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
span.Flight {
  color: var(--white);
}
.exclamation {
  color: var(--primary-color);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  animation: cta 1s ease-in-out;
  animation-delay: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes cta {
  from {
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-btn {
  width: fit-content;
  height: fit-content;
  padding: 1rem 2.5rem;
  border: none;
  background-color: var(--primary-color);
  border-radius: 5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.cta-btn:hover {
  background-color: var(--primary-color-dark);
  transition: all .5s ease-in-out;
  color: var(--white);
}
.play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
}
.play:hover {
  background-color: var(--primary-color);
  transition: all .5s ease-in-out;
}
.play i {
  font-size: 1.3rem;
  color: var(--primary-color);
}
.play:hover i {
  transition: all .5s ease-in-out;
  color: var(--white);
}
.hero-image {
  overflow: visible;
  right: -30rem;
  width: 100%;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  animation: slide 1.1s ease-in-out;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}
@keyframes slide {
  from {
    opacity: 0;
    transform: translateX(300%);
  }
  to {
    opacity: 1;
  }
}
.hero-image img {
  padding: 1rem;
  overflow: hidden;
  width: 100%;
}

/* Section 1 */
.section-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: fit-content;
  padding: 5rem 1rem;
}
.section-1 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
}
.section-1 .container .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
}
.section-1 .container .top h2 {
  font-size: 1.5em;
  font-weight: 600;
}
.card img {
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, .2);
  cursor: pointer;
}
.card img:hover {
  transform: scale(1.03);
  transition: all .3s ease-in;
}
.card-wrapper {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 2.5rem;
  padding: auto 2rem;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-1 {
  animation: card-1 1s ease-in-out;
  animation-delay: .6s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(50px);
  transition: all .6s ease-out;
}
.card-1.show,
.card-2.show,
.card-3.show {
  opacity: 1;
  transform: translateY(0);
}
.animate {
  opacity: 0;
}
.card-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .5s;
}
.card-3 {
  animation: card-3 1s ease-in-out;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: 1s;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 2rem;
  padding-left: 1rem;
}
.row-one {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.row-one h4 {
  font-size: 1.2em;
  font-weight: 550;
}
.row-one p {
  color: var(--text-light);
}
.rating-container {
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 5px 10px;
  gap: .3rem;
  font-size: .9rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3rem;
}

/* Section-2 */
.section-2 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: center;
  place-content: center;
  padding: 8rem 1rem 2rem 1rem;
  margin: 0 auto;
  max-width: 1150px;
}
.section-2 .col-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 5rem;
}
.section-2 .col-1 .top {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hover-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 100%;
  gap: 1rem;
}
.hover-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 3rem;
  pointer-events: none;
}
.hover-card:hover .card-hover,
.card-bg {
  top: 0;
  pointer-events: auto;
}
.card-bg {
  border-radius: 1.5rem 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
  height: 10rem !important;
  background-color: var(--extra-light);
  overflow: hidden;
}
.card-bg .content {
  padding: 2rem 1rem;
  display: flex;
  gap: 4rem;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
.card-bg .content span i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.card-hover {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 1.5rem 1.5rem 0 0;
  background-color: var(--primary-color);
  color: var(--white);
  transition: .3s;
  height: 100% !important;
  pointer-events: none;
}
.card-bg:hover .card-hover {
  pointer-events: auto;
  transition-delay: 0;
}
.card-hover .content {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 5rem 1rem;
  width: 100%;
  gap: 1rem;
}
.card-hover .content span {
  border-radius: 50%;
  width: fit-content;
  height: fit-content;
  border: 2px solid var(--white);
  padding: .5rem;
}
.card-hover .content span i {
  font-size: 1.5rem;
  color: var(--white);
}
.card-hover .content p {
  font-size: .88rem;
  width: 100%;
}
.section-2 .col-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  place-content: center;
  margin: 0 auto;
  gap: 3rem;
  padding: auto 2rem;
}
.showcase {
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, .2) 5px 5px 20px;
  max-width: 400px;
  max-height: 500px;
  scroll-margin-top: 5rem;
  transform: translateX(-50px);
  transition: all .6s ease-out;
}
.showcase.show {
  opacity: 1;
  transform: translateX(0);
}
.section-2 .col-2 .content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}
.section-2 .col-2 .content h2 {
  font-size: 2.5rem;
  max-width: 100%;
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .3s;
}
.section-2 .col-2 .content h2.show {
  opacity: 1;
  transform: translateX(0);
}
.section-2 .col-2 .content p {
  text-align: justify;
  color: var(--text-light);
  font-size: 1rem;
}
.section-2 .col-2 .content p.show {
  opacity: 1;
  transform: translateY(0);
}
.paragraph-1 {
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .6s;
}
.paragraph-2 {
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .9s;
}
.cta-wrapper {
  display: flex;
  width: 100%;
  height: fit-content;
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: 1.2s;
}
.cta-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
.cta-wrapper .btn {
  background-image: url(/Images/header-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  padding: 1rem 2rem;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  border-radius: .4rem;
}
.cta-wrapper .btn:hover {
  color: var(--white);
  transition: all .5s ease-in-out;
}
.section-2 .col-3 {
  padding: 5rem 0;
}
.box-wrapper {
  display: flex;
  margin: 0 auto;
  gap: 2rem;
  max-width: 1100px;
  padding: auto 2rem;
}
.box-wrapper .box {
  box-shadow: rgba(0, 0, 0, .1) 5px 5px 20px;
  padding: 3rem;
  background-color: var(--extra-light);
  border-radius: 2rem;
  text-align: center;
  gap: 1rem;
  width: 100%;
}
.box-1{
  transform: translateY(50px);
  transition: all .6s ease-out;
}
.box-2{
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .5s;
}
.box-3{
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: 1s;
}
.box-wrapper .box.show {
  opacity: 1;
  transform: translateY(0);
}
.box-wrapper .box h2 {
  font-size: 5rem;
  color: var(--primary-color);
}
.box-wrapper .box p {
  color: var(--text-light);
}
/* section-3 */
.section-3 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 5rem 1rem;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  gap: 5rem;
}
.section-3 .top {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.dotted-box-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: auto 2rem;
  gap: 2rem;
}
.dotted-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 18rem;
  border: 1px dotted var(--primary-color);
  border-radius: 1rem;
  padding: 2rem 1rem;
  gap: 1rem;
  text-align: center;
}
.dotted-box.show{
  opacity: 1;
  transform: translateY(0);
}
.dot-box-1{
  transform: translateY(50px);
  transition: all .6s ease-out;
}
.dot-box-2{
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: .5s;
}
.dot-box-3{
  transform: translateY(50px);
  transition: all .6s ease-out;
  transition-delay: 1s;
}
.dotted-box:hover {
  box-shadow: rgba(0, 0, 0, .1) 5px 5px 20px;
  transition: all .3s ease-in-out;
}
.dotted-box span {
  width: fit-content;
  height: fit-content;
  background-color: var(--extra-light);
  color: var(--primary-color);
  border-radius: 50%;
  padding: 1rem;
}
.dotted-box span i {
  font-size: 1.5rem;
}
.dotted-box h4 {
  font-weight: 700;
  font-size: 1.3rem;
}
/* section-4 */
.section-4 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 5rem 1rem;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  gap: 5rem;
  overflow: hidden;
}
.section-4 .top {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.review-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: auto 2rem auto 3rem;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.track {
  display: flex;
  gap: 2rem;
}
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  padding: .3rem .3rem 1rem .3rem;
  background-color: var(--extra-light);
  scroll-snap-align: start;
  justify-content: space-between;
}
.reviews:hover {
  background-color: var(--primary-color);
  transition: all .5s ease-in-out;
}
.reviews:hover .info h4 {
  color: var(--white);
}
.reviews:hover .info p {
  color: var(--white);
}
.review-wrapper::-webkit-scrollbar {
  width: 0;
}
.review-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  background-color: var(--white);
  padding: 1rem;
}
.five-stars i {
  color: var(--primary-color);
  font-size: 1rem;
}
.review-content p {
  width: 20rem;
  line-height: 1.5rem;
}
.avatar-info {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  padding-left: 1rem;
}
.avatar-info img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
/* footer */
footer {
  background-color: var(--extra-light);
  padding: 5rem 1rem 1rem 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7rem;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
footer .container .top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 0 1rem;
}
.row h4 {
  font-size: 1.2rem;
}
.row-1 p {
  width: 18rem;
  line-height: 1.4rem;
  color: var(--text-light);
}
.socials {
  display: flex;
  gap: 1rem;
}
.socials span {
  padding: .75rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}
.socials span:hover {
  background-color: var(--primary-color-dark);
  transition: all .3s ease-in-out;
}
.socials a {
  text-decoration: none;
}
.socials span i {
  font-size: 1.25rem;
  color: var(--white);
}
.row-2 .container{
  width: fit-content;
  display: flex;
  text-align: left;
  justify-content: start;
  align-items: start;
  gap: 2rem;
}
/* .row-2 .container .li{
  text-align: left;
} */
.row-4 {
  padding-left: -2rem;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 1rem;
}
.links a:hover {
  color: var(--primary-color);
}
.data {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-size: 1rem;
  color: var(--text-light);
}
.data:hover {
  color: var(--primary-color);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
input {
  width: 100%;
  border-radius: .3rem;
  color: var(--text-dark);
  font-size: 1rem;
  padding: .75rem;
  border: 1px solid var(--text-light);
  background-color: var(--white);
}
input:active {
  border: 1px solid var(--primary-color);
}
form button {
  width: 100%;
  border-radius: .3rem;
  color: var(--white);
  font-size: 1rem;
  padding: .75rem;
  border: none;
  background-color: var(--primary-color);
  cursor: pointer;
}
form button:hover {
  background-color: var(--primary-color-dark);
  transition: all .3s ease-in-out;
}
.copyright {
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
}