/* ==================== ROOT VARIBLES */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-light: #e5e8ec;
  --color-dark: #363949;
  --color-logo: #10a310;

  --color-primary: #7380ec;
  --color-danger: #ff7782;
  --color-success: #41f1b6;
  --color-warning: #ffbb55;
  --color-info-dark: #7d8da1;
  --color-info-light: #dec1eb;
  --color-light: rgba(132, 139, 200, 0.18);
  --color-primary-variant: #111e88;
  --color-dark-variant: #677483;
  --color-background: #f6f6f9;

  --card-border-radius: 2rem;
  --border-radius-1: 0.4rem;
  --border-radius-3: 0.8rem;
  --border-radius-2: 1.2rem;

  --card-padding: 1.8rem;
  --padding-1: 1.2rem;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 1.1rem;
  font-weight: lighter;
  font-family: Verdana;
}
body::-webkit-scrollbar {
  display: none;
}
/* ==================== navigation */
/* #navigation {
      width: 100%;
      height: 100px;
      background-color: var(--color-black);
      display: flex;
      align-items: center;
      padding: 0 50px 0 0;
  } */
/* ==================== topBar */
#topBar {
  width: 100%;
  height: 100px;
  background-color: var(--color-black);
  padding: 0 50px 0 20px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  /* border: 1px solid red; */
}
#topBar > div:nth-child(1) {
  display: flex;
  align-items: center;
}
#topBar > div:nth-child(1) > img {
  width: 100%;
  cursor: pointer;
}
#topBar > div:nth-child(2) {
  width: 35%;
  display: flex;
  align-items: center;
  color: var(--color-white);
  justify-content: space-between;
}
#topBar > div:nth-child(2) > div {
  display: flex;
  align-items: center;
  color: var(--color-white);
}
#topBar > div:nth-child(2) > div:nth-child(1) {
  width: 53%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  padding: 25px 20px;
  border-radius: 50px;
  background-color: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
}
#topBar > div:nth-child(2) > div:nth-child(1) > span {
  font-size: 1rem;
}
#topBar > div:nth-child(2) >a > h2 {
  cursor: pointer;
  color: var(--color-white);
}

/* ==================== toggle */
#toggle {
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 5px;
}

/* ==================== sideBar */
#sideBar {
  position: fixed;
  width: 30%;
  height: 100vh;
  left: -40%;
  background-color: var(--color-white);
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: block;
  z-index: 1;
}
#sideBar > div {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 10px;
}
#sideBar > div:nth-child(1) {
  background-color: var(--color-light);
  margin: 0 0 0 0;
}
#sideBar > div > a {
  display: flex;
  align-items: center;
  color: var(--color-dark);
}
/* #sideBar > div > a > img {
  background-color: var(--color-dark);
} */
#sideBar > div > a > span {
  margin-left: 10px;
}
#sideBar > div > a > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 10px;
}
#sideBar > div > a > div > h4 {
  color: var(--color-logo);
}
#sideBar.active {
  left: 0;
}
/* ==================== main */
#main {
  width: 100%;
  /* border: 1px solid red; */
}
/* ==================== main first child */
#main > div:nth-child(1) {
  width: 100%;
}
#main > div:nth-child(1) > img:nth-child(1) {
  width: 100%;
  margin-top: 100px;
}
#main > div:nth-child(1) > div:nth-child(2) {
  width: 60%;
  opacity: 0.5;
  padding: 10px;
  margin: auto;
  color: var(--color-white);
  background: linear-gradient(to left, #ffa17f, #00223e);
  text-align: center;
  line-height: 4rem;
  position: relative;
  margin-top: -800px;
}
#main > div:nth-child(1) > div:nth-child(2) > h1 {
  font-size: 2rem;
}
#main > div:nth-child(1) > div:nth-child(3) {
  width: 40%;
  height: 400px;
  margin: auto;
  position: relative;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) {
  width: 100%;
  height: 70px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-1);
  display: flex;
}
#main
  > div:nth-child(1)
  > div:nth-child(3)
  > div:nth-child(1)
  > div:nth-child(1) {
  width: 50%;
  height: 70px;
  /* background-color: var(--color-white); */
  border-radius: var(--border-radius-1) 0 0 var(--border-radius-1);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
}
#roundTrip {
  background-color: var(--color-white);
}
#airportTrip {
  background-color: var(--color-white);
}
#main
  > div:nth-child(1)
  > div:nth-child(3)
  > div:nth-child(1)
  > div:nth-child(2) {
  width: 50%;
  height: 70px;
  /* background-color: var(--color-white); */
  border-radius: 0 var(--border-radius-1) var(--border-radius-1) 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) {
  /* border: 1px solid red; */
  width: 100%;
  height: 70px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
#main
  > div:nth-child(1)
  > div:nth-child(3)
  > div:nth-child(2)
  > div:nth-child(1) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-logo);
  margin-right: 20px;
}
#main
  > div:nth-child(1)
  > div:nth-child(3)
  > div:nth-child(2)
  > div:nth-child(2) {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
}
#main
  > div:nth-child(1)
  > div:nth-child(3)
  > div:nth-child(2)
  > div:nth-child(2)
  > a {
  opacity: 0.5;
  color: var(--color-black);
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) {
  width: 100%;
  height: 70px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-1);
  display: flex;
  padding: 0 20px 0 5px;
  align-items: center;
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) > img {
  padding: 15px;
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) > a {
  opacity: 0.5;
  color: var(--color-black);
  cursor: pointer;
}
#main > div:nth-child(1) > div:nth-child(3) > div:nth-child(4) {
  width: 100%;
  height: 70px;
  background-color: var(--color-logo);
  border-radius: var(--border-radius-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  cursor: pointer;
}
/* ==================== main second child */
#main > div:nth-child(2) {
  width: 100%;
  margin: 135px auto;
  /* border: 1px solid red; */
}
#main > div:nth-child(2) > img {
  width: 100%;
}
#main > div:nth-child(2) > div:nth-child(2) {
  width: 60%;
  opacity: 0.5;
  padding: 15px;
  margin: auto;
  margin-top: -600px;
  color: var(--color-white);
  background: linear-gradient(to bottom, #000000, #434343);
  text-align: center;
  line-height: 2rem;
}
#main > div:nth-child(2) > div:nth-child(2) > h1 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 2rem;
}
#main > div:nth-child(2) > div:nth-child(2) > h2 {
  line-height: 2rem;
}
/* ==================== main third child */
/* #main > div:nth-child(3) {
    width: 100%;
    padding: 100px 50px;
    background-color: #f5f5f5;
    margin: 300px auto;
  } */
/* #main > div:nth-child(3) > div:nth-child(1) {
    width: 100%;
    text-align: center;
    margin: 0 0 50px 0;
  }
  #main > div:nth-child(3) > div:nth-child(1) > h1 {
    margin: 50px 0 20px 0;
  }
  #main > div:nth-child(3) > div:nth-child(1) > p {
    font-size: 1.7rem;
  }
  #main > div:nth-child(3) > div:nth-child(2) {
    width: 35%;
    display: flex;
  }
  #main > div:nth-child(3) > div:nth-child(2) > img {
    width: 100%;
    margin-left: 20px;
    border-radius: 20px;
  }
  #main > div:nth-child(3) > div:nth-child(2) > img:nth-child(1) {
    width: 100%;
    margin-left: 0px;
  } */
#body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ffffff;
  padding-top: 150px;
}
.box {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: animate 50s linear infinite;
}
@keyframes animate {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}
.box > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px);
  -webkit-box-reflect: below 0px
    linear-gradient(transparent, transparent, #0004);
}
.box > span > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 10px;
}
/* ==================== main fourth child */
#main > div:nth-child(4) {
  width: 100%;
  margin: -5px auto;
  /* border: 1px solid red; */
}
#main > div:nth-child(4) > img {
  width: 100%;
}
#main > div:nth-child(4) > div:nth-child(1) {
  width: 100%;
  text-align: center;
  margin: 0 0 50px 0;
}
#main > div:nth-child(4) > div:nth-child(1) > h1 {
  margin: 0 0 20px 0;
  font-size: 2rem;
}
#main > div:nth-child(4) > div:nth-child(1) > p {
  font-size: 1.2rem;
}
#main > div:nth-child(4) > div:nth-child(2) {
  width: 60%;
  opacity: 0.5;
  padding: 10px;
  margin: auto;
  color: var(--color-white);
  background: linear-gradient(to bottom, #000000, #434343);
  text-align: center;
  line-height: 3rem;
  position: relative;
  margin-bottom: -190px;
}
#main > div:nth-child(4) > div:nth-child(2) > h1 {
  margin-top: 20px;
}
#main > div:nth-child(4) > div:nth-child(2) > h1,h3 {
  font-size: 2rem;
}
/* ==================== bottom first child */

#bottom {
  width: 100%;
  background-color: #383838;
  color: var(--color-white);
  /* border: 1px solid yellow; */
}
#bottom > div:nth-child(1) > div:nth-child(1) {
  display: flex;
  padding: 40px 100px;
  justify-content: space-between;
}
#bottom > div:nth-child(1) > div:nth-child(1) > div {
  cursor: pointer;
}
#h2under1 {
  display: block;
  height: 5px;
  background-color: #808080;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#h2under2 {
  display: none;
  height: 5px;
  background-color: #808080;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#h2under3 {
  display: none;
  height: 5px;
  background-color: #808080;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#h2under4 {
  display: none;
  height: 5px;
  background-color: #808080;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#blogsContent {
  display: none;
  padding: 0 100px;
  margin-bottom: 50px;
}
#blogsContent > a {
  color: white;
  text-decoration: underline;
}
#careersContent {
  display: none;
  padding: 0 100px;
  margin-bottom: 50px;
}
#careersContent > a {
  color: white;
  text-decoration: underline;
}
#helpContent {
  display: none;
  padding: 0 100px;
  margin-bottom: 50px;
}
#helpContent > a {
  color: white;
  text-decoration: underline;
}
#content {
  display: block;
}
#bottom > div:nth-child(1) > div:nth-child(5) {
  padding: 0 100px;
}
#bottom > div:nth-child(1) > div:nth-child(5) > p{
  font-size: .8rem;
  text-align: justify;
  line-height: 1.2rem;
}
#bottom > div:nth-child(1) > div:nth-child(5) > h2,
h3,
h4 {
  font-size: 1.3rem;
}
#bottom > div:nth-child(1) > div:nth-child(5) > h3,
h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}
#bottom > div:nth-child(1) > div:nth-child(5) p,
h2,
h3,
h4 {
  margin-bottom: 20px;
}
/* ==================== bottom second child */
#bottom > div:nth-child(2) {
  background-color: #666666;
  color: var(--color-white);
  padding: 50px 100px;
}
#bottom > div:nth-child(2) > h2:nth-child(1) {
  margin-bottom: 50px;
  font-size: 1.6rem;
}
#bottom > div:nth-child(2) > h2:nth-child(2) {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
#bottom > div:nth-child(2) > div:nth-child(3) {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#bottom > div:nth-child(2) > div:nth-child(3) > div {
  display: flex;
  flex-direction: column;
}
#bottom > div:nth-child(2) > div:nth-child(3) > div > a {
  cursor: pointer;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 30px;
}
#bottom > div:nth-child(2) > div:nth-child(4) > div {
  display: flex;
}
#bottom > div:nth-child(2) > div:nth-child(4) > div > h2 {
  width: 29%;
  margin-bottom: 30px;
  font-size: 1.6rem;
}
#bottom > div:nth-child(2) > div:nth-child(4) > div > a {
  width: 29%;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #ffffff;
}
/* ================================ */
#bottom > div:nth-child(2) > div:nth-child(5) > a:nth-child(2) > img {
  margin-left: 0px;
}
#bottom > div:nth-child(2) > div:nth-child(5) > a > img {
  width: 5%;
  margin-left: 30px;
  cursor: pointer;
}
/* ================================ */
#bottom > div:nth-child(2) > div:nth-child(6) {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#bottom > div:nth-child(2) > div:nth-child(6) > h1:nth-child(1) {
  font-size: 3rem;
  color: #a3a3a3;
}
#bottom > div:nth-child(2) > div:nth-child(6) > div:nth-child(2) {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
}
#bottom
> div:nth-child(2)
> div:nth-child(6)
> div:nth-child(2)
> div:nth-child(1) {
  width: 20%;
  text-align: center;
}
#bottom
> div:nth-child(2)
> div:nth-child(6)
> div:nth-child(2)
> div:nth-child(1) > p {
  font-size: .9rem;
}
#bottom
> div:nth-child(2)
> div:nth-child(6)
> div:nth-child(2)
> div:nth-child(1)
> img {
  width: 100%;
}
#bottom
> div:nth-child(2)
> div:nth-child(6)
> div:nth-child(2)
> div:nth-child(2) {
  width: 66%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#bottom
  > div:nth-child(2)
  > div:nth-child(6)
  > div:nth-child(2)
  > div:nth-child(2)
  > h2 {
  font-size: 1.7rem;
}
#bottom
  > div:nth-child(2)
  > div:nth-child(6)
  > div:nth-child(2)
  > div:nth-child(2)
  > h3 {
  font-size: 1.3rem;
}
#bottom
  > div:nth-child(2)
  > div:nth-child(6)
  > div:nth-child(2)
  > div:nth-child(2)
  > div {
  width: 100%;
}
#bottom
  > div:nth-child(2)
  > div:nth-child(6)
  > div:nth-child(2)
  > div:nth-child(2)
  > div
  > a
  > img {
  width: 35%;
  border-radius: 10px;
  margin-right: 25px;
}
/* ============================== footer */
#bottom > div:nth-child(2) > div:nth-child(7) {
  width: 100%;
  height: 5px;
  background-color: #808080;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-top: 50px;
}
#bottom > div:nth-child(2) > p:nth-child(8) {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}
