/**
 * Colors
 */
/**
  * Dimensions
  */
/**
  * Fonts
  */
/** Start Fonts **/
@font-face {
  font-family: 'BreePeru';
  src: url("/typefaces/BreePeru/BreePeru_Regular.eot?#iefix") format("embedded-opentype"), url("/typefaces/BreePeru/BreePeru_Regular.otf") format("opentype"), url("/typefaces/BreePeru/BreePeru_Regular.woff") format("woff"), url("/typefaces/BreePeru/BreePeru_Regular.ttf") format("truetype"), url("/typefaces/BreePeru/BreePeru_Regular.svg#BreePeru_Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BreePeru';
  src: url("/typefaces/BreePeru/BreePeru_Light.eot?#iefix") format("embedded-opentype"), url("/typefaces/BreePeru/BreePeru_Light.otf") format("opentype"), url("/typefaces/BreePeru/BreePeru_Light.woff") format("woff"), url("/typefaces/BreePeru/BreePeru_Light.ttf") format("truetype"), url("/typefaces/BreePeru/BreePeru_Light.svg#BreePeru_Light") format("svg");
  font-weight: light;
  font-style: normal;
}

@font-face {
  font-family: 'BreePeru';
  src: url("/typefaces/BreePeru/BreePeru_Bold.eot?#iefix") format("embedded-opentype"), url("/typefaces/BreePeru/BreePeru_Bold.otf") format("opentype"), url("/typefaces/BreePeru/BreePeru_Bold.woff") format("woff"), url("/typefaces/BreePeru/BreePeru_Bold.ttf") format("truetype"), url("/typefaces/BreePeru/BreePeru_Bold.svg#BreePeru_Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

/** End Fonts **/
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-family: "BreePeru";
  letter-spacing: 1px;
  background-color: #005795;
}

textarea:focus, input:focus, button:focus {
  outline: none;
}

h1 {
  font-size: 48px;
  margin: auto;
  font-weight: bold;
}

h2 {
  font-size: 34px;
  margin: auto;
  font-weight: bold;
}

h3 {
  font-size: 1.2em;
  text-transform: uppercase;
  margin: auto;
  font-weight: bold;
}

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

a {
  color: #ffffff;
}

.page {
  width: calc( 100vw - 30px);
  max-width: 100vw;
  padding: 15px;
  background-color: #005795;
  margin: auto;
}

@media only screen and (max-width: 480px) {
  .page {
    width: auto;
  }
}

.page button-wrapper button {
  border: 1px solid #ffffff;
  font-size: 16px;
  background-color: transparent;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 0;
  letter-spacing: .1em;
}

.page button-wrapper button:hover {
  color: #ddd;
  background-color: #005795;
  cursor: pointer;
}

.page see-more {
  font-size: 16px;
  display: block;
  margin-top: 30px;
  cursor: pointer;
}

.page see-more img {
  width: 40px;
  margin-top: 10px;
}

.page textblock {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

header {
  height: 50px;
  width: calc( 100% - 30px);
  background-color: #005795;
  color: #ffffff;
  padding: 15px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 480px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    height: 70px;
  }
}

header peru-logo {
  padding-left: 15px;
}

header peru-logo img {
  height: auto;
  width: 79px;
}

@media only screen and (max-width: 480px) {
  header peru-logo img {
    width: 60px;
  }
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}

@media only screen and (max-width: 480px) {
  header nav {
    min-width: 100%;
    margin-top: auto;
  }
}

header nav a {
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  header nav a {
    margin-left: 5px;
  }
  header nav a:first-child {
    margin-left: 0;
  }
  header nav a:last-child {
    margin-right: 0;
  }
}

header nav a:hover {
  color: #eb2921;
}

#page-home main {
  width: 100%;
  height: calc( 100vh - 140px);
  background-color: #005795;
  background-image: url(/images/home-backgrounds/huaraz.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  -webkit-transition: background-image 1s ease-in-out;
  transition: background-image 1s ease-in-out;
}

@media only screen and (max-width: 480px) {
  #page-home main {
    height: calc( 100vh - 150px);
  }
}

#page-home main logo {
  position: absolute;
  top: 30px;
  left: 30px;
}

@media only screen and (max-width: 480px) {
  #page-home main logo {
    width: 20vw;
    display: block;
    top: 15px;
    left: 15px;
    z-index: 100;
  }
}

#page-home main logo img {
  width: 100%;
}

#page-home main content {
  position: absolute;
  width: 30%;
  min-width: 415px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 480px) {
  #page-home main content {
    min-width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

#page-home main content map-icon {
  width: 150px;
  display: block;
  margin-left: 60px;
  margin-top: 45px;
  height: 33%;
}

@media only screen and (max-width: 480px) {
  #page-home main content map-icon {
    margin-right: 15px;
    margin-left: auto;
    margin-top: 15px;
    width: 20vw;
    height: auto;
  }
}

#page-home main content map-icon img {
  width: 100%;
}

#page-home main content text {
  margin-left: 60px;
  font-size: 18px;
  height: 27%;
}

@media only screen and (max-width: 480px) {
  #page-home main content text {
    margin: auto;
  }
}

#page-home main content text #mdash {
  font-size: 40px;
}

#page-home main content text description {
  display: block;
  width: 70%;
}

@media only screen and (max-width: 480px) {
  #page-home main content text description {
    margin: auto;
  }
}

#page-home main content button-wrapper {
  height: 30%;
}

#page-home main content button-wrapper button {
  margin-left: 60px;
  width: 190px;
}

@media only screen and (max-width: 480px) {
  #page-home main content button-wrapper button {
    margin-left: auto;
  }
}

#page-home main content carousel-nav {
  margin-left: 60px;
  height: 10%;
  position: relative;
  display: block;
  font-size: 20px;
}

@media only screen and (max-width: 480px) {
  #page-home main content carousel-nav {
    margin: auto;
  }
}

#page-home main content carousel-nav i {
  font-size: 18px;
}

#page-home main content carousel-nav span {
  cursor: pointer;
}

#page-home footer {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-home footer social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

#page-home footer social-icons img {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page-home footer span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  margin-left: 30px;
  margin-top: 7px;
}

@media only screen and (max-width: 480px) {
  #page-home footer span {
    margin-top: 0;
  }
}

#page-home footer span a {
  text-decoration: none;
}

city-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

city-container city-hero {
  width: 100%;
  height: calc( 100vh - 80px);
  background-color: #005795;
  background-image: url(/images/home-backgrounds/huaraz.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  -webkit-transition: background-image 1s ease-in-out;
  transition: background-image 1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 480px) {
  city-container city-hero {
    background-position: center;
  }
}

city-container city-hero logo {
  position: absolute;
  top: 30px;
  left: 30px;
}

@media only screen and (max-width: 480px) {
  city-container city-hero logo {
    width: 20vw;
  }
  city-container city-hero logo img {
    width: 100%;
  }
}

city-container city-hero map-icon {
  width: 150px;
  position: absolute;
  top: 30px;
  right: 30px;
}

@media only screen and (max-width: 480px) {
  city-container city-hero map-icon {
    width: 20vw;
  }
}

city-container city-hero map-icon img {
  width: 100%;
}

city-container city-hero text {
  margin: 25vh auto auto;
  width: 40%;
  min-width: 400px;
  max-width: 520px;
  display: block;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  city-container city-hero text {
    margin-top: 20vh;
    width: 90%;
    min-width: auto;
  }
}

city-container city-hero text h1 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
  city-container city-hero text h1 {
    margin-bottom: 0px;
    font-size: 30px;
  }
}

city-container city-hero text mdash {
  font-size: 50px;
}

@media only screen and (max-width: 480px) {
  city-container city-hero text mdash {
    font-size: 30px;
  }
}

city-container city-hero text button {
  margin-top: 20px;
  width: 190px;
}

city-container row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  city-container row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  city-container row:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  city-container row:nth-child(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

city-container #image1, city-container #image2, city-container #map-image {
  width: calc( (100vw - 45px)/2);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 992px) {
  city-container #image1, city-container #image2, city-container #map-image {
    width: calc( 100vw - 45px);
    height: calc( 100vw - 45px);
  }
}

city-container textblock {
  width: calc( (100vw - 45px)/2);
  min-height: calc( (100vw - 45px)/2);
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media only screen and (max-width: 992px) {
  city-container textblock {
    width: calc( 100vw - 45px);
    height: auto;
    padding: calc(15px) calc(15px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

city-container p {
  width: 80%;
  margin: 30px auto;
}

city-container p span.h3 {
  font-size: 1.2em;
  text-transform: uppercase;
  margin: auto;
  font-weight: bold;
}

city-container back-button {
  width: 100%;
  height: 150px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

city-container back-button h3 {
  margin: auto;
}

city-container a {
  color: #005795;
}

#page-sustainable {
  width: calc( 100vw - 45px);
}

#page-sustainable row {
  display: none;
}

#page-sustainable see-more {
  display: none;
  cursor: pointer;
}

#page-chachapoyas {
  width: calc( 100vw - 45px);
}

#page-choquequirao {
  width: calc( 100vw - 45px);
}

#page-cotahuasi {
  width: calc( 100vw - 45px);
}

#page-huaraz {
  width: calc( 100vw - 45px);
}

#page-huancaya {
  width: calc( 100vw - 45px);
}

#page-maranon {
  width: calc( 100vw - 45px);
}

#page-tingana {
  width: calc( 100vw - 45px);
}

#termsWrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  background-color: #ffffff;
  overflow: scroll;
}

#termsWrapper #terms {
  margin: 4vh 20vw;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  #termsWrapper #terms {
    margin: 4vh 4vw;
  }
}

#termsWrapper #terms p {
  text-align: left;
}

#termsWrapper #termsHide {
  position: fixed;
  top: 0px;
  right: 15px;
  cursor: pointer;
}

#termsWrapper #termsHide .x {
  width: 30px;
  height: 3px;
  background-color: #000000;
  margin: 15px 0;
}

#termsWrapper #termsHide .x.x1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 6px);
}

#termsWrapper #termsHide .x.x2 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}
/*# sourceMappingURL=main.css.map */