*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*COLOR PALLETE*/
:root {
  --black: #0c0c0c;
  --blue: #18bef0;
  --white: #fbfaff;
  --gray: #ccc;
  --blue-low-opcacity: #f7fcfd;
}
body {
  position: relative !important;
  font-family: "Monserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}
/* navbar */
.navbar-toggler {
  border: none; 
  background: transparent; 
  position: relative;
  width: 40px; 
  height: 30px; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none; 
  transition: background 0.3s, color 0.3s; 
}


.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  width: 30px;
  height: 2px;
  background: black; 
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: black; 
  position: absolute;
  left: 0;
  transition: background 0.3s, transform 0.3s;
}

.navbar-toggler-icon::before {
  top: -8px; 
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler-x {
  display: none; 
  font-size: 24px;
  color: black; 
}


.navbar-toggler.active .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before,
.navbar-toggler.active .navbar-toggler-icon::after {
  background: transparent;
  transform: rotate(45deg); 
}

.navbar-toggler.active .navbar-toggler-icon::after {
  transform: rotate(-45deg); 
}

.navbar-toggler.active .navbar-toggler-x {
  display: block;
}

/*HEADINGS*/
.heading {
  text-transform: capitalize;
}
.small {
  text-transform: lowercase;
  font-weight: 600;
}
.company-name {
  color: var(--blue);
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 7rem !important;
  }
}

/* end */
/* sections */
section {
  height: 100vh;
}

.hero-section {
  background: url("../images/travevl3.jpg") center center no-repeat;
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero-section p {
  font-size: 1.5em;
}

.about-section,
.services-section,
.contact-section {
  padding: 60px 0;
}

.services-section .col-md-4 {
  padding: 20px 0;
}

.contact-section form {
  max-width: 600px;
  margin: auto;
}

#product-and-services {
  height: fit-content;
}
/* making a responsive mobile view */
@media screen and(max-width:483px) {
  .services {
    min-height: 100vh;
    height: fit-content;
  }
  section.team.reveal.low-op-blue.active {
    min-height: 100vh !important;
    height: fit-content !important;
  }
}

@media screen and (min-width: 1024px) {
  .hero-section {
    height: 60dvh;
  }
  .hero-section h1 {
    font-size: 5rem;
  }
}

/*INPUTS*/
.form-control {
  border: 2px solid var(--blue) !important;
}

/*IMAGES*/
.swiper-slide {
  height: 10rem;
  overflow: hidden;
}
/* the moving object in the hero section */

.motion {
  /* position: absolute;
  left: 50vw; */
  height: 5rem;
  width: 5rem;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .swiper-slide {
    height: 20rem;
  }
  .motion {
    margin-top: 3rem;
  }
}

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

/*NAVIGATION*/

.nav-link {
  font-weight: 600;
  color: var(--blue) !important;
}
.nav-link:hover {
  color: var(--blue) !important;
  transition: all 0.3s;
  text-decoration: underline;
}

/*BUTTONS*/
.btn {
  outline: 0 !important;
  border: none !important;
}

/* CONTAINERS */
.container.text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*SECTIONS*/
.about-section {
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url("images/travevl3.png");
}
.services-section {
  background: #f7fcfd;
}

@media screen and (max-width: 600px) {
  .about-section {
    display: none;
  }
  #about:target {
    display: block;
  }

  /* .faqs__container {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 1.5rem;
  } */

  .team {
    min-height: 100vh;
    height: fit-content;
  }

  .team__container {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .team__member {
    padding: 0;
  }

  .team__member p {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .about-section {
    display: none;
  }
  #about:target {
    display: block;
  }

  .team__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .team__member {
    padding: 1rem;
  }
}

/* desktop */
@media screen and(min-width:1024px) {
  /* .team {
    display: flex;
  } */
}

/*COLORS*/
.blue {
  color: var(--blue);
}
.black {
  color: var(--black);
}
.white {
  color: var(--white);
}
.gray {
  color: var(--gray);
}
.low-op-blue {
  background: var(--blue-low-opcacity);
}

.bg-blue {
  background: var(--blue);
}
.bg-black {
  background: var(--black);
}
.bg-white {
  background: var(--white);
}
.bg-gray {
  background: var(--gray);
}

/* FAQS */
/* .faqs h2 {
  color: var(--blue);
  padding: 3rem;
  text-align: center;
}

.faqs__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: fit-content;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.add-icon {
  color: var(--blue);
}

.faq h4 {
  font-size: 1rem;
  line-height: 2.2;
}

.faq__icon {
  align-self: flex-start;
  font-size: 1.2rem;
}

.faq p {
  margin-top: 0.8rem;
  display: none;
}

.faq.open p {
  display: block;
} */

/* OUR TEAM */
.team h2 {
  color: var(--blue);
  text-align: center;
  padding: 3rem;
}

/* .team__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-right: 2rem;
} */

.team__member {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.team__member:hover {
  background: transparent;
  border-color: var(--blue);
}

/* .team__member-image img{
width: fit-content;
}  */

.team__member-info * {
  text-align: center;
  margin-top: 1.4rem;
}

.team__member-socials {
  position: absolute;
  top: 50%;
  right: -100%;
  display: flex;
  flex-direction: column;
  background: var(--color-primary);
  border-radius: 1rem 0 0 1rem;
  transform: translateY(-50%);
  box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.team__member:hover .team__member-socials {
  right: 0;
}

.team__member-socials a {
  padding: 1rem;
}
/* making the team section to be column-flex on mobile */
@media screen and (max-width: 627px) {
  .team__container {
    display: flex;
    flex-direction: column;
    background: none;
  }
}

/* on desktop making the team view centred */
@media screen and (min-width: 1024px) {
  .team__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-right: 2rem;
  }
}

/* SECTIONS */
.hero-section {
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  position: relative;
}

.box > h3 {
  text-transform: capitalize;
}
.box > p {
  line-height: 1.5 !important;
}

.brief-description {
  bottom: 3rem !important;
  font-size: 1rem !important;
  padding: 5rem !important;
}

.brief-description:hover {
  animation: inFromLeft 5s ease-in-out;
}

.descript-icon {
  font-size: 3rem !important;
  color: var(--blue);
  position: relative;
  top: 8.5rem;
}

.send_email {
  color: white;
}
.send_email:hover {
  color: white;
  text-decoration: none;
}

.goals_icons {
  font-size: 2rem !important;
  background-color: #18bef0;
  border-radius: 100%;
  color: var(--white);
  padding: 0.3rem;
}

/* link button first hidden then later show */
.send_email {
  display: none;
  color: white;
}

/* MOBILE */

@media screen and(max-width:482px) {
  .hero-section {
    display: flex;
  }
  .text-center h3 {
    font-size: 1rem !important;
  }
  /*mobile sect size*/
  section {
    width: fit-content;
  }
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

