@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

::-webkit-scrollbar {
  background-color: inherit;
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: #03101b;
}

body {
  background-color: #fafafa;
  color: #03101b;
  overflow-x: hidden;
}

.container {
  width: 1400px;
  margin: 0 auto;
}
@media only screen and (max-width: 1420px) {
  .container {
    width: 94%;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px 0;
  background-color: #fafafa;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .logo img {
  width: 80px;
}
@media only screen and (max-width: 900px) {
  header .container nav {
    display: none;
  }
}
header .container nav a {
  margin-left: 50px;
  text-transform: uppercase;
  color: #03101b;
  transition: all 0.3s ease;
}
header .container nav a:hover {
  color: #2267c8;
}
header .container .hamburger {
  display: none;
  width: 60px;
  padding: 5px;
  cursor: pointer;
}
header .container .hamburger.open div:nth-of-type(2),
header .container .hamburger.open div:nth-of-type(3) {
  width: 50%;
}
header .container .hamburger div {
  height: 2px;
  background-color: #03101b;
  width: 100%;
  transition: all 0.5s ease;
}
header .container .hamburger div:nth-of-type(2) {
  margin: 5px 0 6px 0;
}
@media only screen and (max-width: 900px) {
  header .container .hamburger {
    display: block;
  }
}

.menu {
  background-color: #fafafa;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  transform: translateY(-100%);
}
.menu.open {
  transform: translateY(0);
}
.menu .container {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .menu .container {
    width: 80%;
  }
}
.menu a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 20px;
  color: #03101b;
}
.menu a.btn {
  font-size: 15px;
  margin: 0;
}

footer,
section {
  padding: 50px 0;
}

footer .container {
  border-top: 1px solid #fa8c05;
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 740px) {
  footer .container {
    display: block;
    text-align: left;
  }
}
@media only screen and (max-width: 420px) {
  footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
footer .container a {
  color: #03101b;
  transition: all 0.3s ease;
}
footer .container a:hover {
  color: #2267c8;
}
footer .container a i {
  margin-right: 5px;
}
@media only screen and (max-width: 740px) {
  footer .container a {
    display: block;
    margin-top: 20px;
  }
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 50px;
}
@media only screen and (max-width: 1240px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media only screen and (max-width: 1240px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 35px;
}
@media only screen and (max-width: 1240px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  h3 {
    font-size: 22px;
  }
}

p {
  font-size: 16px;
  line-height: 1.25;
}

a,
span {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  line-height: 1.25;
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
p a,
p span {
  font-size: inherit;
  line-height: inherit;
}

.btn {
  display: inline-block;
  color: #fafafa !important;
  background: linear-gradient(27deg, #004db8, #0f57d3, #2c78e2);
  cursor: pointer;
  border-radius: 30px;
  padding: 15px 30px;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
}

.chat {
  font-size: 30px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  color: #2267c8;
  background-color: #fafafa;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.chat:hover {
  background-color: #2267c8;
  color: #fafafa;
}
@media only screen and (max-width: 900px) {
  .chat {
    bottom: 25px;
    right: 25px;
  }
}
@media only screen and (max-width: 420px) {
  .chat {
    bottom: 20px;
    right: 15px;
  }
}

#home-page .hero {
  padding: 150px 0 100px 0;
  margin-bottom: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero {
    margin-bottom: 400px;
  }
}
@media only screen and (max-width: 1240px) {
  #home-page .hero {
    padding: 100px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 1240px) {
  #home-page .hero {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 50px;
  }
}
#home-page .hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 1240px) {
  #home-page .hero .container {
    display: block;
  }
}
#home-page .hero .design-el {
  position: absolute;
  left: 300px;
  top: 500px;
  width: 200px;
  z-index: -1;
}
@media only screen and (max-width: 1240px) {
  #home-page .hero .design-el {
    display: none;
  }
}
#home-page .hero .text {
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1240px) {
  #home-page .hero .text {
    width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6235294118);
    padding: 20px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #home-page .hero .text {
    width: 80%;
  }
}
#home-page .hero .text p {
  margin: 30px 0 40px 0;
}
@media only screen and (max-width: 600px) {
  #home-page .hero .text p {
    margin: 20px 0 30px 0;
  }
}
#home-page .hero .mobile-image-grid {
  display: none;
}
#home-page .hero .mobile-image-grid img {
  border-radius: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1240px) {
  #home-page .hero .mobile-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  #home-page .hero .mobile-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  #home-page .hero .mobile-image-grid .col:nth-of-type(3) {
    display: none;
  }
}
#home-page .hero .images {
  position: relative;
}
@media only screen and (max-width: 1240px) {
  #home-page .hero .images {
    display: none;
  }
}
#home-page .hero .images img {
  position: absolute;
  width: 300px;
  border-radius: 10px;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero .images img {
    width: 275px;
  }
}
#home-page .hero .images img:nth-of-type(1) {
  top: -100px;
  left: 0;
}
#home-page .hero .images img:nth-of-type(2) {
  top: 0;
  left: 310px;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero .images img:nth-of-type(2) {
    left: 285px;
  }
}
#home-page .hero .images img:nth-of-type(3) {
  top: 360px;
  left: 0;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero .images img:nth-of-type(3) {
    top: 320px;
  }
}
#home-page .hero .images img:nth-of-type(4) {
  top: -50px;
  right: 0;
}
#home-page .hero .images img:nth-of-type(5) {
  top: 460px;
  left: 310px;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero .images img:nth-of-type(5) {
    top: 420px;
    left: 285px;
  }
}
#home-page .hero .images img:nth-of-type(6) {
  top: 490px;
  right: 0;
}
@media only screen and (max-width: 1420px) {
  #home-page .hero .images img:nth-of-type(6) {
    top: 450px;
  }
}
#home-page .about .container {
  position: relative;
}
#home-page .about .container .design-el:nth-of-type(1) {
  position: absolute;
  width: 300px;
  top: -120px;
  right: -50px;
  z-index: -1;
}
@media only screen and (max-width: 1420px) {
  #home-page .about .container .design-el:nth-of-type(1) {
    right: -10px;
  }
}
@media only screen and (max-width: 1240px) {
  #home-page .about .container .design-el:nth-of-type(1) {
    top: -200px;
  }
}
@media only screen and (max-width: 420px) {
  #home-page .about .container .design-el:nth-of-type(1) {
    right: -5px;
  }
}
#home-page .about .container .design-el:nth-of-type(2) {
  position: absolute;
  width: 500px;
  bottom: -100px;
  left: 300px;
  z-index: -1;
  opacity: 0.5;
}
@media only screen and (max-width: 1240px) {
  #home-page .about .container .design-el:nth-of-type(2) {
    left: 50px;
  }
}
@media only screen and (max-width: 740px) {
  #home-page .about .container .design-el:nth-of-type(2) {
    width: 400px;
    left: -10px;
  }
}
@media only screen and (max-width: 420px) {
  #home-page .about .container .design-el:nth-of-type(2) {
    left: -5px;
    width: 300px;
  }
}
#home-page .about h2 {
  margin-top: 40px;
}
#home-page .about .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 740px) {
  #home-page .about .image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#home-page .about .image-grid img {
  border-radius: 10px;
}
#home-page .clients {
  padding: 100px 0;
  text-align: center;
}
#home-page .clients .clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  background-color: #f4f4f4;
  border: 2px solid #dce1e1;
  border-radius: 30px;
  padding: 20px 40px;
}
@media only screen and (max-width: 600px) {
  #home-page .clients .clients-grid {
    padding: 20px;
  }
}
@media only screen and (max-width: 420px) {
  #home-page .clients .clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
#home-page .clients .clients-grid img {
  width: 50%;
  margin: 0 auto;
  align-self: center;
}
@media only screen and (max-width: 600px) {
  #home-page .clients .clients-grid img {
    width: 80%;
  }
}
#home-page .services {
  background: linear-gradient(27deg, #fa8c05, #fa8c05, #f8d421);
  color: #fafafa;
  padding: 100px 0;
  text-align: center;
}
#home-page .services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1240px) {
  #home-page .services .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding: 0 200px;
  }
}
@media only screen and (max-width: 1080px) {
  #home-page .services .services-grid {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 420px) {
  #home-page .services .services-grid {
    padding: 0 20px;
  }
}
#home-page .services .services-grid h3 {
  margin-bottom: 20px;
}
#home-page .services .btn {
  background: #fafafa;
  color: #fa8c05 !important;
}

#about-page .intro .container {
  position: relative;
}
#about-page .intro p {
  width: 60%;
  margin: 20px 0;
}
@media only screen and (max-width: 800px) {
  #about-page .intro p {
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  #about-page .intro p {
    width: 90%;
  }
}
@media only screen and (max-width: 400px) {
  #about-page .intro p {
    width: 100%;
  }
}
#about-page .intro img {
  border-radius: 10px;
}
#about-page .intro img.design-el {
  position: absolute;
  width: 300px;
  z-index: -1;
  right: -10px;
  top: 0;
}
@media only screen and (max-width: 500px) {
  #about-page .intro img.design-el {
    right: -5px;
    width: 200px;
  }
}
#about-page .cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 800px) {
  #about-page .cta .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#about-page .cta .text {
  background: linear-gradient(27deg, #fa8c05, #fa8c05, #f8d421);
  border-radius: 10px;
  padding: 40px;
  color: #fafafa;
  align-self: flex-start;
}
#about-page .cta .btn {
  margin-top: 40px;
  background: #fafafa;
  color: #fa8c05 !important;
}
#about-page .cta img {
  border-radius: 10px;
}
#about-page .showcase .container {
  position: relative;
}
#about-page .showcase .container img {
  border-radius: 10px;
}
#about-page .showcase .container img.design-el {
  position: absolute;
  left: -10px;
  top: -150px;
  width: 400px;
  z-index: -1;
}
@media only screen and (max-width: 500px) {
  #about-page .showcase .container img.design-el {
    left: -5px;
    width: 300px;
  }
}
#about-page .showcase .container h2 {
  margin-top: 40px;
  color: #fa8c05;
}

#services-page .services .services-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 1080px) {
  #services-page .services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #services-page .services .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#services-page .services .services-grid .service {
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(27deg, #fa8c05, #fa8c05, #f8d421);
  color: #fafafa;
}
#services-page .services .services-grid .service .image {
  overflow: hidden;
  height: 250px;
  margin-bottom: 10px;
}
#services-page .services .services-grid .service .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#services-page .services .services-grid .service .content {
  padding: 10px;
}
#services-page .services .services-grid .service .content p {
  margin: 10px 0 20px 0;
}
#services-page .services .services-grid .service .content .btn {
  background: #fafafa;
  color: #fa8c05 !important;
}
#services-page .tours {
  padding-top: 150px;
}
@media only screen and (max-width: 600px) {
  #services-page .tours {
    padding-top: 100px;
  }
}
#services-page .tours .tours-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 1080px) {
  #services-page .tours .tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #services-page .tours .tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#services-page .tours .tours-grid img {
  border-radius: 10px;
}
#services-page .tours .tours-grid img.design-el {
  position: absolute;
  width: 300px;
  z-index: -1;
  top: -100px;
  right: -60px;
}
@media only screen and (max-width: 600px) {
  #services-page .tours .tours-grid img.design-el {
    top: 0;
    right: -5px;
  }
}
#services-page .tours .tours-grid .text {
  position: relative;
}
#services-page .tours .tours-grid .text p {
  font-size: 22px;
}
@media only screen and (max-width: 1080px) {
  #services-page .tours .tours-grid .text p {
    font-size: 16px;
  }
}
#services-page .shuttle {
  padding-top: 150px;
}
@media only screen and (max-width: 600px) {
  #services-page .shuttle {
    padding-top: 100px;
  }
}
#services-page .shuttle .shuttle-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 1080px) {
  #services-page .shuttle .shuttle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #services-page .shuttle .shuttle-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#services-page .shuttle img {
  border-radius: 10px;
}
#services-page .shuttle .text {
  background-color: #fa8c05;
  color: #fafafa;
  border-radius: 10px;
  padding: 20px;
}
#services-page .shuttle .text p {
  font-size: 22px;
}
@media only screen and (max-width: 1080px) {
  #services-page .shuttle .text p {
    font-size: 16px;
  }
}
#services-page .transportation {
  padding-top: 150px;
}
@media only screen and (max-width: 600px) {
  #services-page .transportation {
    padding-top: 100px;
  }
}
#services-page .transportation .transportation-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 1080px) {
  #services-page .transportation .transportation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #services-page .transportation .transportation-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#services-page .transportation .transportation-grid img {
  border-radius: 10px;
}
#services-page .transportation .transportation-grid img.design-el {
  position: absolute;
  width: 500px;
  z-index: -1;
  top: 100px;
  right: -100px;
}
@media only screen and (max-width: 900px) {
  #services-page .transportation .transportation-grid img.design-el {
    width: 400px;
  }
}
@media only screen and (max-width: 600px) {
  #services-page .transportation .transportation-grid img.design-el {
    width: 80%;
    top: 200px;
    right: -5px;
  }
}
#services-page .transportation .transportation-grid .text {
  position: relative;
}
#services-page .transportation .transportation-grid .text p {
  font-size: 22px;
}
@media only screen and (max-width: 1080px) {
  #services-page .transportation .transportation-grid .text p {
    font-size: 16px;
  }
}

#gallery-page .gallery .gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
@media only screen and (max-width: 1080px) {
  #gallery-page .gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  #gallery-page .gallery .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
#gallery-page .gallery .gallery-grid img {
  border-radius: 10px;
  margin-bottom: 10px;
}
#gallery-page .gallery .gallery-grid img:last-child {
  margin-bottom: 0;
}

#contact-page {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-page .contact {
  padding-top: 100px;
}
#contact-page .contact .container {
  position: relative;
}
#contact-page .contact .design-el {
  position: absolute;
  top: -50px;
  left: 200px;
  width: 250px;
  z-index: -1;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 1420px) {
  #contact-page .contact .design-el {
    left: 0;
  }
}
@media only screen and (max-width: 600px) {
  #contact-page .contact .design-el {
    width: 200px;
  }
}
#contact-page .contact h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #03101b;
}
@media only screen and (max-width: 600px) {
  #contact-page .contact h3 {
    margin-bottom: 20px;
  }
}
#contact-page .contact form {
  background-color: rgba(255, 255, 255, 0.6823529412);
  border-radius: 20px;
  padding: 30px;
  width: 500px;
  margin: 0 auto;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.0235294118);
  border: 1px solid #fff;
}
@media only screen and (max-width: 600px) {
  #contact-page .contact form {
    width: 100%;
    padding: 30px 20px;
  }
}
#contact-page .contact form input,
#contact-page .contact form textarea {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3137254902);
  border-radius: 5px;
  margin: 10px 0;
  outline: none;
  transition: all 0.3s ease;
}
#contact-page .contact form input:focus,
#contact-page .contact form textarea:focus {
  border-color: #03101b;
}
#contact-page .contact form input::-webkit-outer-spin-button,
#contact-page .contact form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-page .contact form textarea {
  resize: none;
}
#contact-page .contact form button {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: 0;
  margin-top: 20px;
}
#contact-page .contact form button i {
  margin-left: 10px;
}
#contact-page .contact form button:hover {
  transform: scale(1);
}
#contact-page .contact form button:active {
  transform: scale(0.96);
}/*# sourceMappingURL=index.css.map */