@font-face {
  font-family: "Gill Sans";
  src: url("../gillSans.woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div#app {
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

nav {
  position: absolute;
  top: 0;
  color: #000000;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
  max-width: 980px;
  width: 100vw;
  height: 60px;
  border-bottom: solid 1px #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav .siteLogo {
  width: 92px;
  height: 42px;
  border: solid #000000 2px;
  font-size: calc(15px + 0.5vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
nav .links {
  width: 500px;
  font-size: calc(10px + 0.4vw);
  display: flex;
  justify-content: flex-end;
}
nav .links a {
  text-decoration: none;
  color: #000000;
}
nav .links .link {
  padding-left: 19.5px;
  padding-right: 19.5px;
  border-right: solid #79ADDC 1px;
}
nav .links .lastLink {
  padding-right: 0px;
  border-right: none;
}

#hero {
  height: 500px;
  width: 100vw;
  padding-top: 60px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.333) 0%, rgba(0, 0, 0, 0.333) 100%), url("../img/airplane.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-style: italic;
}
#hero h2 {
  text-transform: uppercase;
  font-size: 60px;
  font-stretch: extra-condensed;
}
#hero p {
  width: 490px;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 1.25em;
  text-align: center;
}
#hero a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25em;
  font-style: none;
  color: #FFFFFF;
  background-color: #79ADDC;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tourHero {
  max-width: 980px;
  width: 100vw;
  height: 200px;
  margin-top: 110px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url(../img/forest.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 60px;
  color: #FFFFFF;
}

#locations, .locationRow {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  width: 100vw;
  height: 304px;
}
#locations .location, .locationRow .location {
  max-width: 236px;
  width: 33.333vw;
  height: 304px;
  margin-top: -43px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: #FFFFFF;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
}
#locations .location div, .locationRow .location div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#locations .location h3, .locationRow .location h3 {
  font-size: calc(15px + 0.75vw);
  text-transform: uppercase;
  font-weight: 400;
}
#locations .location p, .locationRow .location p {
  font-size: calc(15px + 0.5vw);
}
#locations .location a, .locationRow .location a {
  background-color: #79ADDC;
  text-decoration: none;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 133px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bookForm {
  max-width: 980px;
  width: 100vw;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000000;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
}
#bookForm h3 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: normal;
  font-size: 60px;
}
#bookForm .inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#bookForm .inputs input {
  height: 58px;
  margin-bottom: 20px;
  background-color: #E5E5E5;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
  font-size: 18px;
  color: #000000;
  border: solid 2px #79ADDC;
  border-radius: 0;
}
#bookForm .inputs .small {
  max-width: 344px;
  width: 100%;
}
#bookForm .inputs .large {
  max-width: 453px;
  width: 100%;
}
#bookForm .inputs .dateSec {
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}
#bookForm .inputs .dateSec h4 {
  font-size: 18px;
  font-weight: lighter;
}
#bookForm .inputs .dateSec input {
  max-width: 700px;
  width: 100%;
}
#bookForm .inputs .dropdowns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#bookForm .inputs .dropdowns div {
  max-width: 300px;
  width: 33%;
  height: 58px;
  display: flex;
  align-items: baseline;
}
#bookForm .inputs .dropdowns div h4, #bookForm .inputs .dropdowns div select {
  color: #000000;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
  font-size: 18px;
}
#bookForm .inputs .dropdowns div select {
  margin-left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid #79ADDC;
}
#bookForm .inputs .dropdowns div select option {
  color: #000000;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
}
#bookForm .inputs #messageText {
  width: 100%;
  height: 192px;
  margin-top: 20px;
  text-align: left;
  color: #000000;
}
#bookForm .inputs .submitBtn {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  background-color: #79ADDC;
  color: #FFFFFF;
}

/*End of #bookForm*/
footer {
  width: 100vw;
  height: 100px;
  padding-left: 10vw;
  padding-right: 10vw;
  background-color: #79ADDC;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer .siteLogo {
  width: 92px;
  height: 42px;
  border: solid #FFFFFF 2px;
  font-size: 1.4em;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer p {
  margin: 0;
}
footer .socials i {
  font-size: 22.5px;
  margin-left: 1.5vw;
}

@media (width >= 1080px) {
  footer {
    padding-left: 150px;
    padding-right: 150px;
    font-size: 1em;
  }
}
@media (width < 1080px) {
  footer {
    padding-left: calc(25px + 1vw);
    padding-right: calc(25px + 1vw);
    font-size: 0.75em;
  }
}
#aboutTitle {
  margin-top: 160px;
  max-width: 980px;
  width: 100%;
  color: #000000;
}
#aboutTitle h2 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 60px;
  font-weight: lighter;
  width: fit-content;
  padding-right: 5px;
  border-bottom: 1px solid #000000;
}
#aboutTitle p {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 16px;
  margin-top: 16px;
}

.clientQuotes {
  max-width: 980px;
  width: 100%;
  margin-top: 75px;
}
.clientQuotes h3 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 40px;
  font-weight: lighter;
  width: fit-content;
  padding-right: 5px;
  border-bottom: 1px solid #000000;
}
.clientQuotes .quote {
  max-width: 676px;
  width: 100vw;
  min-height: 150px;
  height: fit-content;
  margin-bottom: 37px;
  display: flex;
  justify-content: space-between;
}
.clientQuotes .quote img {
  width: 260px;
  height: 150px;
  object-fit: cover;
}
.clientQuotes .quote div {
  width: 385px;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.clientQuotes .quote h4 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  color: #79ADDC;
  font-size: 20px;
  font-style: italic;
  font-stretch: extra-condensed;
}

#specTitle {
  margin-top: 160px;
  max-width: 980px;
  width: 100%;
  color: #000000;
}
#specTitle h2 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 30px;
  font-weight: lighter;
  width: fit-content;
  padding-right: 5px;
  margin-left: 5px;
  margin-top: -47px;
  border-bottom: 1px solid #000000;
}

.specialList {
  width: 100vw;
  max-width: 980px;
}
.specialList .special {
  display: flex;
  align-items: center;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  margin-bottom: 60px;
  padding-left: 5px;
}
.specialList .special img {
  width: 200px;
  height: 287px;
  margin-right: 20px;
  object-fit: cover;
}
.specialList .special div.flexCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 300px;
}
.specialList .special div.flexCol a {
  background-color: #79ADDC;
  text-decoration: none;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 133px;
  height: 40px;
  border-radius: 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialList .special div.flexRow {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
}
.specialList .special div.flexRow h3 {
  font-size: 30px;
  font-weight: lighter;
  font-stretch: extra-condensed;
  border-bottom: 1px solid #000000;
}
.specialList .special div.flexRow p {
  margin-left: 5px;
  font-size: 20px;
  color: #FF7D38;
  font-weight: lighter;
  font-stretch: extra-condensed;
}

#blogTitle {
  margin-top: 160px;
  max-width: 980px;
  width: 100vw;
  color: #000000;
}
#blogTitle h2 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 30px;
  font-weight: lighter;
  width: fit-content;
  margin-left: 15px;
  padding-right: 5px;
  margin-top: -47px;
  border-bottom: 1px solid #000000;
}

.blogContainer {
  max-width: 980px;
  margin-left: 1vw;
  margin-right: 1vw;
  width: 98vw;
}
.blogContainer .blogArt {
  width: 100vw;
  max-width: 980px;
  min-height: 380px;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}
.blogContainer .blogArt .artDate {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #79ADDC;
  color: #FFFFFF;
  line-height: 0.4em;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
}
.blogContainer .blogArt .artDate h4 {
  font-size: 22px;
  font-weight: bold;
}
.blogContainer .blogArt .artContent {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  max-width: 900px;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
}
.blogContainer .blogArt .artContent img {
  max-width: 900px;
  width: 100vw;
  height: 259px;
  object-fit: cover;
  object-position: center;
}
.blogContainer .blogArt .artContent h4 {
  font-size: 15px;
  color: #000000;
}
.blogContainer .blogArt .artContent p {
  font-size: 13px;
  color: #79ADDC;
}

#conTitle {
  margin-top: 160px;
  max-width: 980px;
  width: 100vw;
  color: #000000;
}
#conTitle h2 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 30px;
  font-weight: lighter;
  width: fit-content;
  margin-left: 15px;
  padding-right: 5px;
  margin-top: -47px;
  border-bottom: 1px solid #000000;
}

#contactList {
  width: 100vw;
  max-width: 980px;
  margin-bottom: 85px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contactList * {
  margin: 10px;
}
#contactList div.flexCol {
  display: flex;
  flex-direction: column;
}
#contactList #leftContact {
  max-width: 400px;
  width: 100vw;
  min-width: 200px;
}
#contactList #leftContact iframe {
  height: 442px;
  max-width: 400px;
  width: 100vw;
  min-width: 200px;
  margin-bottom: 34px;
}
#contactList #leftContact p {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-weight: lighter;
  font-size: 18px;
  line-height: 10px;
  margin: 6px;
}
#contactList #rightContact {
  max-width: 525px;
  width: 100vw;
  min-width: 250px;
}
#contactList #rightContact input {
  border: 0 solid transparent;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 16px;
}
#contactList #rightContact .small {
  height: 60px;
}
#contactList #rightContact .large {
  height: 200px;
}
#contactList #rightContact a.sendMsgBtn {
  width: 167px;
  height: 60px;
  background-color: #79ADDC;
  color: #FFFFFF;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locHero {
  margin-top: 110px;
  max-width: 980px;
  width: 100vw;
  height: 413px;
  color: #FFFFFF;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.locHero h3 {
  width: 100%;
  font-size: calc(10px + 3vw);
  padding-left: 1vw;
  text-align: left;
}
.locHero h5 {
  width: 100%;
  font-size: calc(10px + 1.5vw);
  padding-right: 1vw;
  text-align: right;
}

.locPics {
  max-width: 980px;
  width: 100vw;
  height: 347px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.locPics img {
  width: 30%;
  height: 347px;
  object-fit: cover;
  object-position: center;
}

.dayDesc {
  max-width: 980px;
  width: 100vw;
  margin-top: 40px;
  margin-bottom: 40px;
}
.dayDesc h3 {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-stretch: extra-condensed;
  font-style: italic;
  font-size: 60px;
  font-weight: lighter;
  width: fit-content;
  margin-left: 15px;
  padding-right: 5px;
  border-bottom: 1px solid #000000;
}
.dayDesc p {
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  font-size: 16px;
}

a.locBut {
  margin-top: 40px;
  margin-bottom: 80px;
  width: 133px;
  height: 40px;
  border-radius: 20px;
  background-color: #79ADDC;
  color: #FFFFFF;
  font-family: "Gill Sans", "Proxima Nova ScOsf";
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=styles.css.map */
