/* Fonts */
@font-face {
  src: url("../fonts/Amatic-Bold.ttf");
  font-family: Amatic;
}
@font-face {
  src: url("../fonts/exljbris - Anivers-Bold.otf");
  font-family: Exljbris;
}
@font-face {
  src: url("../fonts/Anivers-Regular.ttf");
  font-family: Anivers;
}
/* End Fonts */
html {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
html > body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f3ecde;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #393939;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #393939;
}

/* Header + Navigation */
@media (min-width: 1280px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 143px;
    background-image: url("../images/header-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 201;
  }
  .header > a {
    display: block;
    text-decoration: none;
  }
  .header > a > h3, .header > a h5 {
    margin: 0;
    font-family: Amatic;
    color: #343e3d;
    text-transform: uppercase;
    text-align: center;
    cursor: default;
  }
  .header > a > h3 {
    font-size: 74px;
    line-height: 69px;
  }
  .header > a > h5 {
    font-size: 48px;
  }

  .navigation {
    position: fixed;
    left: 0;
    top: 150px;
    background-image: url("../images/nav-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    box-shadow: 3px 0px 10px #3a1f066b;
    z-index: 90;
  }
  .navigation > a {
    display: inline-block;
    padding: 7px 20px 13px 40px;
    font-family: Amatic;
    font-size: 40px;
    color: #343e3d;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 3px #ffffff4d solid;
  }
}
@media (max-width: 1279px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 102px;
    background-image: url("../images/mobile/header-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px #000000aa;
    z-index: 201;
  }
  .header > a {
    display: block;
    text-decoration: none;
  }
  .header > a > h3, .header > a h5 {
    margin: 0;
    font-family: Amatic;
    color: #343e3d;
    text-transform: uppercase;
    text-align: center;
    cursor: default;
  }
  .header > a > h3 {
    font-size: 60px;
    line-height: 54px;
  }
  .header > a > h5 {
    font-size: 39px;
  }

  .navigation {
    position: fixed;
    left: 0;
    top: 130px;
    background-image: url("../images/mobile/nav-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    box-shadow: 3px 0px 5px #3a1f0647;
    z-index: 90;
  }
  .navigation > a {
    display: inline-block;
    padding: 8px 15px 12px;
    font-family: Amatic;
    font-size: 26px;
    color: #343e3d;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px #ffffff4d solid;
    box-sizing: border-box;
  }
}
/* END Header + Navigation */
/* Video */
@media (min-width: 1280px) {
  .video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/popup-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .video.show {
    opacity: 1;
    pointer-events: auto;
  }
  .video > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 133px);
  }
  .video > div > video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    outline: none;
  }
  .video > div > div {
    display: none;
  }

  .video-close {
    position: absolute;
    left: 0;
    top: 250px;
    transform: translateX(-200%);
    width: 82px;
    height: 72px;
    background-color: #ded3c6;
    box-shadow: 3px 0px 10px #3a1f066b;
    transition: transform 0.5s;
    cursor: pointer;
    z-index: 110;
  }
  .video-close:before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    border: 3px #ffffff4d solid;
    box-sizing: border-box;
  }
  .video-close:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    width: 30px;
    height: 46px;
    background-image: url("../images/array_left.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  body.state-video .video-close {
    transform: translateX(0);
  }
}
@media (max-width: 1279px) {
  .video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/popup-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .video.show {
    opacity: 1;
    pointer-events: auto;
  }
  .video > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 102px);
  }
  .video > div > video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    outline: none;
  }
  .video > div > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 35px 45px 30px;
    box-sizing: border-box;
    font-family: Amatic;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #393939;
  }
  .video > div > div > span {
    display: none;
  }

  .video-close {
    position: absolute;
    left: 0;
    top: 140px;
    transform: translateX(-200%);
    width: 42px;
    height: 41px;
    background-image: url("../images/mobile/back-btn.png");
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 3px 0px 5px #3a1f0647;
    transition: transform 0.5s;
    cursor: pointer;
    z-index: 110;
  }
  .video-close:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px #ffffff4d solid;
    box-sizing: border-box;
  }
  .video-close:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 30px;
    background-image: url("../images/mobile/array-left.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  body.state-video .video-close, body.state-popup .video-close {
    transform: translateX(0);
  }
}
/* END Video */
/* Popup */
@media (min-width: 1280px) {
  .popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/popup-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 107;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .popup.show {
    opacity: 1;
    pointer-events: auto;
  }
  .popup > .container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 133px);
    padding: 30px 110px;
    box-sizing: border-box;
  }
  .popup > .container > .close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 47px;
    height: 45px;
    background-image: url("../images/x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s;
  }
  body.state-video .popup > .container > .close {
    opacity: 0;
  }
  .popup > .container > .content {
    width: 100%;
    height: 100%;
  }

  .popup-close {
    position: absolute;
    left: 0;
    bottom: 100px;
    transform: translateX(-200%);
    width: 220px;
    height: 73px;
    padding: 0 85px 0 0;
    box-sizing: border-box;
    background-color: #ded3c6;
    box-shadow: 3px 0px 10px #3a1f066b;
    font-family: Amatic;
    font-size: 40px;
    color: #393939;
    text-transform: uppercase;
    text-align: right;
    line-height: 68px;
    transition: width 0.5s, transform 0.5s;
    cursor: pointer;
    z-index: 110;
  }
  .popup-close:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border: 3px #ffffff4d solid;
    box-sizing: border-box;
  }
  .popup-close:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%) scaleX(1);
    width: 30px;
    height: 46px;
    background-image: url("../images/array_right.png");
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s;
  }
  body.state-video .popup-close {
    transform: translateX(0);
  }
  body.state-video.state-popup .popup-close {
    transform: translateX(-200%);
  }
  .popup .content {
    padding-right: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .popup .content > .template-1 {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .popup .content > .template-1 > .title {
    padding: 10px 0 30px;
    font-family: Amatic;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #393939;
  }
  .popup .content > .template-1 > .title > span {
    font-size: 26px;
  }
  .popup .content > .template-1 > .template-container {
    flex: 1;
    min-height: 300px;
    font-size: 0;
    overflow: hidden;
  }
  .popup .content > .template-1 > .template-container > div {
    display: inline-block;
    width: 50%;
    height: 100%;
    vertical-align: top;
  }
  .popup .content > .template-1 > .template-container > div.gallery {
    position: relative;
    padding: 0px 50px;
    box-sizing: border-box;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-container {
    height: 100%;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-container .swiper-slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-next {
    width: 30px;
    height: 46px;
    outline: none;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-next:after {
    width: 100%;
    height: 100%;
    font-size: 0;
    background-image: url("../images/array_right.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-prev {
    width: 30px;
    height: 46px;
    outline: none;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-prev:after {
    width: 100%;
    height: 100%;
    font-size: 0;
    background-image: url("../images/array_left.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .popup .content > .template-1 > .template-container > div.text {
    padding: 20px 30px;
    box-sizing: border-box;
    font-family: Anivers;
    font-size: 22px;
    color: #393939;
    text-transform: unset;
    text-align: justify;
    line-height: 28px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .popup .content > .title {
    padding: 10px 0 30px;
    font-family: Amatic;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #393939;
  }
  .popup .content > p {
    font-family: Anivers;
    font-size: 22px;
    color: #393939;
    text-transform: unset;
    text-align: justify;
    line-height: 28px;
  }
  .popup .content > div.logo {
    display: flex;
    flex-direction: row;
    padding: 20px 0 10px 0;
  }
  .popup .content > div.logo > a {
    display: flex;
    flex: 1;
  }
  .popup .content > div.logo > a > img {
    display: inline-block;
    max-width: 90%;
    max-height: 100%;
    margin: auto;
  }
}
@media (max-width: 1279px) {
  .popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/popup-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 107;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .popup.show {
    opacity: 1;
    pointer-events: auto;
  }
  .popup > .container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 102px);
    padding: 10px;
    box-sizing: border-box;
  }
  .popup > .container > .close {
    display: none;
  }
  .popup > .container > .content {
    width: 100%;
    height: 100%;
  }

  .popup-close {
    position: absolute;
    left: 0;
    bottom: 25px;
    transform: translateX(-200%);
    width: 115px;
    height: 41px;
    padding: 0 43px 0 0;
    box-sizing: border-box;
    background-image: url("../images/mobile/back-btn.png");
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 3px 0px 5px #3a1f0647;
    font-family: Amatic;
    font-size: 26px;
    color: #393939;
    text-transform: uppercase;
    text-align: right;
    line-height: 38px;
    transition: width 0.5s, transform 0.5s;
    cursor: pointer;
    z-index: 110;
  }
  .popup-close:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px #ffffff4d solid;
    box-sizing: border-box;
  }
  .popup-close:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) scaleX(1);
    width: 20px;
    height: 30px;
    background-image: url("../images/mobile/array-right.png");
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s;
  }
  body.state-video .popup-close {
    transform: translateX(0);
  }
  body.state-video.state-popup .popup-close {
    transform: translateX(-200%);
  }
  body.state-video.state-popup .popup-close:after {
    transform: translateY(-50%) scaleX(-1);
  }

  .popup .content {
    padding-right: 10px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .popup .content > .template-1 {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .popup .content > .template-1 > .title {
    padding: 10px 35px 30px;
    font-family: Amatic;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #393939;
  }
  .popup .content > .template-1 > .title > span {
    font-size: 18px;
  }
  .popup .content > .template-1 > .template-container > div.gallery {
    position: relative;
    height: 33vh;
    padding: 10px 40px;
    box-sizing: border-box;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-container {
    height: 100%;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-container .swiper-slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-next {
    right: 10px;
    width: 20px;
    height: 30px;
    outline: none;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-next:after {
    width: 100%;
    height: 100%;
    font-size: 0;
    background-image: url("../images/mobile/array-right.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-prev {
    left: 10px;
    width: 20px;
    height: 30px;
    outline: none;
  }
  .popup .content > .template-1 > .template-container > div.gallery .swiper-button-prev:after {
    width: 100%;
    height: 100%;
    font-size: 0;
    background-image: url("../images/mobile/array-left.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .popup .content > .template-1 > .template-container > div.text {
    padding: 5px 10px;
    box-sizing: border-box;
    font-family: Anivers;
    font-size: 18px;
    color: #393939;
    text-transform: unset;
    text-align: justify;
    line-height: 24px;
  }
  .popup .content > .title {
    padding: 10px 35px 30px;
    font-family: Amatic;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #393939;
  }
  .popup .content > p {
    font-family: Anivers;
    font-size: 18px;
    color: #393939;
    text-transform: unset;
    text-align: justify;
    line-height: 24px;
  }
  .popup .content > div.logo {
    padding: 10px 0 10px 0;
  }
  .popup .content > div.logo > a {
    display: flex;
    padding: 15px;
    box-sizing: border-box;
  }
  .popup .content > div.logo > a > img {
    display: inline-block;
    max-width: calc(100% - 30px);
    margin: auto;
  }
}
/* END Popup */
/* Map */
@media (min-width: 1280px) {
  div.map {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
}
@media (max-width: 1279px) {
  div.map {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
}
/* END Map */

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