@import url(normalize.css);
@font-face {
  font-family: 'Oswald';
  src: url("https://cdn.zulaoyun.com/sitecdn/TR/Content/hesapzulaoyun/fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400; }
@font-face {
  font-family: 'Oswald';
  src: url("https://cdn.zulaoyun.com/sitecdn/TR/Content/hesapzulaoyun/fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 600; }
@font-face {
  font-family: 'Evogria';
  src: url("https://cdn.zulaoyun.com/sitecdntest/TR/Content/hesapzulaoyun/fonts/Evogria.otf") format("opentype"); }
* {
  box-sizing: border-box; }

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  height: 60px;
  transition: 300ms all; }
  header .mobile-logo {
    display: none;
    max-width: 75px;
    position: fixed;
    z-index: 999;
    left: 10px;
    top: 10px; }
    header .mobile-logo img {
      max-width: 100%; }
  header .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    header .container .logo {
      display: flex;
      align-items: center;
      width: 160px;
      height: 110px;
      padding: 0 15px;
      position: relative;
      z-index: 1; }
      header .container .logo img {
        max-width: 100%;
        height: auto; }
      header .container .logo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: -1;
        transition: 300ms all; }
    header .container .main-menu {
      list-style: none;
      margin: 0; }
      header .container .main-menu .menu-item {
        display: inline-block;
        text-align: center;
        height: 60px;
        line-height: 60px; }
        header .container .main-menu .menu-item .menu-link {
          display: block;
          color: #c5b39c;
          font-size: 16px;
          letter-spacing: 2px;
          padding: 0 30px;
          position: relative; }
          header .container .main-menu .menu-item .menu-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #e7dac2;
            transition: 300ms all;
            opacity: 0; }
          header .container .main-menu .menu-item .menu-link.active::after, header .container .main-menu .menu-item .menu-link:hover::after {
            opacity: 1; }
    header .container .lang {
      height: 60px;
      line-height: 60px; }
      header .container .lang a {
        color: #c5b39c;
        font-size: 14px;
        display: inline-block;
        margin-right: 5px; }
        header .container .lang a.active, header .container .lang a:hover {
          color: #ffb004; }
  header.scrolled {
    background-color: #000; }
    header.scrolled .logo::after {
      background-color: #000; }

/* Responsive */
@media (min-width: 992px) and (max-width: 1200px) {
  header .container .main-menu .menu-item .menu-link {
    padding: 0 15px; } }
@media (max-width: 991px) {
  header {
    background: unset; }
    header.scrolled {
      background: unset; }
    header .main-menu {
      display: none; }
    header .mobile-logo {
      display: block; }
    header .container .logo {
      display: none; }
    header .lang {
      display: none; } }
body {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #16120c;
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; }
  body.main-page {
    background-position: center; }
  body .main-wrapper {
    flex: 1; }

.container {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px; }

.img-fluid {
  max-width: 100% !important;
  height: auto; }

a {
  text-decoration: none !important;
  transition: all .3s; }

h1.page-title {
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 36px;
  font-weight: 400; }

/* Mobile Menu */
#menuToggler {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: #cdb350;
  transition: 300ms all;
  z-index: 9999999; }
  #menuToggler .fa-bars {
    color: #cdb350;
    text-shadow: 0px 0px 5px #222; }
  #menuToggler .fa-times {
    color: #cdb350; }
  #menuToggler:hover {
    color: #ffb004; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 50px 0;
  z-index: 99999;
  transition: 300ms all; }
  .mobile-menu.open {
    right: 0; }
  .mobile-menu .logo {
    text-align: center; }
    .mobile-menu .logo img {
      max-width: 30%;
      height: auto; }
  .mobile-menu ul {
    list-style: none;
    padding: 0 15px; }
    .mobile-menu ul li a {
      display: block;
      padding: 10px 0;
      text-decoration: none;
      background-color: #000;
      color: #e7dac2;
      border: 1px solid #e7dac2;
      margin-bottom: 15px; }

.menu-opac {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99; }

/* Responsive */
@media (max-width: 991px) {
  .mobile-menu .lang {
    display: block; }
    .mobile-menu .lang a {
      color: #c5b39c;
      font-size: 14px;
      display: inline-block;
      margin-right: 5px; }
      .mobile-menu .lang a.active, .mobile-menu .lang a:hover {
        color: #ffb004; }

  #menuToggler {
    display: block;
    right: 10px;
    top: 5px;
    font-size: 30px !important; } }
/* Main Greeting */
.main-greeting {
  background-image: url("../images/smoke-character.png");
  min-height: 1316px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-position: center;
  background-size: cover; }
  .main-greeting p {
    margin: 45px 0;
    font-size: 26px; }
  .main-greeting .store-icons a {
    display: inline-block; }
    .main-greeting .store-icons a:not(:last-child) {
      margin-right: 30px; }
    .main-greeting .store-icons a:hover {
      opacity: .9; }
  .main-greeting .arrow-down {
    width: 40px;
    height: 65px;
    border: 5px solid #ddc455;
    color: #ddc455;
    border-radius: 50px 50px 70px 70px;
    font-size: 14px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .main-greeting .arrow-down span {
      width: 5px;
      height: 10px;
      background-color: #ddc455;
      border-radius: 70px; }
    .main-greeting .arrow-down i {
      margin: 0 0 -5px; }
    .main-greeting .arrow-down.scrolled {
      display: none !important; }
  .main-greeting.video {
    position: relative;
    justify-content: flex-start;
    min-height: 100%;
    margin-top: 60px; }
    .main-greeting.video .badges {
      position: absolute;
      left: 50px;
      bottom: 150px;
      text-align: center;
      z-index: 99;
      display: none; }
      .main-greeting.video .badges.fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 15px; }
      .main-greeting.video .badges a {
        margin-right: 15px; }
        .main-greeting.video .badges a:last-child {
          margin-right: 0; }
      .main-greeting.video .badges .slogan {
        display: none;
        margin-bottom: 10px; }
        .main-greeting.video .badges .slogan.visible {
          display: flex;
          align-items: center;
          justify-content: center; }
        .main-greeting.video .badges .slogan span, .main-greeting.video .badges .slogan strong {
          border-radius: 5px;
          padding: 5px 0; }
        .main-greeting.video .badges .slogan span {
          background-color: #000;
          color: #ffb004;
          flex: 1;
          border-bottom-right-radius: 0;
          border-top-right-radius: 0; }
        .main-greeting.video .badges .slogan strong {
          flex: 2;
          background-color: #ffb004;
          color: #000;
          border-bottom-left-radius: 0;
          border-top-left-radius: 0; }
      .main-greeting.video .badges .logo {
        display: none; }
        .main-greeting.video .badges .logo img {
          max-width: 200px; }
    .main-greeting.video video {
      width: 100%;
      height: 100%; }

.phone {
  margin-top: -300px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .phone img {
    max-width: 100%;
    margin-left: -80px; }

/* Responsive */
@media (max-width: 1366px) {
  .main-greeting.video .badges {
    position: absolute;
    left: 50px;
    bottom: 50px;
    text-align: center; }
    .main-greeting.video .badges img {
      max-height: 50px; }
    .main-greeting.video .badges .logo img {
      max-width: 190px;
      max-height: unset; } }
@media (max-width: 1024px) {
  .main-greeting p {
    text-align: center;
    padding: 0 20px; } }
@media (max-width: 992px) {
  .main-greeting.video {
    margin-top: 0; }
    .main-greeting.video .badges {
      position: absolute;
      left: 0;
      bottom: 80px;
      text-align: center;
      z-index: 9999;
      width: 100%;
      padding: 0 0 5px 0;
      display: block; }
      .main-greeting.video .badges a {
        display: inline-block;
        margin-right: 20px; }
        .main-greeting.video .badges a:last-child {
          margin-right: 0; }
      .main-greeting.video .badges img {
        max-height: 35px;
        display: block; }
      .main-greeting.video .badges .logo {
        display: none; } }
@media (max-width: 580px) {
  .store-icons {
    text-align: center;
    margin-bottom: 50px; }
    .store-icons img {
      width: 80%; }
    .store-icons a:not(:last-child) {
      margin: 0 0 20px !important; } }
@media (max-width: 530px) {
  .main-greeting {
    background-image: url("../images/mobile-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    justify-content: center; }
    .main-greeting > img {
      width: 65%;
      margin-top: 240px; }
    .main-greeting p {
      margin: 40px 0 20px;
      font-size: 24px;
      line-height: 30px;
      color: #f8edbc;
      text-shadow: 1px 1px 3px #222; }
    .main-greeting .store-icons {
      max-width: 250px; }
      .main-greeting .store-icons img {
        width: 100% !important;
        display: block; }
      .main-greeting .store-icons a:not(:last-child) {
        margin: 0 0 10px !important; }
    .main-greeting .arrow-down {
      display: flex !important; }

  .phone {
    margin-top: 0; }
    .phone img {
      margin-left: -40px; } }
@media (max-width: 414px) {
  .main-greeting > img {
    width: 50%;
    margin-top: 220px; }
  .main-greeting p {
    font-size: 18px;
    line-height: 30px;
    color: #f8edbc; }
  .main-greeting .store-icons {
    max-width: 200px; }
    .main-greeting .store-icons img {
      width: 100% !important;
      display: block; }
    .main-greeting .store-icons a:not(:last-child) {
      margin: 0 0 10px !important; }

  .phone {
    margin-top: 0; }
    .phone img {
      margin-left: -40px; }

  .arrow-down {
    width: 35px !important;
    height: 50px !important;
    border: 3px solid #ddc455 !important;
    font-size: 11px !important; }
    .arrow-down span {
      width: 5px !important;
      height: 7px !important; } }
@media (max-width: 375px) {
  .main-greeting > img {
    width: 65%;
    margin-top: 220px; } }
@media (max-height: 667px) {
  .main-greeting {
    /*.arrow-down {
        i {
            margin: 0 0 -5px;
        }
    }*/ }
    .main-greeting > img {
      width: 50%;
      margin-top: 220px; }
    .main-greeting .store-icons {
      max-width: 150px;
      margin-bottom: 30px; } }
@media (max-width: 320px) {
  .main-greeting > img {
    width: 50%;
    margin-top: 180px; }
  .main-greeting p {
    margin: 20px;
    line-height: 20px; }
  .main-greeting .store-icons {
    max-width: 150px;
    margin-bottom: 20px; } }
/* Media Component */
.media {
  padding: 50px 0 0;
  position: relative;
  z-index: 2; }
  .media .media-header h2 {
    text-align: center;
    color: #d7cab4;
    font-size: 36px;
    margin: 0 0 28px;
    font-weight: 300; }
  .media .media-content {
    padding: 0 130px; }
    .media .media-content .slider .slick-dots {
      position: absolute;
      top: 102%;
      left: 0;
      width: 100%;
      height: auto;
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: center; }
      .media .media-content .slider .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer; }
        .media .media-content .slider .slick-dots li button {
          font-size: 0;
          line-height: 0;
          display: block;
          width: 20px;
          height: 20px;
          padding: 5px;
          cursor: pointer;
          color: transparent;
          border: 0;
          outline: none;
          background: transparent; }
          .media .media-content .slider .slick-dots li button::before {
            content: '\f111';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 6px;
            line-height: 20px;
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            text-align: center;
            opacity: .25;
            color: #fff;
            -webkit-font-smoothing: antialiased; }
        .media .media-content .slider .slick-dots li.slick-active button::before {
          opacity: 1; }
    .media .media-content .slider .slider-for {
      padding: 10px;
      border: 1px solid rgba(215, 202, 180, 0.5); }
      .media .media-content .slider .slider-for .slide-item:focus {
        outline: none; }
    .media .media-content .slider .slider-nav {
      margin: 10px 0 0;
      padding: 0 96px;
      position: relative; }
      .media .media-content .slider .slider-nav .nav-item {
        background-color: #212020;
        border: 1px solid #756e62;
        margin: 0 4px; }
        .media .media-content .slider .slider-nav .nav-item:focus {
          outline: none; }
        .media .media-content .slider .slider-nav .nav-item img {
          opacity: 0.2;
          transition: 300ms all;
          cursor: pointer; }
          .media .media-content .slider .slider-nav .nav-item img:hover {
            opacity: 1; }
          .media .media-content .slider .slider-nav .nav-item img:focus {
            outline: none; }
        .media .media-content .slider .slider-nav .nav-item.slick-current img {
          opacity: 1; }
      .media .media-content .slider .slider-nav .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        width: 50px;
        height: 50px;
        line-height: 46px;
        text-align: center;
        color: #d7cab4;
        font-size: 18px;
        border: 2px solid #d7cab4;
        border-radius: 50%;
        box-sizing: border-box; }
        .media .media-content .slider .slider-nav .slick-arrow.slick-prev {
          left: 20px; }
        .media .media-content .slider .slider-nav .slick-arrow.slick-next {
          right: 20px; }
    .media .media-content h3 {
      text-align: center;
      color: #e7dac2;
      font-size: 32px;
      font-weight: 300;
      margin: 30px 0 40px; }

@media (max-width: 1366px) {
  .media {
    padding: 50px 0 0; } }
@media (max-width: 991px) {
  .media .media-content {
    padding: 0 50px !important; } }
@media (max-width: 580px) {
  .media .media-content {
    padding: 0 20px !important; }
    .media .media-content .slider .slider-nav {
      display: none; } }
/* Discover Page */
.discover .discover-header {
  text-align: center; }
  .discover .discover-header img {
    margin: 50px 0 0; }
.discover .discover-content {
  text-align: center; }
  .discover .discover-content h1 {
    color: #ffb004;
    font-size: 45px;
    line-height: 45px;
    font-weight: 300;
    margin: 20px 0; }
  .discover .discover-content p {
    margin: 0 0 30px;
    color: #e7dac2;
    font-size: 20px;
    line-height: 28px; }

/* Responsive */
@media (max-width: 991px) {
  .discover .discover-header img {
    margin: 0; } }
/* Support Page */
section.support {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 115px;
  flex-direction: column; }
  section.support .search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 23px;
    max-width: 588px; }
    section.support .search-box .no-results {
      display: none;
      margin: 20px 0 0;
      background-color: rgba(28, 28, 28, 0.7);
      padding: 15px 50px;
      font-size: 18px;
      color: #ffb100; }
    section.support .search-box input {
      padding: 0 15px;
      height: 45px;
      min-width: 540px;
      background-color: #1c1c1c;
      border: 1px solid #ccc;
      color: #ffb100;
      font-size: 19px;
      transition: all .4s; }
      section.support .search-box input::placeholder {
        color: #636465;
        font-weight: bold;
        font-size: 19px;
        transition: all .4s; }
      section.support .search-box input:focus {
        border-color: #ffb100;
        outline: none; }
        section.support .search-box input:focus::placeholder {
          color: #ffb100; }
        section.support .search-box input:focus + span {
          background-color: #ffb100; }
    section.support .search-box span {
      background-color: #ccc;
      display: flex;
      height: 45px;
      width: 48px;
      align-items: center;
      justify-content: center;
      font-size: 16px; }
  section.support .category-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; }
    section.support .category-wrapper .sss-box-link {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      flex: 1;
      background-color: #1c1c1c;
      height: 238px;
      min-width: 24%;
      max-width: 24%;
      border: 1px solid #5a5a5a;
      color: #ccc;
      font-size: 19px;
      box-sizing: border-box; }
      section.support .category-wrapper .sss-box-link:hover, section.support .category-wrapper .sss-box-link.active {
        border-color: #ffb100;
        color: #ffb100; }
        section.support .category-wrapper .sss-box-link:hover img, section.support .category-wrapper .sss-box-link.active img {
          filter: unset; }
      section.support .category-wrapper .sss-box-link img {
        margin-bottom: 53px;
        filter: brightness(0) invert(1);
        transition: 300ms all; }
  section.support .question-wrapper {
    margin-top: 30px;
    width: 100%; }
    section.support .question-wrapper .question {
      margin-bottom: 16px; }
      section.support .question-wrapper .question .head {
        display: flex;
        align-items: stretch;
        cursor: pointer; }
        section.support .question-wrapper .question .head span {
          background-color: #636465;
          display: flex;
          align-items: center;
          padding: 10px 15px;
          font-size: 24px;
          transition: all .4s; }
          section.support .question-wrapper .question .head span i {
            transition: all .4s; }
        section.support .question-wrapper .question .head h3 {
          flex: 2;
          margin: 0;
          padding: 15px 22px;
          background-color: #1c1c1c;
          color: #ccc;
          border: 1px solid #636465;
          transition: all .4s; }
      section.support .question-wrapper .question .body {
        background-color: #1c1c1c;
        padding: 37px 18px;
        color: #ccc;
        font-size: 16px;
        border-top: none !important;
        border: 1px solid transparent;
        display: none;
        transition: all .4s; }
        section.support .question-wrapper .question .body p {
          line-height: 1.5; }
          section.support .question-wrapper .question .body p:not(:last-child) {
            margin-bottom: 28px; }
        section.support .question-wrapper .question .body.active {
          border: 1px solid #ffb100; }
        section.support .question-wrapper .question .body img {
          width: unset !important;
          height: unset !important;
          max-width: 100%; }
      section.support .question-wrapper .question.collapsed .head h3 {
        background-color: #1c1c1c;
        color: #ffb100;
        border: 1px solid #ffb100; }
        section.support .question-wrapper .question.collapsed .head h3 + span {
          background-color: #ffb100; }
          section.support .question-wrapper .question.collapsed .head h3 + span i {
            transform: rotate(180deg); }
      section.support .question-wrapper .question.collapsed .body {
        display: block;
        border: 1px solid #ffb100; }

/* Responsive */
@media (max-width: 650px) {
  section.support .search-box {
    width: 100%; }
    section.support .search-box input {
      min-width: unset;
      flex: 1; }
  section.support .category-wrapper .sss-box-link {
    min-width: 49%;
    max-width: 49%;
    margin-bottom: 12px; }
    section.support .category-wrapper .sss-box-link:nth-child(3), section.support .category-wrapper .sss-box-link:nth-child(4) {
      margin-bottom: 0; } }
/* News Page */
#zula-mobile-news {
  width: 1200px;
  margin: 120px auto 0;
  box-sizing: border-box;
  padding: 10px 15px; }
  #zula-mobile-news .news-wrapper {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1; }
    #zula-mobile-news .news-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("//cdn.zulaoyun.com/sitecdn/TR/Content/zulamobile/images/light.png");
      background-repeat: no-repeat;
      background-position: left top;
      background-size: 50% 100%;
      z-index: -1;
      opacity: .7; }
    #zula-mobile-news .news-wrapper .news-image {
      max-width: 200px;
      height: auto;
      padding: 4px;
      background: linear-gradient(45deg, rgba(239, 187, 22, 0.29) 0%, rgba(255, 255, 255, 0.29) 100%);
      border-radius: 3px;
      line-height: 1; }
    #zula-mobile-news .news-wrapper .news-content {
      flex: 1;
      margin: 0 0 0 20px; }
      #zula-mobile-news .news-wrapper .news-content .news-title {
        color: #efbb16;
        font-size: 30px;
        line-height: 1.2;
        margin: 0 0 10px;
        font-weight: bold; }
      #zula-mobile-news .news-wrapper .news-content .news-date {
        color: #e6dbdf;
        font-size: 15px;
        font-style: italic; }
    #zula-mobile-news .news-wrapper:hover {
      text-decoration: none; }
  #zula-mobile-news .icons {
    display: none; }

#zula-mobile-news-detail {
  width: 1200px;
  margin: 120px auto 0;
  box-sizing: border-box;
  padding: 10px 15px 15px;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1; }
  #zula-mobile-news-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-image: url("//cdn.zulaoyun.com/sitecdn/TR/Content/zulamobile/images/light.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    z-index: -1;
    opacity: .7; }
  #zula-mobile-news-detail .header {
    position: relative;
    text-align: center; }
  #zula-mobile-news-detail .news-image {
    width: 100%;
    margin: 0 auto; }
  #zula-mobile-news-detail .news-title {
    color: #efbb16;
    font-size: 30px;
    line-height: 1.2;
    margin: 15px 0;
    font-weight: bold; }
  #zula-mobile-news-detail .news-detail {
    font-size: 16px;
    color: #978f93; }
    #zula-mobile-news-detail .news-detail img {
      max-width: 100%;
      height: auto; }

/* Responsive */
@media (max-width: 669px) {
  .news-wrapper {
    flex-direction: column;
    align-items: flex-start !important; }
    .news-wrapper .news-image {
      max-width: 100% !important;
      margin-bottom: 10px; }
    .news-wrapper .news-content {
      margin: 0 !important; }
      .news-wrapper .news-content .news-title {
        font-size: 20px !important; }
      .news-wrapper .news-content .news-date {
        font-size: 12px !important; } }
/* Footer */
footer {
  margin-bottom: 100px; }
  footer .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px; }
    footer .logos img {
      margin: 0 25px; }
  footer .social {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    width: 340px;
    height: 60px;
    position: relative; }
    footer .social::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 360px;
      z-index: -1;
      border-bottom: 60px solid rgba(0, 0, 0, 0.4);
      border-left: 45px solid transparent;
      border-right: 45px solid transparent;
      height: 0; }
  footer .footer {
    background-color: rgba(0, 0, 0, 0.4);
    position: relative; }
    footer .footer .container {
      display: flex;
      height: 100px;
      align-items: center;
      justify-content: space-between;
      color: #e7dac2;
      font-weight: 600; }
      footer .footer .container .menu {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 100px; }
        footer .footer .container .menu a {
          color: #e7dac2;
          margin-right: 40px;
          position: relative;
          transition: 300ms all; }
          footer .footer .container .menu a::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -22px;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background-color: #e7dac2;
            border-radius: 50%; }
          footer .footer .container .menu a:last-child {
            margin-right: 0; }
            footer .footer .container .menu a:last-child::after {
              display: none; }
          footer .footer .container .menu a:hover {
            color: #ffb004; }

/* Resonsive */
@media (max-width: 1199px) {
  footer .footer .container {
    padding: 0 50px; }
    footer .footer .container .menu a {
      line-height: 22px;
      text-align: center; } }
@media (max-width: 991px) {
  footer .footer .container {
    flex-direction: column;
    height: 100%;
    padding: 20px 0; }
    footer .footer .container .menu {
      margin: 20px 0; } }
@media (max-width: 580px) {
  footer .footer .container .copyright {
    margin: 0 0 0; }
  footer .footer .container .menu {
    display: block; }
    footer .footer .container .menu a {
      display: block;
      margin: 0 0 5px !important;
      text-align: center; }
      footer .footer .container .menu a::after {
        content: none; } }
@media (max-width: 450px) {
  footer .social {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%; }
    footer .social::before {
      display: none; } }
.contract-wrapper {
  color: #fff;
  padding: 150px 15px;
  max-width: 1200px;
  margin: 0 auto; }
  .contract-wrapper * {
    background: none !important;
    color: #fff !important; }
  .contract-wrapper a {
    color: #ffb004 !important; }

/* Responsive */
@media (max-width: 1199px) {
  .container, #zula-mobile-news, #zula-mobile-news-detail {
    width: 1024px; } }
@media (max-width: 1023px) {
  .container, #zula-mobile-news, #zula-mobile-news-detail {
    width: 992px; } }
@media (max-width: 991px) {
  .container, #zula-mobile-news, #zula-mobile-news-detail {
    width: 768px; } }
@media (max-width: 767px) {
  .container, #zula-mobile-news, #zula-mobile-news-detail {
    width: 100%; } }

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