/* COLORS */
/* BREAKPOINTS */
/*
	GLOBAL
*/
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "muli", sans-serif;
  color: #00375d;
  font-size: 16px;
  line-height: 23px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

*, *::after, *::before {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/*
	TYPO
*/
a {
  color: inherit;
}

p, img, figure, ul, ol {
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.4rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.8rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

/*
	HEADER
*/
.header-wrapper {
  background: #1e5aff url("images/bg-airport.jpg") no-repeat center center;
  background-size: cover;
  display: grid;
}

.site-header {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3rem;
  padding-bottom: 2rem;
}
@media (max-width: 630px) {
  .site-header {
    grid-template-columns: 1fr;
  }
}

.site-header-left {
  text-align: left;
}

.site-header-right {
  text-align: right;
}

.intro {
  color: white;
  margin: 0;
  line-height: 1.3;
  font-size: 1rem;
}
@media (max-width: 630px) {
  .intro {
    text-align: center;
  }
}

.site-logo {
  max-width: 300px;
  width: 100%;
}

.secondary-logo {
  width: 80%;
}
@media (max-width: 630px) {
  .secondary-logo {
    margin-top: 1rem;
  }
}

.aw {
  margin-bottom: 0;
  max-width: 1100px;
  margin-left: 5rem;
  width: 90%;
}
@media (max-width: 630px) {
  .aw {
    margin-left: 0;
  }
}

.section-hero-wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10rem;
}
@media (max-width: 630px) {
  .section-hero-wrapper {
    padding-bottom: 5rem;
  }
}

.hero-text {
  color: white;
  max-width: 600px;
  margin-bottom: 3rem;
}
.hero-text img {
  margin-bottom: 0;
}

/*
	Buttons
*/
.btn {
  background-color: #1e5aff;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 2rem;
}

/*
	CONTENT
*/
.site-main {
  margin-top: -11.5rem;
}
@media (max-width: 630px) {
  .site-main {
    margin-top: -6rem;
  }
}

.section-wrapper {
  margin: 0 auto;
  max-width: 1600px;
}

.video-section-wrapper {
  text-align: center;
}

.video {
  width: 90%;
  height: auto;
  max-width: 700px;
}

.article-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 630px) {
  .article-section-wrapper {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    padding-top: 3rem;
  }
}

.site-article {
  margin: 0 auto;
  height: 100%;
  max-width: 400px;
  background-color: #1e5aff;
}
.site-article img {
  margin-bottom: 0;
  vertical-align: bottom;
}
.site-article h2 {
  margin-top: 0;
}

.site-article-content {
  padding: 2.3rem 3rem 3rem 3rem;
  color: white;
}
.site-article-content > :last-child {
  margin-bottom: 0;
}
@media (max-width: 630px) {
  .site-article-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.thumbnails {
  display: flex;
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  gap: 0.5rem;
}
.thumbnails img {
  display: inline-block;
}

/*
	FOOTER
*/
.site-footer {
  text-align: center;
  padding: 2rem;
  color: gray;
}
