/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
*********************/
/*********************
FONTS
*********************/
.mmHero {
  width: 100%;
  height: calc(100vh - 159px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 2.5%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  .mmHero {
    background-attachment: scroll;
  }
}
.mmHero .text {
  max-width: 1000px;
  width: 95%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.mmHero .text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 4em;
  margin: 0;
  line-height: 1.2em;
  text-shadow: 0 0 40px black;
}
@media only screen and (max-width: 768px) {
  .mmHero .text h1 {
    font-size: 2.5em;
  }
}

.subPagesSection {
  text-align: center;
  padding: 5em 2.5%;
  background: #ececec;
  -webkit-box-shadow: 0px 5px 5px rgba(56, 64, 69, 0.161);
          box-shadow: 0px 5px 5px rgba(56, 64, 69, 0.161);
}
.subPagesSection.whiteBackground {
  background: white;
  padding-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.subPagesSection .title {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #02416b;
}
.subPagesSection .subTitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  line-height: 1.2em;
  max-width: 1000px;
  margin: 0 auto;
}
.subPagesSection .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1650px;
  margin: 2.5em auto 0;
}
.subPagesSection .pages .page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  width: calc(25% - 12px);
  margin: 0 6px 12px;
}
.subPagesSection .pages .page:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(30%, rgba(0, 0, 0, 0.2)), color-stop(41%, rgba(0, 0, 0, 0)), color-stop(86%, rgba(0, 0, 0, 0.1019607843)), to(#000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 41%, rgba(0, 0, 0, 0.1019607843) 86%, #000000 100%) 0% 0% no-repeat padding-box;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.subPagesSection .pages .page .image {
  position: relative;
  width: 100%;
}
.subPagesSection .pages .page .image:after {
  content: "";
  width: 100%;
  display: block;
  padding-bottom: 100%;
}
.subPagesSection .pages .page .image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.subPagesSection .pages .page .text {
  position: absolute;
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  padding: 12px;
}
.subPagesSection .pages .page .text h3 {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-transform: uppercase;
  font-size: 1.25em;
  margin-right: 12px;
  text-align: left;
}
.subPagesSection .pages .page .arrow {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 3;
  padding: 12px;
}
.subPagesSection .pages .page:hover .image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (max-width: 1200px) {
  .subPagesSection .pages .page {
    width: calc(33.3333% - 12px);
  }
}
@media only screen and (max-width: 900px) {
  .subPagesSection .pages .page {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 600px) {
  .subPagesSection .pages .page .text h3 {
    font-size: 1em;
  }
}
@media only screen and (max-width: 500px) {
  .subPagesSection .pages .page {
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
  .subPagesSection .pages .page .image:after {
    padding-bottom: 56.25%;
  }
  .subPagesSection .pages .page .text h3 {
    font-size: 1.2em;
  }
}
.subPagesSection .pages.smallLayout {
  max-width: 1200px;
}
.subPagesSection .pages.smallLayout .page {
  width: calc(33.3333% - 12px);
}
@media only screen and (max-width: 900px) {
  .subPagesSection .pages.smallLayout .page {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 550px) {
  .subPagesSection .pages.smallLayout .page {
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
  .subPagesSection .pages.smallLayout .page .image:after {
    padding-bottom: 56.25%;
  }
}
.subPagesSection .pages.compactLayout {
  max-width: 1750px;
}
.subPagesSection .pages.compactLayout .page {
  width: calc(20% - 12px);
}
.subPagesSection .pages.compactLayout .page .image:after {
  padding-bottom: 125%;
}
.subPagesSection .pages.compactLayout .page .text h3 {
  font-size: 1.2em;
}
@media only screen and (max-width: 1200px) {
  .subPagesSection .pages.compactLayout .page {
    width: calc(33.3333% - 12px);
  }
  .subPagesSection .pages.compactLayout .page .image:after {
    padding-bottom: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .subPagesSection .pages.compactLayout .page {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 550px) {
  .subPagesSection .pages.compactLayout .page {
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
  .subPagesSection .pages.compactLayout .page .image:after {
    padding-bottom: 56.25%;
  }
}
.subPagesSection .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5em auto 0;
  width: 95%;
}
.subPagesSection .cta a {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #278644;
  border-radius: 3px;
  text-decoration: none;
  color: #278644;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: bold;
  font-size: 1.25em;
}
.subPagesSection .cta a:hover {
  background: #278644;
  color: white;
}

.travelDealsSection {
  text-align: center;
  color: white;
  padding: 5em 2.5%;
}
.travelDealsSection .title {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #02416b;
}
.travelDealsSection .subTitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  line-height: 1.2em;
  color: black;
  max-width: 1000px;
  margin: 0 auto;
}
.travelDealsSection .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1650px;
  margin: 2.5em auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.travelDealsSection .pages .page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  width: calc(25% - 12px);
  margin: 0 12px 12px 0;
}
.travelDealsSection .pages .page:nth-child(4n) {
  margin-right: 0;
}
.travelDealsSection .pages .page:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(26%, rgba(0, 0, 0, 0.2)), color-stop(37%, rgba(0, 0, 0, 0)), color-stop(86%, rgba(0, 0, 0, 0.1019607843)), to(#000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(0, #000000 0%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0) 37%, rgba(0, 0, 0, 0.1019607843) 86%, #000000 100%) 0% 0% no-repeat padding-box;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.travelDealsSection .pages .page .image {
  position: relative;
  width: 100%;
}
.travelDealsSection .pages .page .image:after {
  content: "";
  width: 100%;
  display: block;
  padding-bottom: 125%;
}
.travelDealsSection .pages .page .image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.travelDealsSection .pages .page .text {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  padding: 12px;
}
.travelDealsSection .pages .page .text h3 {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-transform: uppercase;
  font-size: 1.5em;
  margin-right: 12px;
  text-align: left;
}
.travelDealsSection .pages .page:hover .image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (max-width: 1200px) {
  .travelDealsSection .pages .page {
    width: calc(33.3333% - 8px);
  }
  .travelDealsSection .pages .page:nth-child(4n) {
    margin: 0 12px 12px 0;
  }
  .travelDealsSection .pages .page:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 900px) {
  .travelDealsSection .pages .page {
    width: calc(50% - 6px);
  }
  .travelDealsSection .pages .page:nth-child(3n) {
    margin: 0 12px 12px 0;
  }
  .travelDealsSection .pages .page:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .travelDealsSection .pages .page .text h3 {
    font-size: 1em;
  }
}
@media only screen and (max-width: 500px) {
  .travelDealsSection .pages .page {
    width: 100%;
    margin: 0 0 12px 0 !important;
  }
  .travelDealsSection .pages .page .image:after {
    padding-bottom: 56.25%;
  }
  .travelDealsSection .pages .page .text h3 {
    font-size: 1.2em;
  }
}