@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-size: 14px;
  line-height: 1.5;
  padding: 2rem;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.4px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.icon-text-inline {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.icon-text-inline i {
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: 1;
}
.icon-text-inline.circled-icon i {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
}
.icon-text-inline.circled-icon i::before {
  transform: translateY(1px) translateX(-0.5px);
}

.highlighted {
  box-shadow: inset 0 -14px 0 #63e6bf;
}

.card-btn {
  padding: 3rem;
  background: linear-gradient(-25deg, #74c0fc 40%, #63e6bf);
  color: black;
  border-radius: 2rem 0 2rem 0;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.75px;
  transition: transform 300ms;
  perspective-origin: bottom right;
  outline: 2px dashed #74c0fc;
  outline-offset: 6px;
}
.card-btn i {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card-btn:hover {
  transform: perspective(1000px) rotate3d(-62, 58, 1, -20deg);
}

.btn-simple {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  border-radius: 300px;
  background: linear-gradient(-25deg, #74c0fc 40%, #63e6bf);
  color: black;
  text-align: center;
  line-height: 1;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 300ms cubic-bezier(0.8, -0.51, 0.23, 1.44), box-shadow 300ms;
  will-change: transform;
}
.btn-simple i {
  margin-right: 0.5rem;
}
.btn-simple:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.3);
}

.types {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 2rem;
  grid-auto-columns: 80px;
  position: relative;
}
.types::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 100%;
  transform: translateY(-50%);
  background: url(assets/images/png/travel-airplane.png) center center/auto;
  opacity: 0.2;
}
.types li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: black;
}
.types li a > div {
  margin-bottom: 0.75rem;
  border-radius: 50%;
  padding: 0.35rem;
}
.types li:nth-of-type(odd) a > div {
  border: 2px solid #74c0fc;
}
.types li:nth-of-type(even) a > div {
  border: 2px solid #63e6bf;
}
.types li a img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 300ms, border-radius 300ms;
}
.types li:hover a > div img {
  transform: scale(1.35);
  border-radius: 8px;
  box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
}

.hero .container {
  width: min(100%, 1200px);
  margin-inline: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 6rem 4rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.hero .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #63e6bf 25%, #74c0fc, transparent 60%);
  z-index: -1;
  border-radius: 8px;
}
.hero .container > * + * {
  margin-top: 2rem;
}
.hero .container h2 {
  font-weight: 500;
  max-width: 45ch;
  font-size: 1rem;
}
.hero .container > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0;
  z-index: -2;
  border-radius: 8px;
}

.sub-hero {
  margin-top: -5rem;
  margin-bottom: 5rem;
  position: relative;
}
.sub-hero::after {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: -9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: url(assets/images/webp/plane-lines.webp) center center/contain no-repeat;
}
.sub-hero .container {
  width: min(90%, 1100px);
  margin-inline: auto;
  padding: 2rem 4rem;
  border-radius: 8px;
  background: white;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
}
.sub-hero .container .left {
  flex: 1;
}
.sub-hero .container .left h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.sub-hero .container .left .types {
  margin-top: 2rem;
}
.sub-hero .container .right {
  width: 200px;
  margin-left: 6rem;
  position: relative;
  flex-shrink: 0;
}
.sub-hero .container .right .card-btn {
  padding-bottom: 6rem;
  padding-top: 6rem;
  margin-bottom: -6rem;
}

.cities {
  margin-top: 15rem;
  position: relative;
}
.cities::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  height: 40%;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  display: block;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), black 40%), url(/assets/images/jpeg/pexels-margerretta-548084.jpg) center bottom/cover no-repeat fixed;
  z-index: -1;
}
.cities .container {
  width: min(100%, 1200px);
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cities .container > h2 {
  grid-column: 1/-1;
  text-align: center;
  font-size: 2.5rem;
  max-width: 25ch;
  line-height: 1.1;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.cities .container > img {
  position: relative;
}
.cities .container .btn-simple {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1080px) {
  .sub-hero .container {
    flex-direction: column;
  }

  .sub-hero .container .right {
    width: unset;
    flex: 1 1 0;
    margin-left: 0;
    margin-top: 3rem;
  }

  .sub-hero .container .right .card-btn {
    margin-bottom: 0;
    padding: 1rem;
    flex-direction: row;
  }
  .sub-hero .container .right .card-btn i {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 800px) {
  .types {
    grid-gap: 2rem;
    grid-auto-columns: 60px;
  }

  .types li a img {
    width: 60px;
    height: 60px;
  }

  .hero .container {
    padding: 6rem 2rem 8rem;
  }
}
@media only screen and (max-width: 768px) {
  body {
    padding: 0;
  }

  .hero .container, .hero .container > video, .hero .container::before {
    border-radius: unset;
  }

  .cities::after {
    width: 100%;
    margin-left: unset;
  }
}
@media only screen and (max-width: 680px) {
  .types {
    grid-gap: 2rem;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .types li a img {
    width: 60px;
    height: 60px;
  }

  .types li a > div {
    padding: 0.25rem;
  }
}
@media only screen and (max-width: 680px) {
  .sub-hero .container {
    padding: 2rem;
  }

  .cities .container > h2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 580px) {
  .types li a img {
    width: 70px;
    height: 70px;
  }

  .hero .container::before {
    background: linear-gradient(to right, #63e6bf 15%, #74c0fc, transparent 80%);
  }

  .cities .container > h2 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero .container::before {
    background: linear-gradient(125deg, #63e6bf 15%, #74c0fc, transparent 90%);
  }

  .types {
    gap: 1rem;
  }
}
@media only screen and (max-width: 400px) {
  .hero .container {
    padding: 4rem 2rem 8rem;
  }

  .sub-hero .container .left h3 {
    text-align: center;
    line-height: 1.2;
  }

  .types li a img {
    width: 60px;
    height: 60px;
  }

  h1 {
    font-size: 2rem;
  }

  .card-btn, .btn-simple {
    font-size: 1.15rem;
  }
  .card-btn i, .btn-simple i {
    font-size: 1.75rem;
  }

  .sub-hero::after {
    bottom: -7rem;
    width: 200px;
    height: 200px;
  }

  .cities {
    margin-top: 12rem;
  }

  .cities .container > h2 {
    font-size: 1.5rem;
  }

  .cities::after {
    height: 55%;
  }
}
@media only screen and (max-width: 350px) {
  .types {
    gap: 0.5rem;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }

  .types li a img {
    width: 50px;
    height: 50px;
  }
}/*# sourceMappingURL=index.css.map */