body {
  background-color: var(--black);
  width: 100%;
  min-height: 100vh;
}

.container {
  overflow-x: hidden;
}

/*--------------------- Header ---------------------*/
header {
  width: 100%;
  min-height: 100vh;
  margin: auto;
  padding: 100px 10%;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

header > * {
  color: var(--white);
}

header .title h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

header .title p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.5;
  margin-bottom: 150px;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .wrapper .box {
  width: 350px;
  max-width: 100%;
  height: 200px;
  background-color: var(--dark-grey);
  border-radius: 30px;
  box-shadow: 0px 0px 5px -1px rgb(255, 253, 253);
  padding: 20px;
  margin: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-reflect: below 15px
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
}

header .wrapper .box:nth-child(1) {
  margin-left: 0;
}

header .wrapper .box:nth-child(4) {
  margin-right: 0;
}

header .wrapper .box .number {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

header .wrapper .box .description {
  font-size: 1.2rem;
  font-weight: 100;
}

header .background-circles > * {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(200px);
  opacity: 0.7;
}

header .background-circles .circle1 {
  background-color: var(--pink);
  top: 200px;
  left: 300px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 5s;
}

header .background-circles .circle2 {
  background-color: var(--blue);
  top: 450px;
  left: 300px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 10s;
}

header .background-circles .circle3 {
  background-color: var(--purple);
  top: 250px;
  left: 100px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
}

@keyframes move1 {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }

  100% {
    transform: translateX(60vw) translateY(100px) scale(0.8);
  }
}

/*--------------------- Upcoming Section ---------------------*/
section.upcoming {
  width: 100%;
  margin: auto;
  min-height: 500px;
  margin-bottom: 100px;
  padding: 0 10%;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

section.upcoming > * {
  color: var(--white);
}

section.upcoming h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 50px;
}

section.upcoming .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

section.upcoming .wrapper .flight_details {
  flex: 1;
}

section.upcoming .wrapper .flight_details h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}

section.upcoming .wrapper .flight_details h2:nth-of-type(2) {
  margin-top: 30px;
}

section.upcoming .wrapper .flight_details h3 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 10px;
}

section.upcoming .wrapper .flight_details h3 span {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 100;
}

section.upcoming .wrapper .rocket_image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

section.upcoming .wrapper .rocket_image img {
  height: 650px;
  -webkit-box-reflect: below 15px
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.4) 100%);
}

section.upcoming .background-circles > * {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(200px);
  opacity: 0.5;
}

section.upcoming .background-circles .circle1 {
  background-color: var(--pink);
  top: 200px;
  right: 300px;
  animation: move2 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 5s;
}

section.upcoming .background-circles .circle2 {
  background-color: var(--blue);
  top: 450px;
  right: 300px;
  animation: move2 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 10s;
}

section.upcoming .background-circles .circle3 {
  background-color: var(--purple);
  top: 250px;
  right: 100px;
  animation: move2 20s infinite ease-in-out;
  animation-direction: alternate;
}

@keyframes move2 {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }

  100% {
    transform: translateX(-60vw) translateY(100px) scale(0.8);
  }
}

/*--------------------- Team Section ---------------------*/
section.team {
  width: 100%;
  margin: auto;
  margin-top: 200px;
  margin-bottom: 300px;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

section.team > * {
  color: var(--white);
}

section.team h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 50px;
}

section.team h2 {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.5;
  margin-bottom: 100px;
  text-align: left;
}

section.team .box-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.team .box-container .box {
  width: 300px;
  max-width: 100%;
  height: 300px;
  background-color: var(--dark-grey);
  border-radius: 10px;
  box-shadow: 0px 0px 1px 1px rgb(255, 253, 253);
  margin: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-reflect: below 15px
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
}

section.team .box-container .box:hover .circle {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

section.team .box-container .box:hover p {
  transform: rotate(360deg);
  transition: all 0.5s ease-in-out;
}

section.team .box-container .box .circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 5px;
  background-color: var(--light-grey);
  /* filter: blur(2px); */
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

section.team .box-container .box .circle img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

section.team .box-container .box h1 {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  margin-top: 30px;
}

section.team .box-container .box p {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.1rem;
  font-weight: 100;
  background-color: var(--black);
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid var(--blue);
}

section.team .background-circles > * {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(200px);
  opacity: 0.7;
}

section.team .background-circles .circle1 {
  background-color: var(--pink);
  top: 200px;
  left: 300px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 5s;
}

section.team .background-circles .circle2 {
  background-color: var(--blue);
  top: 450px;
  left: 300px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
  animation-delay: 10s;
}

section.team .background-circles .circle3 {
  background-color: var(--purple);
  top: 250px;
  left: 100px;
  animation: move1 20s infinite ease-in-out;
  animation-direction: alternate;
}

/*--------------------- Media Queries ---------------------*/
/* Tablets (and same for Smartphones) */
@media screen and (max-width: 1200px) {
  header {
    padding-top: 40px;
    padding-bottom: 0;
  }

  header .title p {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  header .wrapper {
    flex-direction: column;
  }

  header .wrapper .box {
    -webkit-box-reflect: unset;
  }

  header .wrapper .box:nth-child(1) {
    margin-left: 20px;
  }

  header .wrapper .box:nth-child(4) {
    margin-right: 20px;
  }

  section.upcoming {
    margin-top: 100px;
    flex-direction: column;
  }

  section.upcoming .wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  section.upcoming .wrapper .rocket_image {
    margin-top: 50px;
  }

  section.upcoming .wrapper .rocket_image img {
    -webkit-box-reflect: unset;
  }

  section.team {
    margin-top: 100px;
    margin-bottom: 50px;
  }

  section.team h2 {
    text-align: left;
  }

  section.team .box-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  section.team .box-container .box {
    -webkit-box-reflect: unset;
  }

  footer .top-wrapper {
    padding: 0;
  }

  footer .bottom-wrapper {
    padding: 20px 0px;
  }

  footer .top-wrapper {
    justify-content: flex-start;
  }

  footer .bottom-wrapper .logo {
    margin-top: 20px;
  }

  footer .bottom-wrapper .copyright {
    margin-top: 20px;
    text-align: center;
  }
}
