/*----- FONT IMPORT -----*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700,900");
@font-face {
  font-family: 'SVN-Nexa';
  src: url("../fonts/SVN-NexaBook.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-NexaBook.otf") format("opentype"), url("../fonts/SVN-NexaBook.woff") format("woff"), url("../fonts/SVN-NexaBook.ttf") format("truetype"), url("../fonts/SVN-NexaBook.svg#SVN-NexaBook") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Nexa';
  src: url("../fonts/SVN-NexaBold.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-NexaBold.woff") format("woff"), url("../fonts/SVN-NexaBold.ttf") format("truetype"), url("../fonts/SVN-NexaBold.svg#SVN-NexaBold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Nexa';
  src: url("../fonts/SVN-NexaBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-NexaBlack.otf") format("opentype"), url("../fonts/SVN-NexaBlack.woff") format("woff"), url("../fonts/SVN-NexaBlack.ttf") format("truetype"), url("../fonts/SVN-NexaBlack.svg#SVN-NexaBlack") format("svg");
  font-weight: 900;
  font-style: normal;
}
/*----- VARIABLES -----*/
/*----- MIXIN -----*/
/*----- COMMON -----*/
body {
  font: 28px "SVN-Nexa", Arial, sans-serif;
  line-height: 1.4;
}

p {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
  height: auto;
}

.page-wrapper img {
  width: 100%;
}

video {
  width: 100%;
  display: block;
}

header {
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 100;
  left: 0;
  background: #0d1a1e;
  padding: 0 0 0 45px;
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
    padding-left: 15px;
  }
}

.logo {
  float: left;
  margin-top: 5px;
}
.logo img {
  vertical-align: bottom;
}
.logo a {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1;
  vertical-align: bottom;
}
.logo a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .logo {
    margin-top: 10px;
  }
}

.menu {
  float: right;
}
.menu-content {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #0d1a1e;
  padding: 10% 15px 0;
  overflow-y: auto;
}
.menu ul, .menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu .menu-items {
  display: block;
  max-width: 1366px;
  margin: 0 auto;
}
.menu .menu-items:after {
  display: table;
  content: ' ';
  clear: both;
}
.menu .menu-items li {
  float: left;
  width: 33.33%;
  padding: 20px;
}
.menu .menu-items li:nth-child(3n + 1) {
  clear: both;
}
.menu .menu-items li a {
  font-size: 24px;
  color: white;
}
.menu-btn {
  width: 80px;
  height: 60px;
  background: url("../images/menu-ic.png") no-repeat center;
  border: none;
  font-size: 0;
  cursor: pointer;
}
.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 60px;
  font-size: 0;
  background: url("../images/close-ic.png") no-repeat center;
  cursor: pointer;
}
.menu.open .menu-content {
  visibility: visible;
  opacity: 1;
}
.menu .language-selection {
  max-width: 1366px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.menu .language-selection p {
  color: #fbe106;
  font-weight: 300;
  font-size: 20px;
}
.menu .language-selection p a {
  color: #fff;
}
.menu .language-selection p a:hover {
  color: #fbe106;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .menu-btn, .menu-close {
    width: 60px;
    height: 50px;
    background-size: 26px auto;
  }
  .menu .menu-items li {
    float: none;
    padding: 10px 0;
    width: 100%;
  }
  .menu .menu-items li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .menu .menu-items li a {
    font-size: 16px;
  }
  .menu .language-selection {
    padding: 0;
  }
  .menu .language-selection p {
    font-size: 16px;
  }
}

header + main {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  header + main {
    padding-top: 50px;
  }
}

footer {
  background: #181e21;
  text-align: center;
  padding: 75px 15px;
  border-top: 5px solid #bc5b27;
}
footer p {
  color: white;
  margin: 0;
}
footer .footer-logos {
  margin-bottom: 25px;
}

/*----- HOME PAGE -----*/
.banner {
  position: relative;
}
.banner-text {
  position: absolute;
  padding: 15px;
  width: 100%;
  top: 50%;
  left: 50%;
  max-width: 1310px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.banner-text p {
  margin: 0;
  font-size: 2.5vw;
  font-weight: 900;
  color: white;
}
.banner-view-images {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.banner-view-images a {
  display: block;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-transform: uppercase;
  font-size: 2.3vw;
  line-height: 1.3;
  font-weight: normal;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5%;
}
.banner-view-images a span {
  display: inline-block;
  padding-right: 2.2%;
  background: url("../images/next-ic.png") no-repeat right center;
  background-size: auto 56%;
}
.banner-view-images a:hover {
  text-decoration: none;
  background: #000;
}
.banner-link {
  position: absolute;
}
.banner-link a {
  width: 320px;
  height: 80px;
  font-size: 40px;
  line-height: 42px;
  padding: 15px 0;
  color: #231f20;
  font-weight: normal;
  display: block;
  background: #fee000;
  text-align: center;
}
.banner-link a:hover {
  text-decoration: none;
}
.banner-link a span {
  padding: 7px 52px 0 15px;
  display: inline-block;
  line-height: 36px;
  background: url("../images/next-ic2.png") no-repeat right;
}
@media screen and (max-width: 1199px) {
  .banner-link a {
    width: 180px;
    height: 50px;
    font-size: 20px;
    line-height: 20px;
    padding: 15px 0;
  }
  .banner-link a span {
    line-height: 20px;
    padding-right: 40px;
    padding-left: 20px;
    background-size: auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner-text p {
    font-size: 4vw;
  }
  .banner-link a {
    width: 120px;
    height: 30px;
    font-size: 15px;
    line-height: 20px;
    padding: 5px 0;
  }
  .banner-link a span {
    line-height: 15px;
    padding-right: 30px;
    padding-left: 10px;
    background-size: auto 14px;
  }
}

.play-pause {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -150px;
  font-size: 0;
  padding: 0;
  background: url("../images/play-ic.png") no-repeat center;
  border: none;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.playing + .play-pause {
  background-image: url("../images/pause-ic.png");
  opacity: 0;
}
.play-pause:focus {
  outline: none;
}
.play-pause:hover {
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .play-pause {
    width: 200px;
    height: 200px;
    background-size: 50px auto;
    margin-top: -100px;
    margin-left: -100px;
  }
}

.home-post,
.detail-post {
  padding: 40px 0;
  color: white;
}
.home-post h2,
.detail-post h2 {
  font-size: 50px;
  margin-bottom: 0.8em;
  font-weight: 900;
}
.home-post .container,
.detail-post .container {
  max-width: 800px;
}
.home-post1,
.detail-post1 {
  border-top: 4px solid #3c311a;
  background: url(../images/intro_bg.jpg) no-repeat bottom center;
  background-size: cover;
}
.home-post2,
.detail-post2 {
  background: url("../images/fansipan_bg_1.png") no-repeat top center;
  background-size: 100% auto;
}
.home-post3,
.detail-post3 {
  background: url("../images/fansipan_bg_2.png") no-repeat top center;
  background-size: 100% auto;
}
.home-post4,
.detail-post4 {
  background: url("../images/fansipan_bg_3.png") no-repeat bottom left;
}
@media screen and (max-width: 1199px) {
  .home-post,
  .detail-post {
    background-image: none !important;
  }
  .home-post h2,
  .detail-post h2 {
    font-size: 30px;
  }
}

.slings {
  position: relative;
  overflow: hidden;
}
.slings-desc2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #0f0909;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.slings-title {
  position: absolute;
  width: 100%;
  top: 25%;
  padding: 0 15px;
  text-align: center;
}
.slings-title h3, .slings-title h2 {
  font-size: 2.3vw;
  color: #cc855a;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.slings-title h2 {
  font-size: 5vw;
  font-weight: 900;
  color: #bb5b27;
}
.slings-title .viewmore {
  margin-top: 10px;
}
.slings-title .viewmore a {
  display: inline-block;
  font-size: 24px;
  color: #231f20;
  line-height: 1.5;
  padding: 15px;
  width: 260px;
  background: #fddf00;
  font-weight: 900;
  text-transform: uppercase;
}
.slings-title .viewmore a:hover {
  text-decoration: none;
}
.slings.active .slings-desc2 {
  left: 0;
}
.slings .back {
  position: absolute;
  top: 0;
  right: 0;
}
.slings .back a {
  width: 80px;
  height: 60px;
  display: block;
  background: url("../images/close-ic.png") no-repeat center;
  font-size: 0;
}
@media screen and (max-width: 1199px) {
  .slings-title .viewmore {
    margin-top: 0;
  }
  .slings-title .viewmore a {
    font-size: 16px;
    padding: 10px;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .slings-title h3, .slings-title h3 {
    font-size: 3vw;
  }
  .slings-title .viewmore {
    margin-top: 0;
  }
  .slings-title .viewmore a {
    font-size: 12px;
    padding: 5px 0;
    width: 100px;
  }
}
.slings .back a {
  width: 50px;
  height: 40px;
  display: block;
  background: url("../images/close-ic.png") no-repeat center;
  background-size: 20px auto;
  font-size: 0;
}

/*----- DETAILS PAGE -----*/
.detail-post {
  background: #efefed;
  color: #010101;
}
.detail-post h2, .detail-post h3,
.detail-post .intro-text {
  color: #bb5b27;
  text-transform: uppercase;
}
.detail-post h4 {
  color: #275107;
  font-size: 35px;
  font-style: italic;
  margin-bottom: 1em;
}
.detail-post .intro-text {
  font-size: 26px;
}
@media screen and (max-width: 1199px) {
  .detail-post .intro-text {
    font-size: 18px;
  }

  .detail-post h4 {
    font-size: 25px;
  }
}

.ls-post {
  max-width: 1600px;
  padding: 40px 15px 70px;
  margin: 0 auto;
}
.ls-post ul, .ls-post li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ls-post ul li {
  float: left;
  width: 31.9%;
  margin: 15px 0 15px 2%;
}
.ls-post ul li:nth-child(3n + 1) {
  clear: both;
  margin-left: 0;
}
.ls-post ul li img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.ls-post ul li a {
  font: 900 18px "Montserrat", Arial, sans-serif;
  color: #013a32;
  text-transform: uppercase;
  display: block;
}
.ls-post ul li a span {
  color: #f05a24;
  display: inline-block;
}
.ls-post ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .ls-post ul li {
    width: 31.9%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .ls-post ul li {
    width: 100%;
    margin-left: 0;
  }
}

/*----- SLIDER PAGE -----*/
.page-wrapper {
  position: relative;
}
.page-wrapper:after {
  display: table;
  content: ' ';
  clear: both;
}

.slider-wrapper {
  width: 81.5%;
  float: right;
  background: black url("../images/slide_bg.jpg") no-repeat top right;
}
.slider-wrapper .lightSlider li {
  padding: 100px 150px 60px 150px;
  position: relative;
}
.slider-wrapper .lightSlider li .slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 18.5%;
  height: 100%;
  background: #333;
  color: white;
  padding: 100px 30px 30px;
  display: none;
}
.slider-wrapper .lSPager.lSGallery {
  background: url("../images/thumb_bg.jpg") repeat-x;
  background-size: auto 100%;
}
.slider-wrapper .lSPager.lSGallery li {
  padding: 24px 10px;
  opacity: 0.3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-wrapper .lSPager.lSGallery li.active, .slider-wrapper .lSPager.lSGallery li:hover {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  opacity: 1;
}
.slider-wrapper .lSAction > a {
  height: 40px;
  margin-top: -20px;
}
.slider-wrapper .lSAction .lSPrev {
  background: url("../images/prev.png") no-repeat center;
}
.slider-wrapper .lSAction .lSNext {
  background: url("../images/next.png") no-repeat center;
}

.slide-description {
  position: absolute;
  padding: 100px 30px 30px;
  top: 0;
  left: 0;
  width: 18.5%;
  height: 100%;
  background: #333;
  color: white;
  float: left;
}

.go-back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}
.go-back a {
  color: white;
  padding-left: 30px;
  background: url("../images/prev.png") no-repeat left center;
  background-size: auto 25px;
}

@media screen and (max-width: 1599px) {
  .slide-description {
    font-size: 20px;
  }

  .slider-wrapper {
    background-size: 20% auto;
  }
  .slider-wrapper .lightSlider li {
    padding: 70px 120px 20px 120px;
  }
  .slider-wrapper .lightSlider li .slide-text {
    font-size: 16px;
  }
  .slider-wrapper .lSPager.lSGallery li {
    padding: 15px 5px;
  }

  .go-back a {
    font-size: 16px;
    background-size: auto 20px;
  }
}
@media screen and (max-width: 1199px) {
  .slide-description {
    width: 20%;
    padding: 80px 15px;
    font-size: 16px;
  }

  .slider-wrapper {
    width: 80%;
  }
  .slider-wrapper .lightSlider li {
    padding: 70px 50px 30px 50px;
  }
}
@media screen and (max-width: 991px) {
  .slider-wrapper .lightSlider li {
    padding: 60px 30px 20px 30px;
  }
  .slider-wrapper .lightSlider li .slide-text {
    width: 27%;
    padding: 70px 15px;
  }
}
@media screen and (max-width: 767px) {
  .slide-description {
    width: 100%;
    height: auto;
    background: none;
    padding: 10px 0 0 15px;
  }
  .slide-description .std {
    display: none;
  }

  .slider-wrapper {
    width: 100%;
  }
  .slider-wrapper .lightSlider li {
    padding: 50px 0 0;
    background-image: none;
  }
  .slider-wrapper .lightSlider li .slide-text {
    position: static;
    width: 100%;
    padding: 10px 15px 15px;
    font-size: 14px;
    display: block;
  }

  .go-back {
    top: 10px;
  }
}
@media screen and (max-width: 1199px) {
  body {
    font-size: 18px;
  }
}

/*# sourceMappingURL=styles.css.map */
