@charset "UTF-8";
/* FONTS
   ========================================================================== */
@font-face {
  font-family: "i";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/i.woff") format("woff"), url("../fonts/i.woff2") format("woff2");
}
@font-face {
  font-family: "DalaFloda";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/DalaFloda-Bold-Web.woff") format("woff"), url("../fonts/DalaFloda-Bold-Web.woff2") format("woff2");
}
@font-face {
  font-family: "DalaFloda";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/DalaFloda-Medium-Web.woff") format("woff"), url("../fonts/DalaFloda-Medium-Web.woff2") format("woff2");
}
@font-face {
  font-family: "Gotham";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Gotham";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Gotham-Book";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Gotham-Book.woff") format("woff"), url("../fonts/Gotham-Book.woff2") format("woff2");
}
@font-face {
  font-family: "Gotham-BookItalic";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Gotham-BookItalic.woff") format("woff"), url("../fonts/Gotham-BookItalic.woff2") format("woff2");
}
/* MAIN  FILES
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  font-weight: 300;
  position: relative;
  height: auto;
  min-height: 100vh;
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
body ::-moz-selection {
  color: #ffffff;
  background: #d1a14a;
}
body ::selection {
  color: #ffffff;
  background: #d1a14a;
}

#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

mark {
  background: none;
}

/* ==========================================================================
   FORMS & TABLE & NAVIGATION
   ========================================================================== */
input,
textarea,
select {
  padding: 0 10px;
  outline: 0 none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  font-family: "Gotham-Book";
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 5px 0 20px;
  color: #000;
  border: 1px solid #e1e1e1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 10px;
  border-radius: 0;
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
  font-family: "Gotham-Book";
  color: #666666;
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
  font-family: "Gotham-Book";
  color: #666666;
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
  font-family: "Gotham-Book";
  color: #666666;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: #d1a14a !important;
}

textarea {
  height: 120px;
  padding-top: 10px;
  resize: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=search],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}

ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
  color: #d1a14a;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: underline;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

strong,
b {
  font-weight: 700;
}

i {
  font-style: normal;
}

html {
  overflow: -moz-scrollbars-none;
}

:-moz-any(#content, #appcontent) browser {
  margin-right: -14px !important;
  overflow-y: hidden;
  margin-bottom: -14px !important;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  ::-webkit-scrollbar-track {
    border-left: 1px solid #cccccc;
    background-color: #eaeaea;
  }

  ::-webkit-scrollbar-thumb {
    background: #cc9636;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b9882f;
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex.justify_around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.flex.h_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex.v_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.vh_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

[class*=col-] {
  width: 100%;
}

.col-1 {
  -webkit-flex-basis: 5.5833333333%;
  -moz-flex-basis: 5.5833333333%;
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}

.col-2 {
  -webkit-flex-basis: 14.1666666667%;
  -moz-flex-basis: 14.1666666667%;
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}

.col-3 {
  -webkit-flex-basis: 22.75%;
  -moz-flex-basis: 22.75%;
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}

.col-4 {
  -webkit-flex-basis: 31.3333333333%;
  -moz-flex-basis: 31.3333333333%;
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}

.col-5 {
  -webkit-flex-basis: 39.9166666667%;
  -moz-flex-basis: 39.9166666667%;
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}

.col-6 {
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}

.col-7 {
  -webkit-flex-basis: 57.0833333333%;
  -moz-flex-basis: 57.0833333333%;
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}

.col-8 {
  -webkit-flex-basis: 65.6666666667%;
  -moz-flex-basis: 65.6666666667%;
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}

.col-9 {
  -webkit-flex-basis: 74.25%;
  -moz-flex-basis: 74.25%;
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}

.col-10 {
  -webkit-flex-basis: 82.8333333333%;
  -moz-flex-basis: 82.8333333333%;
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}

.col-11 {
  -webkit-flex-basis: 91.4166666667%;
  -moz-flex-basis: 91.4166666667%;
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}

.col-12 {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}

.col-50 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}

@media (max-width: 960px) {
  .md-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }

  .md-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }

  .md-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }

  .md-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }

  .md-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }

  .md-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }

  .md-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }

  .md-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }

  .md-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }

  .md-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }

  .md-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }

  .md-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }

  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }

  .sm-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }

  .sm-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }

  .sm-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }

  .sm-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }

  .sm-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }

  .sm-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }

  .sm-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }

  .sm-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }

  .sm-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }

  .sm-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }

  .sm-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }

  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .xs-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }

  .xs-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }

  .xs-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }

  .xs-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }

  .xs-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }

  .xs-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }

  .xs-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }

  .xs-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }

  .xs-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }

  .xs-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }

  .xs-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }

  .xs-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }

  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
   HELPERS
   ========================================================================== */
body {
  background: #000000;
}

@media screen and (min-width: 1921px) {
  html {
    background: #000000 !important;
  }

  body {
    width: 1921px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1024px) {
  html, body {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  #canvas {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
    bottom: 0;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
  #canvas {
    position: relative;
  }
}
.row_1620 {
  position: relative;
  width: 1620px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1640px) {
  .row_1620 {
    width: 100%;
    max-width: 94%;
  }
}

.row {
  position: relative;
  width: 1260px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .row {
    width: 100%;
    max-width: 94%;
  }
}

#content {
  padding: 40px 0;
}
@media (max-width: 1260px) {
  #content {
    padding: 20px 0;
  }
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.c {
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}

.cfx:after, .cfx:before {
  display: table;
  clear: both;
  content: " ";
}

.bg_center {
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.no_select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.btn {
  font-size: 22px;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  border: none;
  outline: 0;
  background: #fff url("../img/gold.jpg") 0 0 no-repeat;
  background-size: auto;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.btn:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  opacity: 0.85;
}
.btn:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.gold_border:before {
  position: absolute;
  top: 6px;
  left: 6px;
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1px solid #d1a14a;
  z-index: 1;
}

.vh {
  min-height: 100vh;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .vh {
    padding: 80px 0 40px;
  }
}

.headline h3 {
  font-size: 172px;
  font-family: "DalaFloda";
  font-weight: 700;
}
@media (max-width: 1260px) {
  .headline h3 {
    font-size: 110px;
  }
}
@media (max-width: 768px) {
  .headline h3 {
    font-size: 63px;
  }
}
@media (max-width: 480px) {
  .headline h3 {
    font-size: 48px;
  }
}

.description {
  font-size: 27px;
  font-family: "Gotham-Book";
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.4;
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .description {
    font-size: 22px !important;
    letter-spacing: 1px !important;
    line-height: 1.5 !important;
  }
  .description br {
    display: none;
  }
}
@media (max-width: 768px) {
  .description {
    font-size: 16px !important;
  }
}

.video_container {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.video_container video {
  top: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}
.video_container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(74, 121, 208, 0) 1%, rgba(74, 121, 208, 0.29) 39%, rgba(74, 121, 208, 0.41) 55%, rgba(74, 121, 208, 0.76) 100%);
  background: -webkit-linear-gradient(top, rgba(74, 121, 208, 0) 1%, rgba(74, 121, 208, 0.29) 39%, rgba(74, 121, 208, 0.41) 55%, rgba(74, 121, 208, 0.76) 100%);
  background: linear-gradient(to bottom, rgba(74, 121, 208, 0) 1%, rgba(74, 121, 208, 0.29) 39%, rgba(74, 121, 208, 0.41) 55%, rgba(74, 121, 208, 0.76) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004a79d0", endColorstr="#c24a79d0", GradientType=0);
  z-index: 10;
  mix-blend-mode: color;
}

.gold {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 101;
  padding: 28px 100px 0 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1921px) {
  header {
    max-width: 1921px;
    margin: 0 auto;
    padding: 28px 100px 0 50px;
    left: auto;
  }
}
@media (max-width: 1024px) {
  header {
    background: #000000;
    z-index: 400;
    padding: 10px 70px 10px 20px;
  }
}
header #logo {
  opacity: 1;
  color: #181818;
}
@media (max-width: 480px) {
  header #logo {
    max-width: 220px;
  }
}
header #logo:hover {
  opacity: 0.8;
}
header .requeast {
  font-size: 15px;
  font-family: "Gotham";
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 600px) {
  header .requeast {
    display: none;
  }
}
header .requeast:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 1px;
  background: #d1a14a;
}
header .requeast:hover:before {
  opacity: 0;
  bottom: -10px;
}

.header_black_bg {
  position: fixed;
  width: 100%;
  height: 90px;
  opacity: 0;
  background: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.black_header .header_black_bg {
  opacity: 1;
}

.burger {
  font-size: 0;
  position: fixed;
  z-index: 500;
  top: 27px;
  right: 39px;
  width: 42px;
  height: 42px;
  background: #000000;
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .burger {
    right: 20px;
    top: 9px;
  }
}
@media (max-width: 480px) {
  .burger {
    right: 5px;
    top: 3px;
  }
}
.burger .burger-icon {
  display: inline-block;
  position: relative;
  margin-top: 6px;
  margin-bottom: 6px;
  user-select: none;
  margin: 0 auto;
}
.burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #d1a14a;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.4s;
}
.burger .burger-icon::before, .burger .burger-icon::after {
  position: absolute;
  content: "";
}
.burger .burger-icon::before {
  top: -6px;
}
.burger .burger-icon::after {
  top: 6px;
}
.burger.is-active .burger-icon {
  background-color: transparent;
}
.burger.is-active .burger-icon::before {
  transform: translateY(6px) rotate(45deg);
}
.burger.is-active .burger-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.menu_container {
  font-size: 0;
  position: fixed;
  z-index: 499;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background: #000000;
  will-change: transform, opacity;
  -webkit-transform: translateY(110%);
  -moz-transform: translateY(110%);
  -ms-transform: translateY(110%);
  transform: translateY(110%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  width: 100%;
}
.menu_container .center {
  height: 100vh;
  padding: 20px;
}
.menu_container .center .container {
  width: 100%;
}
@media (max-width: 768px) {
  .menu_container {
    width: 100%;
    max-width: 100%;
  }
}
.menu_container .menu_logo {
  padding-bottom: 70px;
}
@media screen and (max-height: 810px) {
  .menu_container .menu_logo {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .menu_container .menu_logo img {
    max-width: 30px;
  }
}
.menu_container .level_a > li {
  padding-bottom: 60px;
}
@media screen and (max-height: 810px) {
  .menu_container .level_a > li {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .menu_container .level_a > li {
    padding-bottom: 20px;
  }
}
.menu_container .level_a > li > a {
  color: #ffffff;
  font-size: 39px;
  letter-spacing: 10px;
  text-transform: uppercase;
}
@media screen and (max-height: 600px) {
  .menu_container .level_a > li > a {
    font-size: 28px;
    letter-spacing: 5px;
  }
}
@media (max-width: 1024px) {
  .menu_container .level_a > li > a {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media (max-width: 768px) {
  .menu_container .level_a > li > a {
    font-size: 22px;
  }
}
.menu_container .level_a > li > a:hover {
  color: #d1a14a;
  text-decoration: none;
}
.menu_container .members_only {
  color: #d1a14a;
  font-size: 39px;
  display: inline-block;
  letter-spacing: 10px;
  text-transform: uppercase;
  padding: 85px 15px 0;
  border-top: 1px solid #d1a14a;
}
@media screen and (max-height: 810px) {
  .menu_container .members_only {
    padding: 40px 15px 0;
  }
}
@media (max-width: 1024px) {
  .menu_container .members_only {
    padding: 40px 15px 0;
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .menu_container .members_only {
    padding: 20px 15px 0;
    font-size: 22px;
  }
}

/* menu active
========================================================================== */
.mobile_menu_active .menu_container {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* ==========================================================================
   section_start
   ========================================================================== */
.s_start_mobile_bg {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .s_start_mobile_bg {
    background: url(../img/gold.jpg) 0 0 repeat-x;
    background-size: cover;
    background-position: 0 50vh;
    position: relative;
  }
  .s_start_mobile_bg:before {
    position: absolute;
    bottom: -170px;
    left: 0;
    content: "";
    width: 507px;
    height: 378px;
    background: url("../img/mobile_triangle.png") 0 0 no-repeat;
  }
}
@media (max-width: 768px) {
  .s_start_mobile_bg:before {
    bottom: -240px;
  }
}

.s_start {
  position: relative;
}
@media (max-width: 1260px) {
  .s_start {
    padding-top: 75px;
  }
}
.s_start .box {
  z-index: 111;
  text-align: center;
  max-width: 740px;
  width: 100%;
  position: relative;
  background: #000000;
  margin: 0 auto;
  padding: 120px 40px 130px;
}
@media (max-width: 1260px) {
  .s_start .box {
    max-width: 440px;
    padding: 60px 20px 40px;
  }
}
.s_start .box .inner {
  position: relative;
  z-index: 10;
}
.s_start .box .headline {
  color: #ffffff;
  font-size: 48px;
  text-transform: uppercase;
  padding-top: 50px;
  letter-spacing: 12px;
}
@media (max-width: 1260px) {
  .s_start .box .headline {
    font-size: 36px;
    letter-spacing: 2px;
  }
}
.s_start .box .headline span {
  display: block;
}
.s_start .arrow_down {
  position: absolute;
  bottom: 14px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #ffffff;
  font-size: 35px;
  width: 30px;
}
@media (max-width: 1260px) {
  .s_start .arrow_down {
    bottom: 0;
    font-size: 26px;
  }
}

/* ==========================================================================
   section_intro
   ========================================================================== */
#intro {
  color: #ffffff;
  font-size: 45px;
  text-align: center;
  font-family: "Gotham-Book";
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 1.5;
  position: relative;
}
@media (max-width: 1260px) {
  #intro {
    font-size: 32px;
    letter-spacing: 3px;
  }
  #intro br {
    display: none;
  }
}
@media (max-width: 1024px) {
  #intro {
    min-height: 1px !important;
    padding: 40px 0 180px !important;
  }
}
@media (max-width: 768px) {
  #intro {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
#intro em {
  font-family: "Gotham-BookItalic";
  font-style: normal;
}
#intro .row {
  z-index: -1;
}
@media (max-width: 1024px) {
  #intro .row {
    z-index: 10;
  }
}

/* ==========================================================================
   section_persons
   ========================================================================== */
.s_persons {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .s_persons {
    background: url("../img/section_3_mobile.png") top right no-repeat;
  }
}
@media (max-width: 768px) {
  .s_persons {
    text-align: center;
  }
}
.s_persons .persons {
  font-size: 0;
  width: 102%;
  margin-left: -1%;
}
@media (max-width: 1260px) {
  .s_persons .persons {
    width: 100%;
    margin-left: 0;
  }
}
.s_persons h3 {
  text-align: right;
  padding-bottom: 50px;
}
@media (max-width: 1260px) {
  .s_persons h3 {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .s_persons h3 {
    text-align: center;
    line-height: 1.2;
    padding-bottom: 40px;
  }
}
.s_persons .top {
  position: relative;
}
@media (max-width: 768px) {
  .s_persons .top {
    text-align: center;
  }
}
.s_persons .true_peers_description {
  width: 60%;
  display: inline-block;
  letter-spacing: 5px;
  position: absolute;
  right: -10%;
  top: 50%;
  padding-left: 2%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-bottom: 10px;
}
@media (max-width: 1440px) {
  .s_persons .true_peers_description {
    width: 45%;
    right: 0;
    font-size: 24px;
    padding-left: 0;
  }
  .s_persons .true_peers_description br {
    display: none;
  }
}
@media (max-width: 1260px) {
  .s_persons .true_peers_description {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .s_persons .true_peers_description {
    display: block;
    position: static;
    width: 100%;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding-bottom: 40px;
  }
}
.s_persons .item {
  position: relative;
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px;
  font-size: 16px;
  min-height: 350px;
  text-align: center;
  cursor: default;
  overflow: hidden;
}
@media (max-width: 768px) {
  .s_persons .item {
    width: 31.332%;
  }
}
@media (max-width: 580px) {
  .s_persons .item {
    width: 48%;
  }
}
@media (max-width: 440px) {
  .s_persons .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 420px;
  }
}
.s_persons .item .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.s_persons .item .shadow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
  z-index: 0;
}
.s_persons .item .inner {
  margin-top: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  width: 100%;
}
.s_persons .item .inner h4 {
  font-size: 36px;
  font-family: "DalaFloda";
  text-transform: uppercase;
}
@media (max-width: 1260px) {
  .s_persons .item .inner h4 {
    font-size: 26px;
  }
}
.s_persons .item .inner img {
  margin: 20px 0 25px;
}
.s_persons .item .inner .position {
  text-transform: uppercase;
  font-family: "Gotham-Book";
  padding-bottom: 15px;
}
.s_persons .item .inner .location {
  font-family: "Gotham";
  font-weight: 700;
}
.s_persons .item:hover .shadow {
  opacity: 1;
}
.s_persons .item:hover .inner {
  margin-top: 0;
  opacity: 1;
}

/* ==========================================================================
   section_сommunity
   ========================================================================== */
.s_сommunity {
  color: #ffffff;
  position: relative;
}
@media (max-width: 1024px) {
  .s_сommunity {
    background: url(../img/section_4_mobile.png) top right no-repeat;
    background-size: auto 100%;
  }
}
.s_сommunity .community_description {
  padding-left: 60px;
  padding-top: 70px;
}
@media (max-width: 1260px) {
  .s_сommunity .community_description br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .s_сommunity .community_description {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.s_сommunity .community_mobile {
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
}
.s_сommunity .video_container {
  height: 56vh;
  width: 80%;
}
.s_сommunity .video_container video {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.s_сommunity .photo_container {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 44vh;
  overflow: hidden;
  z-index: -1;
  background-position: top center;
}

/* ==========================================================================
   section_events
   ========================================================================== */
.s_events {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .s_events {
    background: url("../img/section_5_mobile.png") 0 0 no-repeat;
    background-position: 100% 0;
  }
}
.s_events .top_block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.s_events .events_headline {
  position: relative;
  top: -55px;
}
@media (max-width: 1024px) {
  .s_events .events_headline {
    top: 0;
  }
}

.events_list {
  margin-top: 70px;
  text-transform: uppercase;
}
.events_list .cover {
  width: 100%;
  display: block;
  height: 280px;
  margin-bottom: 15px;
}
.events_list h4 {
  font-family: "Gotham";
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .events_list h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.events_list h5 {
  font-size: 18px;
  font-family: "Gotham-Book";
  color: #ffffff;
}
.events_list h5 .dot {
  display: inline-block;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  margin-right: 5px;
}

/* ==========================================================================
   section_insights
   ========================================================================== */
.s_insights {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .s_insights {
    background: url("../img/section_6_mobile.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}
@media (max-width: 640px) {
  .s_insights {
    background-position: 60% 0;
  }
}

.insights_absolute {
  position: absolute;
  top: 50vh;
  left: 40px;
  display: none;
  z-index: 2;
  color: #ffffff;
}
.insights_absolute * {
  opacity: 1 !important;
}

.insights_headline {
  line-height: 0.85;
}
@media (max-width: 1024px) {
  .insights_headline {
    position: relative;
  }
  .insights_headline:before {
    position: absolute;
    top: -19px;
    left: -120px;
    content: "";
    width: 426px;
    height: 267px;
    z-index: -1;
    background: url("../img/section_6_mobile_b.png") 0 0 no-repeat;
  }
}
@media (max-width: 768px) {
  .insights_headline:before {
    top: -52px;
    left: -165px;
  }
}
@media (max-width: 480px) {
  .insights_headline:before {
    top: -65px;
  }
}
.insights_headline span {
  padding-left: 30px;
}

.insights_description {
  padding: 30px 0 0 160px;
  letter-spacing: 4px;
}
@media (max-width: 1024px) {
  .insights_description {
    padding: 20px 0 0 40px;
  }
}

/* ==========================================================================
   section_recognition
   ========================================================================== */
.s_recognition {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .s_recognition {
    padding-top: 100px;
  }
}
@media (max-width: 1024px) {
  .s_recognition {
    background: url("../img/section_7_mobile.png") 100% 0 no-repeat;
    background-size: auto 100%;
  }
}
@media (max-width: 520px) {
  .s_recognition {
    background-position: 80px 0;
  }
}
.s_recognition .recognition_content {
  padding-left: 415px;
}
@media (max-width: 1260px) {
  .s_recognition .recognition_content {
    padding-left: 200px;
  }
}
@media (max-width: 1024px) {
  .s_recognition .recognition_content {
    padding-left: 0;
  }
}
.s_recognition .recognition_description {
  padding: 10px 0 0 20px;
}
@media (max-width: 768px) {
  .s_recognition .recognition_description {
    padding: 20px 0 0 0;
  }
}
.s_recognition .recognition-mobile {
  margin-bottom: 20px;
  width: 100%;
  max-width: 340px;
}

/* ==========================================================================
   section_contact
   ========================================================================== */
@media screen and (min-width: 1024px) {
  #contact {
    padding-top: 20vh;
  }
}
.s_contact {
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .s_contact {
    background: #000000;
  }
}
@media (max-width: 1024px) {
  .s_contact .row {
    max-width: 100%;
  }
}
.s_contact .form_wrap {
  background: #000000;
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 80px 40px;
  text-align: center;
  position: relative;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .s_contact .form_wrap {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .s_contact .form_wrap {
    padding: 40px 30px;
  }
}
.s_contact .form_wrap form {
  position: relative;
  z-index: 10;
}
.s_contact .form_wrap .form_logo {
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .s_contact .form_wrap .form_logo {
    padding-bottom: 20px;
  }
  .s_contact .form_wrap .form_logo img {
    max-width: 32px;
  }
}
.s_contact .form_wrap h3 {
  font-family: "DalaFloda";
  font-weight: 500;
  font-size: 54px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .s_contact .form_wrap h3 {
    font-size: 32px;
    padding-bottom: 10px;
  }
}
.s_contact .form_wrap p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Gotham";
  line-height: 1.8;
  letter-spacing: 1px;
  padding-bottom: 30px;
}
.s_contact .form_wrap .btn {
  margin-top: 20px;
}
.s_contact .form_wrap .ajax-loader {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.s_contact .form_wrap .wpcf7-form-control-wrap {
  max-width: 390px;
  margin: 0 auto;
}
.s_contact .copyright {
  text-align: center;
  color: #000000;
  font-size: 16px;
  font-family: "Gotham-Book";
  padding: 40px 20px 20px;
}
@media (max-width: 1024px) {
  .s_contact .copyright {
    color: #ffffff;
    padding: 20px 20px 0px;
    line-height: 1.6;
  }
}

body {
  background: #000 url(../img/repeat.png);
  background-attachment: fixed;
}

#main_svg {
  z-index: -1;
}

.video_container {
  z-index: -2;
}

svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1024px) {
  svg {
    display: none;
  }
}

#black_triangle, #gold2 {
  display: none;
}

#rec_2_svg {
  z-index: 2;
}

#black {
  display: none;
}

.gold_border2 {
  opacity: 0;
}

#persons {
  padding-bottom: 70vh;
}
@media (max-width: 1024px) {
  #persons {
    padding-bottom: 0;
  }
}

#access {
  padding-bottom: 10vh;
}

#video_1, #video_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78%;
  height: 0;
  overflow: hidden;
  z-index: -2;
}

#video_2 {
  width: 100%;
  z-index: 2;
}

#video_1 > div, #video_2 > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#video_2 > div {
  top: 0;
}

.recognition_headline {
  position: relative;
  z-index: 1;
}

.insights_headline {
  position: relative;
  z-index: 2;
}

#gold_3_svg, #black_ins_svg {
  z-index: 2;
}

#cont_in {
  z-index: 3;
  display: none;
}

#cont_gold {
  z-index: 2;
}

#insights .description {
  z-index: 2;
}

.description {
  opacity: 0;
}

.headline, .events_headline {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#community .headline {
  position: relative;
  z-index: -1;
}

@keyframes description {
  0% {
    opacity: 0;
    margin-top: 50px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.showText .headline, .showText .events_headline {
  opacity: 1;
}

.showText .description {
  animation-name: description;
  animation-duration: 1s;
  animation-fill-mode: both;
}

#start .headline {
  opacity: 1;
}

.desctop_hide {
  display: none;
}

@media (max-width: 1024px) {
  .mobile_hide {
    display: none;
  }

  .desctop_hide {
    display: block;
  }
}

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