@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip; }
  .animated.infinite {
    animation-iteration-count: infinite; }

/*======================= CSS Reset ===========================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, section, main, footer, header, figure, aside, input, textarea, i, mark, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: top;
  background: transparent;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  width: 100%; }

html {
  overflow-y: scroll;
  overflow-x: hidden; }

body {
  overflow: hidden; }

ol, ul {
  list-style: none; }

:focus {
  outline: 0; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

table, table td tr {
  border: none;
  border-collapse: collapse; }

button, a, input, textarea, select {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

@font-face {
  font-family: 'Parisienne-Regular';
  src: url("/fonts/Parisienne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'GeneralSans-Light';
  src: url("/fonts/GeneralSans-Light.woff2") format("woff2"), url("/fonts/GeneralSans-Light.woff") format("woff"), url("/fonts/GeneralSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal; }

@font-face {
  font-family: 'GeneralSans-Regular';
  src: url("/fonts/GeneralSans-Regular.woff2") format("woff2"), url("/fonts/GeneralSans-Regular.woff") format("woff"), url("/fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal; }

@font-face {
  font-family: 'GeneralSans-Italic';
  src: url("/fonts/GeneralSans-Italic.woff2") format("woff2"), url("/fonts/GeneralSans-Italic.woff") format("woff"), url("/fonts/GeneralSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic; }

@font-face {
  font-family: 'GeneralSans-Medium';
  src: url("/fonts/GeneralSans-Medium.woff2") format("woff2"), url("/fonts/GeneralSans-Medium.woff") format("woff"), url("/fonts/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal; }

@font-face {
  font-family: 'GeneralSans-Bold';
  src: url("/fonts/GeneralSans-Bold.woff2") format("woff2"), url("/fonts/GeneralSans-Bold.woff") format("woff"), url("/fonts/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal; }

/* ========== Typography styles ========== */
a, button {
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer; }

.button {
  font-size: 16px;
  font-family: "GeneralSans-Medium";
  background-color: #FFD700;
  color: #000;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px; }
  .button:hover {
    background-color: #e1be00;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }

.text-center {
  text-align: center !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

/*======================= Grid ===========================*/
.row {
  width: auto;
  display: block;
  margin: 0 -5px;
  position: relative;
  clear: both; }
  .row:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }
  @media only screen and (max-width: 767px) {
    .row {
      margin: 0; } }
  .row > .column {
    padding: 0 5px;
    float: left; }
    .row > .column.pull-right {
      float: right; }
    @media only screen and (max-width: 1279px) {
      .row > .column.tablet-hide {
        display: none; } }
    @media only screen and (max-width: 1023px) {
      .row > .column.sm-tablet-hide {
        display: none; } }
    .row > .column.masonry-column {
      margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .row > .column {
        padding: 5px 0; } }
    .row > .column.__12 {
      width: 100%; }
    .row > .column.__11 {
      width: 91.666666%; }
    .row > .column.__10 {
      width: 83.333333%; }
    .row > .column.__9 {
      width: 75%; }
    .row > .column.__8 {
      width: 66.666666%; }
    .row > .column.__7 {
      width: 58.333333%; }
    .row > .column.__6 {
      width: 50%; }
    .row > .column.__5 {
      width: 41.666666%; }
    .row > .column.__41 {
      width: 37%; }
    .row > .column.__4 {
      width: 33.333333%; }
    .row > .column.__3 {
      width: 25%; }
    .row > .column.__2 {
      width: 16.666666%; }
    .row > .column.__1 {
      width: 8.333333%; }
    @media only screen and (max-width: 1440px) {
      .row > .column.llt__12 {
        width: 100%; }
      .row > .column.llt__8 {
        width: 66.666666%; }
      .row > .column.llt__4 {
        width: 33.333333%; } }
    @media only screen and (max-width: 1279px) {
      .row > .column.lt__6 {
        width: 100%; }
      .row > .column.lt__5 {
        width: 83.333333%; }
      .row > .column.lt__4 {
        width: 66.666666%; }
      .row > .column.lt__3 {
        width: 50%; }
      .row > .column.lt__2 {
        width: 33.333333%; }
      .row > .column.lt__1 {
        width: 16.666666%; } }
    @media only screen and (max-width: 1023px) {
      .row > .column.st__6 {
        width: 100%; }
      .row > .column.st__5 {
        width: 83.333333%; }
      .row > .column.st__4 {
        width: 66.666666%; }
      .row > .column.st__3 {
        width: 50%; }
      .row > .column.st__2 {
        width: 33.333333%; }
      .row > .column.st__1 {
        width: 16.666666%; }
      .row > .column.st__hide {
        display: none; } }
    @media only screen and (max-width: 767px) {
      .row > .column.m__3, .row > .column.__12, .row > .column.__11, .row > .column.__10, .row > .column.__9, .row > .column.__8, .row > .column.__7, .row > .column.__6, .row > .column.__5, .row > .column.__4, .row > .column.__3, .row > .column.__2, .row > .column.__1, .row > .column.lt__6, .row > .column.lt__5, .row > .column.lt__4, .row > .column.lt__3, .row > .column.lt__2, .row > .column.lt__1, .row > .column.st__6, .row > .column.st__5, .row > .column.st__4, .row > .column.st__3, .row > .column.st__2, .row > .column.st__1 {
        width: 100%; }
      .row > .column.m__1 {
        width: 33.333333%;
        padding: 5px; }
      .row > .column.m__2 {
        width: 66.333333%;
        padding: 5px; }
      .row > .column.no-padding {
        padding: 0 !important; } }
  .row.block-row.__1-block > .column {
    width: 100%; }
  .row.block-row.__2-block > .column {
    width: 50%; }
  .row.block-row.__3-block > .column {
    width: 33.3333333%; }
  .row.block-row.__4-block > .column {
    width: 25%; }
  .row.block-row.__5-block > .column {
    width: 20%; }
  .row.block-row.__6-block > .column {
    width: 16.666666666%; }
  .row.block-row.__7-block > .column {
    width: 14.285714%; }
  .row.block-row.__8-block > .column {
    width: 12.5%; }
  @media only screen and (max-width: 1279px) {
    .row.block-row.lt__1-block > .column {
      width: 100%; }
    .row.block-row.lt__2-block > .column {
      width: 50%; }
    .row.block-row.lt__3-block > .column {
      width: 33.3333333%; }
    .row.block-row.lt__4-block > .column {
      width: 25%; }
    .row.block-row.lt__5-block > .column {
      width: 20%; }
    .row.block-row.lt__6-block > .column {
      width: 16.666666666%; } }
  @media only screen and (max-width: 1023px) {
    .row.block-row.st__1-block > .column {
      width: 100%; }
    .row.block-row.st__2-block > .column {
      width: 50%; }
    .row.block-row.st__3-block > .column {
      width: 33.3333333%; }
    .row.block-row.st__4-block > .column {
      width: 25%; }
    .row.block-row.st__5-block > .column {
      width: 20%; }
    .row.block-row.st__6-block > .column {
      width: 16.666666666%; }
    .row.block-row > .column.st__6 {
      width: 100%; } }
  @media only screen and (max-width: 767px) {
    .row.block-row.__1-block > .column, .row.block-row.__2-block > .column, .row.block-row.__3-block > .column, .row.block-row.__4-block > .column, .row.block-row.__5-block > .column, .row.block-row.__6-block > .column, .row.block-row.__7-block > .column, .row.block-row.__8-block > .column {
      width: 100%; }
    .row.block-row.m__1-block > .column {
      width: 100%; }
    .row.block-row.m__2-block > .column {
      width: 50%;
      padding: 0 10px; }
    .row.block-row.m__3-block > .column {
      width: 33.3333333%; }
    .row.block-row.m__4-block > .column {
      width: 25%; } }
  .row.__0 {
    margin: 0; }
    .row.__0 > .column {
      padding: 0; }
  .row.__5 {
    margin: 0 -5px; }
    .row.__5 > .column {
      padding: 0 5px; }
  .row.__60 {
    margin: 0 -30px; }
    .row.__60 > .column {
      padding: 0 30px; }
    @media only screen and (max-width: 1279px) {
      .row.__60 {
        margin: 0 -10px; }
        .row.__60 > .column {
          padding: 0 10px; } }
  .row.__30 {
    margin: 0 -15px; }
    .row.__30 > .column {
      padding: 0 15px; }
    @media only screen and (max-width: 1279px) {
      .row.__30 {
        margin: 0 -5px; }
        .row.__30 > .column {
          padding: 0 5px; } }
  .row.__40 {
    margin: 0 -20px; }
    .row.__40 > .column {
      padding: 0 20px; }
    @media only screen and (max-width: 1279px) {
      .row.__40 {
        margin: 0 -5px; }
        .row.__40 > .column {
          padding: 0 5px; } }
  .row.__20 {
    margin: 0 -10px; }
    .row.__20 > .column {
      padding: 0 10px; }
  .row.__inline-row {
    text-align: center; }
    .row.__inline-row > .column {
      display: inline-block;
      float: none;
      margin: 0 -2px 10px -2px; }
  .row.__masonry {
    margin: 0 -10px; }
    .row.__masonry > .column {
      margin-bottom: 20px;
      padding: 0 10px; }
  .row.__centered-row {
    text-align: center; }
    .row.__centered-row > .column {
      display: inline-block;
      float: none;
      margin: 0; }
  @media only screen and (max-width: 1279px) {
    .row.__centered-row-small {
      text-align: center; } }
  @media only screen and (max-width: 1279px) {
    .row.__centered-row-small > .column {
      display: inline-block;
      float: none;
      margin: 0; } }

.field {
  margin-bottom: 25px;
  position: relative; }
  .field input {
    width: 100%;
    display: block;
    padding: 0 15px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    background-color: #6D7874;
    border: 1px solid #FFD700;
    font-size: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
    .field input[type="file"] {
      display: none; }
    .field input::placeholder {
      color: #fff; }
  .field textarea {
    width: 100%;
    color: #fff;
    height: 250px;
    padding: 15px;
    background-color: #6D7874;
    border: 1px solid #FFD700;
    font-size: 16px;
    resize: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px; }
    .field textarea:hover {
      background-color: #6D7874; }
    .field textarea:focus {
      background-color: #6D7874; }
    .field textarea::placeholder {
      color: #fff; }
  .field label {
    font-family: "GeneralSans-Regular";
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding-left: 20px;
    display: inline-block;
    color: #fff; }
  .field .warning-text {
    position: absolute;
    color: darkred;
    font-size: 12px;
    font-family: "GeneralSans-Regular";
    font-style: italic;
    bottom: -17px;
    left: 14px;
    display: none; }
    .field .warning-text.warning-text-area {
      bottom: 3px; }
    @media only screen and (max-width: 1279px) {
      .field .warning-text {
        font-size: 9px;
        bottom: -12px; } }
  .field .warning {
    border: 1px solid darkred; }

.filed-file {
  width: 100%;
  display: block;
  padding: 0;
  color: #707070;
  height: 50px;
  line-height: 50px;
  background-color: #EBEBEB;
  border: 1px dashed #707070;
  font-size: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }
  .filed-file label {
    padding: 0 15px;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px; }
    .filed-file label span {
      display: block;
      width: 100%;
      height: 50px;
      line-height: 50px; }
  @media only screen and (max-width: 767px) {
    .filed-file {
      background-color: #fff;
      height: 40px;
      line-height: 40px; }
      .filed-file label {
        height: 40px;
        line-height: 40px;
        font-size: 9px !important;
        padding: 0 5px 0 15px; }
        .filed-file label span {
          height: 40px;
          line-height: 40px;
          font-size: 10px !important; } }
  @media only screen and (max-width: 359px) {
    .filed-file label {
      font-size: 9px !important; }
      .filed-file label span {
        font-size: 8px !important; } }

.checkbox {
  padding: 0 0 10px 0;
  margin-left: 4px;
  display: inline-block; }
  .checkbox:last-child {
    padding: 0; }
  .checkbox label {
    font-family: "GeneralSans-Regular";
    font-size: 15px;
    color: #757575;
    display: inline-block;
    padding: 0 0 0 35px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    margin-top: 5px;
    margin-right: 20px;
    line-height: 16px; }
    .checkbox label:before {
      width: 23px;
      height: 23px;
      content: '';
      position: absolute;
      top: -6px;
      left: 0;
      border: 1px solid #d8d8d8;
      background: #fff;
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06); }
    .checkbox label:after {
      width: 14px;
      height: 7px;
      content: '';
      position: absolute;
      top: 0px;
      left: 5px;
      border: 3px solid transparent;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .checkbox label:hover:before {
      border: 1px solid #707070; }
    .checkbox label span {
      position: absolute;
      right: 0;
      top: 2px;
      font-size: 12px;
      color: #b8bcca;
      text-align: right; }
  .checkbox input {
    visibility: hidden;
    position: absolute; }
    .checkbox input:checked + label {
      color: #757575 !important; }
    .checkbox input:checked + label:before {
      border: 1px solid #ff314d;
      background: #ff314d; }
    .checkbox input:checked + label:after {
      border-left: 3px solid #fff;
      border-bottom: 3px solid #fff;
      border-top: 0 solid transparent;
      border-right: 0 solid transparent; }
  .checkbox.checkbox-right label {
    padding: 0 60px 0 15px; }
    .checkbox.checkbox-right label:before {
      top: -10px;
      left: initial;
      right: 0; }
    .checkbox.checkbox-right label:after {
      top: 1px;
      left: initial;
      right: 10px; }
  .checkbox.checkbox-small label {
    padding: 0 0 0 45px; }
    .checkbox.checkbox-small label:before {
      width: 26px;
      height: 26px;
      margin-top: 5px;
      background: #fff;
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06); }
    .checkbox.checkbox-small label:after {
      width: 16px;
      height: 10px;
      content: '';
      position: absolute;
      top: 1px;
      left: 6px;
      border: 3px solid transparent;
      background: transparent;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }

.checkbox-holder {
  margin-top: 30px; }
  .checkbox-holder .checkbox {
    display: inline-block; }
    .checkbox-holder .checkbox:last-child {
      margin-left: 40px; }
  @media only screen and (max-width: 767px) {
    .checkbox-holder .checkbox {
      display: block; }
      .checkbox-holder .checkbox:last-child {
        margin-left: 0; } }

.radio-set {
  display: inline-block;
  line-height: inherit;
  margin: 0;
  padding: 0;
  margin-right: 15px; }
  .radio-set label {
    font-family: "GeneralSans-Regular";
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 1em;
    line-height: 20px;
    color: #000; }
    .radio-set label span {
      margin-left: 30px;
      line-height: 20px;
      display: block;
      text-align: left;
      font-size: 1em;
      color: #000; }
    .radio-set label:before {
      position: absolute;
      content: "";
      width: 20px;
      height: 20px;
      text-align: center;
      padding: 0;
      margin: 0;
      background-color: transparent;
      margin-left: -3px;
      border: 2px solid #000;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .radio-set label:after {
      position: absolute;
      content: "";
      top: 5px;
      left: 2px;
      width: 10px;
      height: 10px;
      background-color: transparent;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  .radio-set input {
    visibility: hidden;
    height: 0; }
    .radio-set input:checked + label:after {
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease;
      background: #000;
      border: 2px solid #000;
      color: #000; }
    .radio-set input:checked + label:hover:after {
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease;
      background: #000;
      border: 2px solid #000;
      color: #000; }

header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #16161d;
  box-shadow: -2px 3px 13px 2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: -2px 3px 13px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -2px 3px 13px 2px rgba(0, 0, 0, 0.5); }
  @media only screen and (max-width: 767px) {
    header {
      height: 80px; } }
  header .header-wrap {
    padding-top: 30px;
    padding-left: 35px;
    position: relative;
    text-align: center; }
    @media only screen and (max-width: 1279px) {
      header .header-wrap {
        padding-left: 0; } }
    header .header-wrap .header-logo {
      display: inline-block;
      position: relative;
      top: 35px;
      margin-right: 20px; }
      @media only screen and (max-width: 767px) {
        header .header-wrap .header-logo {
          top: 32px; } }
      header .header-wrap .header-logo img {
        width: 220px;
        margin-top: -40px; }
        @media only screen and (max-width: 767px) {
          header .header-wrap .header-logo img {
            width: 180px; } }
      header .header-wrap .header-logo .white-logo {
        display: none; }
    header .header-wrap .menu-wrap {
      display: inline-block;
      width: 400px; }
      header .header-wrap .menu-wrap ul {
        display: inline-block; }
        header .header-wrap .menu-wrap ul li {
          margin-right: 48px;
          display: inline-block; }
          header .header-wrap .menu-wrap ul li a {
            font-family: "GeneralSans-Regular";
            font-size: 20px;
            color: #fff;
            line-height: 32px; }
            header .header-wrap .menu-wrap ul li a:hover {
              text-decoration: underline; }
            @media only screen and (min-width: 768px) {
              header .header-wrap .menu-wrap ul li a.active-menu {
                text-decoration: underline; } }
      @media only screen and (max-width: 1279px) {
        header .header-wrap .menu-wrap {
          display: none; } }
    header .header-wrap .lang-wrap {
      float: right;
      font-family: "GeneralSans-Regular";
      font-size: 18px;
      color: #fff;
      line-height: 32px;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      header .header-wrap .lang-wrap a {
        font-family: "GeneralSans-Regular";
        font-size: 18px;
        color: #fff;
        line-height: 32px; }
        header .header-wrap .lang-wrap a.active-lang {
          text-decoration: underline; }
        header .header-wrap .lang-wrap a:hover {
          text-decoration: underline; }
  header.mob-active {
    background-color: #21253D !important; }
    header.mob-active .menu-wrap {
      margin-top: 80px;
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 9999;
      background-color: #21253D;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
    header.mob-active .menu-burger div {
      background-color: #fff !important; }
    header.mob-active .menu-wrap {
      padding-left: 20px !important;
      padding-top: 48px; }
      header.mob-active .menu-wrap ul li {
        display: block !important;
        margin-bottom: 30px; }
        header.mob-active .menu-wrap ul li a {
          color: #fff !important; }
    header.mob-active .lang-wrap {
      display: block !important;
      float: none !important;
      color: #fff !important; }
      header.mob-active .lang-wrap a {
        color: #fff !important;
        margin-right: 30px; }
        header.mob-active .lang-wrap a:last-child {
          margin-left: 30px; }

.menu-burger {
  perspective: 500px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 43px;
  display: none; }
  @media only screen and (max-width: 767px) {
    .menu-burger {
      top: 28px; } }
  .menu-burger.expanded {
    top: 42px; }
    .menu-burger.expanded .line-1 {
      transform: rotateZ(-180deg) rotate(-135deg) translateY(3px) translateX(5px); }
    .menu-burger.expanded .line-2 {
      opacity: 0; }
    .menu-burger.expanded .line-3 {
      transform: rotateZ(180deg) translateY(19px) translateX(0px) rotate(135deg); }
  .menu-burger > div {
    width: 32px;
    border-radius: 5px;
    cursor: pointer;
    height: 2px;
    background-color: #fff;
    margin: 10px 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .menu-burger > div:first-child {
      margin-top: 0px; }
  .menu-burger.white-burger > div {
    background-color: #fff !important; }

footer {
  padding: 40px 0;
  background-color: #121218;
  box-shadow: -2px -3px 14px -4px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: -2px -3px 14px -4px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -2px -3px 14px -4px rgba(0, 0, 0, 0.5); }
  footer .footer-wrap {
    position: relative; }
    footer .footer-wrap .footer-logo {
      display: inline-block; }
      footer .footer-wrap .footer-logo img {
        width: 240px;
        display: inline-block; }
        @media only screen and (max-width: 1279px) {
          footer .footer-wrap .footer-logo img {
            width: 200px; } }
        @media only screen and (max-width: 767px) {
          footer .footer-wrap .footer-logo img {
            width: 180px; } }
      @media only screen and (max-width: 767px) {
        footer .footer-wrap .footer-logo {
          position: relative;
          display: block; }
          footer .footer-wrap .footer-logo img {
            display: block;
            margin: 0 auto; } }
    footer .footer-wrap .footer-info {
      display: block;
      position: absolute;
      width: 100%;
      top: 50px; }
      @media only screen and (max-width: 1279px) {
        footer .footer-wrap .footer-info {
          top: 45px; } }
      @media only screen and (max-width: 767px) {
        footer .footer-wrap .footer-info {
          position: relative;
          text-align: center;
          top: 0; } }
      footer .footer-wrap .footer-info p {
        text-align: center;
        font-size: 16px;
        line-height: 16px;
        color: #fff;
        font-family: "GeneralSans-Medium";
        margin-top: -30px; }
        @media only screen and (max-width: 1279px) {
          footer .footer-wrap .footer-info p {
            font-size: 15px;
            line-height: 15px; } }
        @media only screen and (max-width: 767px) {
          footer .footer-wrap .footer-info p {
            font-size: 14px;
            margin-top: 30px;
            padding-left: 0; } }
        footer .footer-wrap .footer-info p a {
          font-size: 16px;
          line-height: 16px;
          color: #fff;
          font-family: "GeneralSans-Medium"; }
          @media only screen and (max-width: 1279px) {
            footer .footer-wrap .footer-info p a {
              font-size: 15px;
              line-height: 15px; } }
          @media only screen and (max-width: 767px) {
            footer .footer-wrap .footer-info p a {
              font-size: 14px;
              margin-top: 30px;
              padding-left: 0; } }
          footer .footer-wrap .footer-info p a:hover {
            text-decoration: underline; }

html {
  scroll-behavior: smooth; }

body {
  font-size: 16px;
  position: relative;
  left: 0;
  right: 0;
  font-family: "GeneralSans-Regular";
  background-color: #20202a;
  color: #e8e8e8;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s; }

.inner {
  width: 1256px;
  max-width: 94%;
  margin: 0 auto;
  position: relative; }
  .inner:after {
    content: "";
    display: table;
    clear: both; }

.hero-wrap {
  height: 100vh;
  background-color: #16161d;
  position: relative; }
  @media only screen and (max-width: 1279px) {
    .hero-wrap {
      height: auto; } }
  .hero-wrap img {
    width: 600px;
    margin-top: 200px; }
    @media only screen and (max-width: 1919px) {
      .hero-wrap img {
        width: 560px;
        margin-top: 180px; } }
    @media only screen and (max-width: 1279px) {
      .hero-wrap img {
        width: 500px;
        margin-top: 140px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 1023px) {
      .hero-wrap img {
        width: 400px;
        margin-top: 120px; } }
    @media only screen and (max-width: 767px) {
      .hero-wrap img {
        width: 160px;
        margin-top: 90px; } }
  .hero-wrap .hero-title-wrap {
    position: absolute;
    right: 12%;
    top: 300px; }
    @media only screen and (max-width: 1919px) {
      .hero-wrap .hero-title-wrap {
        right: 8%; } }
    @media only screen and (max-width: 1440px) {
      .hero-wrap .hero-title-wrap {
        right: 5%; } }
    @media only screen and (max-width: 1023px) {
      .hero-wrap .hero-title-wrap {
        top: 250px; } }
    @media only screen and (max-width: 767px) {
      .hero-wrap .hero-title-wrap {
        top: 140px; } }
    .hero-wrap .hero-title-wrap h1 {
      position: relative;
      font-family: "Parisienne-Regular";
      font-size: 160px; }
      @media only screen and (max-width: 1919px) {
        .hero-wrap .hero-title-wrap h1 {
          font-size: 140px; } }
      @media only screen and (max-width: 1440px) {
        .hero-wrap .hero-title-wrap h1 {
          font-size: 100px; } }
      @media only screen and (max-width: 1279px) {
        .hero-wrap .hero-title-wrap h1 {
          font-size: 90px; } }
      @media only screen and (max-width: 1023px) {
        .hero-wrap .hero-title-wrap h1 {
          font-size: 72px; } }
      @media only screen and (max-width: 767px) {
        .hero-wrap .hero-title-wrap h1 {
          font-size: 36px; } }
    .hero-wrap .hero-title-wrap h3 {
      font-family: "Parisienne-Regular";
      font-size: 60px; }
      @media only screen and (max-width: 1919px) {
        .hero-wrap .hero-title-wrap h3 {
          font-size: 50px; } }
      @media only screen and (max-width: 1279px) {
        .hero-wrap .hero-title-wrap h3 {
          font-size: 40px; } }
      @media only screen and (max-width: 1023px) {
        .hero-wrap .hero-title-wrap h3 {
          font-size: 36px; } }
      @media only screen and (max-width: 767px) {
        .hero-wrap .hero-title-wrap h3 {
          font-size: 22px; } }

.title {
  transform: translateX(-50%) rotate(-10deg);
  display: block;
  float: left;
  left: 50%;
  position: relative; }
  .title span {
    transform: skew(-10deg);
    display: block;
    float: left;
    min-width: 10px;
    min-height: 10px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .title span:last-child {
        margin-left: -3px; } }

.intro-holder {
  padding-top: 100px; }
  @media only screen and (max-width: 1279px) {
    .intro-holder {
      padding-top: 80px; } }
  @media only screen and (max-width: 767px) {
    .intro-holder {
      padding-top: 30px; } }
  .intro-holder .intro-section {
    padding-bottom: 200px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
    @media only screen and (max-width: 1279px) {
      .intro-holder .intro-section {
        padding-bottom: 100px; } }
    @media only screen and (max-width: 767px) {
      .intro-holder .intro-section {
        padding-bottom: 50px; } }
    .intro-holder .intro-section h2 {
      max-width: 620px;
      font-family: "GeneralSans-Medium";
      font-size: 52px;
      line-height: 68px;
      margin-bottom: 10px;
      color: #e8e8e8; }
      @media only screen and (max-width: 1023px) {
        .intro-holder .intro-section h2 {
          font-size: 38px;
          line-height: 44px; } }
      @media only screen and (max-width: 767px) {
        .intro-holder .intro-section h2 {
          font-size: 32px;
          line-height: 39px;
          margin-bottom: 5px; } }
    .intro-holder .intro-section h3 {
      max-width: 620px;
      font-family: "Parisienne-Regular";
      font-size: 32px;
      line-height: 38px;
      color: #af9164;
      margin-bottom: 20px; }
      @media only screen and (max-width: 1023px) {
        .intro-holder .intro-section h3 {
          font-size: 28px;
          line-height: 36px; } }
      @media only screen and (max-width: 767px) {
        .intro-holder .intro-section h3 {
          font-size: 22px;
          line-height: 30px;
          margin-bottom: 12px; } }
    .intro-holder .intro-section p {
      font-family: "GeneralSans-Light";
      max-width: 500px;
      font-size: 20px;
      line-height: 26px;
      color: #e8e8e8; }
      @media only screen and (max-width: 1023px) {
        .intro-holder .intro-section p {
          font-size: 18px;
          line-height: 22px;
          padding-right: 40px; } }
      @media only screen and (max-width: 767px) {
        .intro-holder .intro-section p {
          font-size: 16px;
          line-height: 20px;
          padding-right: 0;
          margin-bottom: 40px; } }
    .intro-holder .intro-section img {
      max-width: 100%;
      width: 100%; }
      @media only screen and (max-width: 1279px) {
        .intro-holder .intro-section img {
          max-width: 96%; } }
      @media only screen and (max-width: 767px) {
        .intro-holder .intro-section img {
          max-width: 100%; } }

.select2-container {
  z-index: 999 !important; }

.select-normal {
  margin: 0 auto;
  position: relative; }
  .select-normal .js-select2 {
    width: 100%; }

.select-no-search {
  width: 100%; }

.select-holder {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-bottom: 20px; }
  .select-holder .select2 {
    max-width: 100% !important;
    width: 100% !important; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url("../../img/arrowdown.png") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 15px !important;
  height: 10px !important; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  background-image: url("../../img/arrowdown.png") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important; }

.gallery-holder {
  margin-bottom: 200px; }
  @media only screen and (max-width: 1279px) {
    .gallery-holder {
      margin-bottom: 100px; } }
  @media only screen and (max-width: 767px) {
    .gallery-holder {
      margin-bottom: 60px; } }
  .gallery-holder h2 {
    font-family: "Parisienne-Regular";
    font-size: 88px;
    line-height: 90px;
    color: #e8e8e8;
    margin-bottom: 70px;
    text-align: center; }
    @media only screen and (max-width: 1279px) {
      .gallery-holder h2 {
        font-size: 72px;
        line-height: 76px;
        margin-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .gallery-holder h2 {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 30px; } }
  .gallery-holder .gallery-wrap .gallery-row {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-left: -12px; }
    @media only screen and (max-width: 767px) {
      .gallery-holder .gallery-wrap .gallery-row {
        margin-left: 0; } }
    .gallery-holder .gallery-wrap .gallery-row .fancybox {
      display: inline-block;
      overflow: hidden;
      width: 23%;
      height: auto;
      margin: 12px;
      -webkit-border-radius: 6px;
      -moz-border-radius: 6px;
      border-radius: 6px; }
      @media only screen and (max-width: 1279px) {
        .gallery-holder .gallery-wrap .gallery-row .fancybox {
          width: 31%;
          height: auto; } }
      @media only screen and (max-width: 1023px) {
        .gallery-holder .gallery-wrap .gallery-row .fancybox {
          width: 46%;
          height: auto; } }
      @media only screen and (max-width: 767px) {
        .gallery-holder .gallery-wrap .gallery-row .fancybox {
          width: 98%;
          height: auto;
          margin: 0 0 20px 0; } }
      .gallery-holder .gallery-wrap .gallery-row .fancybox img[alt="image"] {
        width: 100%;
        display: block;
        transition: transform 0.5s;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        .gallery-holder .gallery-wrap .gallery-row .fancybox img[alt="image"]:hover {
          -ms-transform: scale(1.3, 1.3);
          -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
          -webkit-transition: 0.5s;
          -moz-transition: 0.5s;
          -ms-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s; }
  .gallery-holder .gallery-wrap .slick-arrow i {
    font-size: 30px;
    color: #a49062 !important; }
  .gallery-holder .mobile-gallery {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0 20px;
    display: none !important; }
    .gallery-holder .mobile-gallery .item-slide {
      position: relative;
      text-align: center;
      width: 100%; }
      .gallery-holder .mobile-gallery .item-slide a {
        display: inline-block;
        width: 100%;
        padding: 20px 10px; }
        .gallery-holder .mobile-gallery .item-slide a img {
          width: 100%; }
    .gallery-holder .mobile-gallery .slick-arrow i {
      font-size: 30px;
      color: #fff; }
    .gallery-holder .mobile-gallery .slick-prev {
      position: absolute;
      top: 50%;
      left: 2px;
      z-index: 99;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
    .gallery-holder .mobile-gallery .slick-next {
      position: absolute;
      top: 50%;
      right: 2px;
      z-index: 99;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
    @media only screen and (max-width: 767px) {
      .gallery-holder .mobile-gallery {
        display: block !important; } }

.contact-wrap {
  margin-bottom: 200px; }
  @media only screen and (max-width: 1279px) {
    .contact-wrap {
      margin-bottom: 160px; } }
  @media only screen and (max-width: 767px) {
    .contact-wrap {
      margin-bottom: 60px; } }
  .contact-wrap h2 {
    font-family: "Parisienne-Regular";
    font-size: 88px;
    line-height: 52px;
    color: #e8e8e8;
    margin-bottom: 72px;
    text-align: center; }
    @media only screen and (max-width: 1279px) {
      .contact-wrap h2 {
        font-size: 72px;
        line-height: 76px;
        margin-bottom: 50px; } }
    @media only screen and (max-width: 767px) {
      .contact-wrap h2 {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 20px; } }
  .contact-wrap .contact-info-wrap .contact-info {
    text-align: center;
    margin-bottom: 40px; }
    .contact-wrap .contact-info-wrap .contact-info a {
      display: inline-block;
      margin-bottom: 20px;
      font-size: 22px; }
      .contact-wrap .contact-info-wrap .contact-info a i {
        margin-right: 10px;
        margin-top: 5px; }
      .contact-wrap .contact-info-wrap .contact-info a:hover {
        text-decoration: underline; }
  .contact-wrap .contact-social-wrap {
    text-align: center; }
    .contact-wrap .contact-social-wrap a {
      display: inline-block; }
      .contact-wrap .contact-social-wrap a i {
        font-size: 80px; }
      .contact-wrap .contact-social-wrap a:hover i {
        color: #af9164; }

.terms-holder .terms-wrap {
  margin-top: 170px;
  margin-bottom: 200px; }
  @media only screen and (max-width: 767px) {
    .terms-holder .terms-wrap {
      margin-top: 100px;
      margin-bottom: 100px; } }
  .terms-holder .terms-wrap h1 {
    font-family: "GeneralSans-Regular";
    font-size: 72px;
    color: #e8e8e8;
    line-height: 76px;
    margin-bottom: 72px; }
    @media only screen and (max-width: 767px) {
      .terms-holder .terms-wrap h1 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 52px; } }
  .terms-holder .terms-wrap .terms-content-wrap p {
    font-size: 18px;
    font-family: "GeneralSans-Regular";
    color: #fff;
    line-height: 28px;
    margin-bottom: 30px; }
    .terms-holder .terms-wrap .terms-content-wrap p b, .terms-holder .terms-wrap .terms-content-wrap p strong {
      font-size: 18px;
      line-height: 28px;
      color: #000;
      font-family: "GeneralSans-Medium";
      font-weight: 900; }
    .terms-holder .terms-wrap .terms-content-wrap p i, .terms-holder .terms-wrap .terms-content-wrap p em {
      font-size: 18px;
      line-height: 28px;
      font-family: "GeneralSans-Regular";
      font-style: italic; }
  .terms-holder .terms-wrap .terms-content-wrap h2 {
    font-size: 18px;
    font-family: "GeneralSans-Medium";
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2; }
  .terms-holder .terms-wrap .terms-content-wrap b, .terms-holder .terms-wrap .terms-content-wrap strong {
    font-family: "GeneralSans-Medium"; }
  .terms-holder .terms-wrap .terms-content-wrap a {
    font-size: 18px;
    font-family: "GeneralSans-Regular";
    color: #ff314d;
    line-height: 28px; }
    .terms-holder .terms-wrap .terms-content-wrap a:hover {
      text-decoration: underline; }
  .terms-holder .terms-wrap .terms-content-wrap ul {
    padding: 0 0 20px 0;
    display: block; }
    .terms-holder .terms-wrap .terms-content-wrap ul li {
      font-size: 18px;
      font-family: "GeneralSans-Regular";
      color: #000;
      margin-bottom: 10px;
      line-height: 28px;
      padding-left: 20px;
      position: relative; }
      .terms-holder .terms-wrap .terms-content-wrap ul li:last-child {
        padding-bottom: 0; }
      .terms-holder .terms-wrap .terms-content-wrap ul li:before {
        position: absolute;
        left: 0;
        top: 12px;
        content: "";
        background: #000;
        background-size: contain;
        width: 8px;
        height: 8px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .terms-holder .terms-wrap .terms-content-wrap ul li:last-child {
        margin: 0; }
      .terms-holder .terms-wrap .terms-content-wrap ul li * {
        line-height: inherit !important; }
  .terms-holder .terms-wrap .terms-content-wrap ol {
    padding: 0 0 20px 0;
    display: block;
    list-style: revert !important;
    margin-left: 20px; }
    .terms-holder .terms-wrap .terms-content-wrap ol li {
      font-size: 18px;
      font-family: "GeneralSans-Regular";
      color: #000;
      margin-bottom: 10px;
      line-height: 28px;
      padding-left: 20px;
      position: relative; }
      .terms-holder .terms-wrap .terms-content-wrap ol li:last-child {
        margin: 0; }
      .terms-holder .terms-wrap .terms-content-wrap ol li * {
        line-height: inherit !important; }
  .terms-holder .terms-wrap .terms-content-wrap img {
    max-width: 100%; }

.modal-wrap {
  width: 100%;
  height: 100vh;
  background: rgba(2, 82, 115, 0.5);
  display: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto; }
  @media only screen and (max-width: 1023px) {
    .modal-wrap {
      overflow-y: auto; } }
  .modal-wrap.active-modal {
    display: block !important; }
  .modal-wrap .modal-back {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-wrap .modal-back-block {
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 100; }
  .modal-wrap .modal-content {
    max-width: 688px;
    width: 98%;
    position: relative;
    z-index: 9999;
    padding: 60px 44px;
    background-color: #fff;
    min-height: 535px;
    animation-name: modalUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(195, 198, 198, 0.4) transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; }
    .modal-wrap .modal-content::-webkit-scrollbar {
      width: 7px; }
    .modal-wrap .modal-content::-webkit-scrollbar-track {
      background-color: white; }
    .modal-wrap .modal-content::-webkit-scrollbar-thumb {
      background: rgba(195, 198, 198, 0.8); }
    .modal-wrap .modal-content .modal-logo {
      display: none; }
    @media only screen and (max-width: 767px) {
      .modal-wrap .modal-content {
        background-color: #F2EFEF;
        animation-name: none;
        width: 100%;
        height: 100vh;
        max-width: 100%;
        max-height: 100vh;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0; }
        .modal-wrap .modal-content .modal-logo {
          display: inline-block;
          position: absolute;
          top: 15px;
          left: 8%; }
          .modal-wrap .modal-content .modal-logo img {
            width: 35px; } }
    .modal-wrap .modal-content .modal-head {
      position: relative; }
      .modal-wrap .modal-content .modal-head h3 {
        font-family: "GeneralSans-Bold";
        font-size: 27px;
        color: #000; }
        @media only screen and (max-width: 767px) {
          .modal-wrap .modal-content .modal-head h3 {
            text-align: center;
            font-size: 18px;
            line-height: 1.33;
            padding: 20px 20px 0 20px; } }
    .modal-wrap .modal-content .modal-body {
      margin: 30px 0 0 0; }
    .modal-wrap .modal-content .modal-bottom button,
    .modal-wrap .modal-content .modal-bottom .cancel-form {
      width: 100%;
      display: block;
      cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .modal-wrap .modal-content .form-button {
        text-align: center !important; } }
    .modal-wrap .modal-content .row {
      margin-bottom: 10px; }

.close-m {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 18px; }
  @media only screen and (max-width: 767px) {
    .close-m {
      right: 10%;
      top: 25px; } }

@-webkit-keyframes modalUp {
  from {
    margin: -300px auto; }
  to {
    margin: 50px auto; } }

@keyframes modalUp {
  from {
    margin: -300px auto; }
  to {
    margin: 50px auto; } }

.to-top {
  position: absolute;
  right: 0;
  bottom: 3px;
  cursor: pointer; }
  .to-top img {
    width: 48px; }
  @media only screen and (max-width: 767px) {
    .to-top {
      bottom: 110px; }
      .to-top img {
        width: 40px; } }
  .to-top:hover {
    opacity: 0.6; }

.toast-wrap {
  animation-name: toast;
  opacity: 0.5;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999999999999; }

.toast-wrap .toast-correct {
  min-width: 320px;
  width: auto;
  padding: 25px 15px;
  background: #fff;
  border-left: 6px solid #ff314d;
  color: #4b5662;
  font-size: 20px;
  font-family: "GeneralSans-Regular";
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  -moz-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4); }

.toast-wrap .toast-correct span {
  color: #ff314d;
  margin-right: 5px; }

.toast-wrap .toast-correct span i {
  font-size: 20px; }

.toast-wrap .toast-error {
  min-width: 320px;
  padding: 25px 15px;
  background: #fff;
  border-left: 6px solid red;
  color: #4b5662;
  font-size: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  -moz-box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4);
  box-shadow: 0px 2px 13px 0px rgba(9, 43, 75, 0.4); }

.toast-wrap .toast-error span {
  color: red;
  margin-right: 5px; }

.toast-wrap .toast-error span i {
  font-size: 20px; }

.toast-image {
  display: none; }

.toast-image-max {
  display: none; }

.toast-image-weight {
  display: none; }

@keyframes toast {
  0% {
    opacity: 0.5;
    margin-top: -100px;
    z-index: 999999; }
  20% {
    opacity: 1;
    margin-top: 0; }
  90% {
    opacity: 1;
    margin-top: 0;
    z-index: 999999; }
  100% {
    opacity: 0;
    margin-top: -100px;
    z-index: -1; } }

@keyframes toast {
  0% {
    opacity: 0.5;
    margin-top: -100px;
    z-index: 999999; }
  20% {
    opacity: 1;
    margin-top: 0; }
  90% {
    opacity: 1;
    margin-top: 0;
    z-index: 999999; }
  100% {
    opacity: 0;
    margin-top: -100px;
    z-index: -1; } }

.select-normal {
  margin: 0 auto;
  position: relative; }
  .select-normal .js-select2 {
    width: 100%; }

.select-no-search {
  width: 100%; }

.select-holder {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-bottom: 20px; }
  .select-holder .select2 {
    max-width: 100% !important;
    width: 100% !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  color: #000 !important;
  font-family: "GeneralSans-Regular" !important;
  font-size: 18px !important;
  box-shadow: none !important;
  border: 1px solid #EAEAEB !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important; }

.select2-container--open .select2-selection--single {
  -webkit-border-radius: 6px 6px 0 0 !important;
  -moz-border-radius: 6px 6px 0 0 !important;
  border-radius: 6px 6px 0 0 !important; }

.select2-dropdown {
  background-color: #fff !important;
  border: 1px solid #EAEAEB !important;
  border-top: none !important;
  color: #000 !important;
  font-family: "GeneralSans-Regular" !important;
  -webkit-border-radius: 0 0 6px 6px !important;
  -moz-border-radius: 0 0 6px 6px !important;
  border-radius: 0 0 6px 6px !important; }

.select2-container--default .select2-results__option {
  border-bottom: 1px solid #EAEAEB !important;
  font-family: "GeneralSans-Regular" !important; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #CACBCE !important;
  color: #000 !important;
  font-family: "GeneralSans-Regular" !important; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url("/img/select-arrow.svg") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 12px !important;
  height: 10px !important;
  margin-top: -4px !important; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  background-image: url("/img/select-arrow.svg") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important; }

.mb10 {
  margin-bottom: 10px; }

.mb20 {
  margin-bottom: 20px; }

@media only screen and (max-width: 767px) {
  .mob-b0 {
    margin-bottom: 0 !important; } }

@media only screen and (max-width: 767px) {
  .mob-mb20 {
    margin-bottom: 20px !important; } }

.mob-show {
  display: none; }
  @media only screen and (max-width: 767px) {
    .mob-show {
      display: block !important; } }

@media only screen and (max-width: 767px) {
  .mob-none {
    display: none !important; } }

.none-scroll {
  overflow: hidden !important; }

.opacity0 {
  opacity: 0 !important; }
