:root {
  --primary-color: #00ac9d;
  --secondary-color: #00467f;
  --alt-color: #f1f1f1;
  --secondary-text-color: #a3a3a3;
  --secondary-text-light: #d8d7d7;
  --secondary-text-dark: #081a29;
  --swiper-theme-color: var(var(--primary-color));
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: var(--alt-color);
  overflow-x: hidden;
}

h1, h3 {
  color: var(--secondary-color);
  text-transform: uppercase;
}

.heading {
  text-align: center;
  padding: 3em 1em;
}
.heading h1 {
  position: relative;
  color: var(--secondary-color);
  font-size: 2.5em;
}
.heading h1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5em;
  color: var(--secondary-text-light);
  z-index: -1;
  width: 100%;
}

a {
  color: var(--alt-color);
  text-decoration: none;
}

a {
  transition: 0.4s;
  text-decoration: none;
}

a:hover {
  color: #ccc;
}

p {
  font-size: 0.9em;
  color: var(--secondary-text-color);
  line-height: 1.6em;
}

section {
  padding: 4em 2em;
  margin: 3em 0;
}

.container {
  margin: 0 auto;
  max-width: 1100px;
}

.logo {
  filter: drop-shadow(5px 5px 5px #111);
}

.btn {
  padding: 0.7em 1.5em;
  border-radius: 2em;
  letter-spacing: 1px;
  font-size: 0.9em;
  margin: 1em 0;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  margin-right: 0.5em;
  transition: 0.5s;
}
.btn-primary:hover {
  border: 2px var(--primary-color) solid;
  color: var(--primary-color);
  background: none;
}

.btn-secondary {
  border: 2px var(--secondary-color) solid;
  color: var(--secondary-color);
  transition: 0.5s;
}
.btn-secondary:hover {
  background: var(--secondary-color);
  color: #fff;
}

.card {
  width: 35em;
  margin: 5em 0;
  position: relative;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: var(--primary-color);
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .card-text {
  background: var(--primary-color);
  padding: 2em;
  box-sizing: border-box;
  width: 50%;
  min-height: 110%;
  position: absolute;
  right: 0em;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.card .card-text h1 {
  -webkit-text-decoration: underline var(--alt-color);
          text-decoration: underline var(--alt-color);
}
.card .card-text p {
  color: var(--alt-color);
  margin-bottom: 2em;
}
.card .card-text .btn {
  border-color: #fff;
  color: #fff;
  margin: 0;
}
.card .card-text .btn:hover {
  background: #fff;
  color: var(--primary-color);
}

.swiper {
  width: 100%;
  height: 100%;
  background: var(--alt-color);
  min-height: 10em;
}
.swiper .swiper-slide {
  background: var(--alt-color);
}

.planeSwiper .swiper-slide div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.planeSwiper .swiper-slide img {
  width: 60%;
  max-width: 900px;
  filter: drop-shadow(10px 10px 15px #ccc);
}
.planeSwiper .swiper-slide .slide-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--secondary-text-light);
  font-size: 18em;
  z-index: 0;
}

.aboutSwiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  z-index: 99;
  position: fixed;
  width: 100%;
  background: var(--alt-color);
}
nav a {
  text-decoration: none;
}
nav .container {
  padding: 1em 2em;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .container .menu-btn {
  display: none;
}
nav .container .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container .menu ul {
  list-style-type: none;
  padding: 0;
  display: inline-block;
}
nav .container .menu ul li {
  display: inline-block;
  margin: 0 0.5em;
}
nav .container .menu ul li a {
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-text-dark);
}
nav .container .menu ul li a:hover {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
nav .container .logo {
  width: 12em;
  display: inline-block;
  filter: drop-shadow(5px 5px 5px #ccc);
}

header {
  height: 100vh;
  background: url(../images/background-min.png) center no-repeat;
  background-size: cover;
  position: relative;
}
header .content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 3em;
  height: 80%;
  max-width: 500px;
}
header .content h1 {
  font-size: 2.7em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4em;
  color: var(--secondary-color);
}
header .content h1 span {
  font-size: 1.3em;
  color: var(--primary-color);
}
header .content p {
  max-width: 30em;
  font-size: 1em;
}
header .plane {
  width: 60%;
  max-width: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  top: 30%;
  z-index: 0;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

header::before, header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
}

header::before {
  width: 100%;
  background: url("../images/clouds-min.png") center no-repeat;
  background-size: cover;
}

header::after {
  background: linear-gradient(90deg, #f1f1f1 0%, rgba(255, 255, 255, 0) 100%);
  width: 50%;
}

.about {
  margin: 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15em;
  height: 15em;
  width: 100%;
  background: linear-gradient(0deg, #f1f1f1 0%, rgba(255, 255, 255, 0) 100%);
}

.services .container {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.services .container .service {
  max-width: 20em;
  margin: 2em;
}
.services .container .service i {
  color: var(--primary-color);
}

.contact {
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}
.contact p {
  max-width: 40em;
  margin: 0 auto 2em auto;
}

footer {
  background: var(--secondary-text-dark);
  position: relative;
  margin-top: 8em;
}
footer .menu {
  padding: 5em 2em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer .menu ul {
  padding: 0;
  list-style-type: none;
  margin: 2em;
}
footer .logo2 {
  position: absolute;
  top: -4em;
  left: 50%;
  transform: translateX(-50%);
  width: 8em;
}
footer .main-link {
  margin: 1em 0;
}
footer .main-link a {
  background-image: linear-gradient(0deg, var(--primary-color) 0%, var(--primary-color) 100%);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 40% 0.3em;
  padding: 0.3em 0;
  transition: 300ms ease;
  font-weight: 700;
  font-size: 1.2em;
}
footer .main-link a:hover {
  background-size: 100% 0.3em;
}
footer .social-media {
  border-top: 1px #06121c solid;
  border-bottom: 1px solid #06121c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 3em 2em;
  text-align: center;
}
footer .social-media a {
  font-size: 1.5em;
  margin: 0 1em;
}
footer .footer-bottom .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 4em 2em;
  text-align: center;
}
footer .footer-bottom img {
  width: 20em;
  display: block;
}
footer .footer-bottom a, footer .footer-bottom p, footer .footer-bottom img {
  margin: 2em 0;
}/*# sourceMappingURL=style.css.map */