@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: 'GillSansNova-Medium';
  src: url("fonts/32969C_0_0.eot");
  src: url("fonts/32969C_0_0.eot?#iefix") format("embedded-opentype"), url("fonts/32969C_0_0.woff2") format("woff2"), url("fonts/32969C_0_0.woff") format("woff"), url("fonts/32969C_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'GillSansNova-Book';
  src: url("fonts/32969C_1_0.eot");
  src: url("fonts/32969C_1_0.eot?#iefix") format("embedded-opentype"), url("fonts/32969C_1_0.woff2") format("woff2"), url("fonts/32969C_1_0.woff") format("woff"), url("fonts/32969C_1_0.ttf") format("truetype"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: normal;
  src: url("fonts/OpenSans-Regular.ttf"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: italic;
  src: url("fonts/OpenSans-Italic.ttf"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 600;
  font-style: normal;
  src: url("fonts/OpenSans-Semibold.ttf"); }

@font-face {
  font-family: 'Open Sans';
  font-weight: 600;
  font-style: italic;
  src: url("fonts/OpenSans-SemiboldItalic.ttf"); }

/* Colors */
/* Mixins */
/* Global Styles */
body {
  font-family: GillSansNova-Book;
  background-color: #e7e2d1;
  color: #000000; }

.overflow-hidden {
  overflow: hidden;
  position: relative;
  height: 100%; }

.container {
  width: 100%;
  padding: 0;
  margin: 0 auto; }

.inner-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto; }

a {
  color: #a1966e;
  text-decoration: none; }
  a:hover, a:focus {
    color: #a1966e; }

button {
  outline: 0; }

.page-body {
  background-color: #e7e2d1;
  position: relative;
  padding-bottom: 38px;
  background: url("../img/svg/body-bg.svg") no-repeat bottom right; }

.loading-screen {
  background-color: #e8e3d0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden; }
  .loading-screen .flex-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: 100%; }
    .loading-screen .flex-box .cover {
      align-self: center;
      margin: 0 auto;
      width: 264px;
      height: 200px;
      position: relative; }
      .loading-screen .flex-box .cover > img {
        display: inherit;
        margin: 0 auto; }
        .loading-screen .flex-box .cover > img:first-child {
          width: 60px;
          height: 61px;
          animation-name: logo-fade;
          animation-duration: 1.3s;
          animation-iteration-count: 1;
          position: absolute;
          transform: translateY(69px);
          left: 0;
          right: 0; }

@keyframes logo-fade {
  0% {
    opacity: 0;
    transform: translateY(0); }
  100% {
    opacity: 1; } }
        .loading-screen .flex-box .cover > img:last-child {
          animation-name: text-fade;
          animation-duration: 1.3s;
          animation-iteration-count: 1;
          position: absolute;
          transform: translateY(142px);
          left: 0;
          right: 0; }

@keyframes text-fade {
  0% {
    opacity: 0;
    transform: translateY(199px); }
  100% {
    opacity: 1; } }

.notification {
  width: 100%;
  min-height: 44px;
  background-color: #2c575a;
  color: #f4ebe8;
  z-index: 2;
  text-align: center;
  padding: 0 30px; }
  .notification.brown {
    background-color: #a1966e; }
  .notification.brown {
    background-color: #a1966e; }
  .notification.brown {
    background-color: #a1966e; }
  .notification.orange {
    background-color: #ec9f49; }
  .notification.green {
    background-color: #9fc657; }
  .notification.grey {
    background-color: #5e5e5e; }
  .notification.almost-white {
    background-color: #fcf8e3;
    color: #8a6d3b; }
    .notification.almost-white a {
      color: #8a6d3b;
      border-color: #8a6d3b; }
  .notification.pink {
    background-color: #f2dede;
    color: #a94442; }
    .notification.pink a {
      color: #a94442;
      border-color: #a94442; }
  .notification.red {
    background-color: #a94442; }
  .notification p {
    position: relative;
    display: inline-block;
    margin: 16px 0 13px 0;
    font-size: 13px;
    letter-spacing: 0.2px;
    text-align: center;
    padding: 0 50px; }
    .notification p a {
      color: #f4ebe8;
      border-bottom: 1px solid #f4ebe8;
      text-decoration: none; }
  .notification button {
    background: transparent;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    padding: 0; }
    .notification button svg {
      width: 15px;
      height: 15px;
      margin-top: 4px; }
      .notification button svg path {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s; }
      .notification button svg:hover path {
        fill: #a1966e; }
  .notification .inner-container {
    position: relative; }
  .notification .row {
    max-width: 1180px;
    margin: 0 auto; }
    .notification .row .col-md-10 {
      text-align: right; }

.fade-in-nav {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  opacity: 1 !important;
  left: 0 !important; }

.fade-in {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  opacity: 1 !important; }

.fade-up {
  position: relative;
  top: 20px;
  opacity: 0; }

.fade-in-up {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  top: 0 !important;
  opacity: 1 !important; }

.fade-in-left {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  left: 0 !important;
  opacity: 1 !important; }

.fade-in-right {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  right: 0 !important;
  opacity: 1 !important; }

.custom-text-gold {
  font-family: 'Open Sans', sans-serif;
  color: #a1966e;
  font-size: 13px; }

.custom-link {
  color: #a1966e;
  font-family: GillSansNova-Medium;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 13px;
  padding-top: 5px;
  display: table;
  margin: 0 auto;
  margin-top: 20px; }

hr {
  background-color: #a1966e;
  max-width: 870px;
  border: 0;
  margin: 20px auto;
  height: 1px;
  display: block;
  width: 100%; }

.sticky-note {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  background-color: #eae6d8;
  border: 8px solid #978f6b;
  position: fixed;
  display: none;
  bottom: 30px;
  color: #292929;
  z-index: 2; }
  .sticky-note > img {
    float: left;
    max-width: 600px;
    max-height: 250px; }
  .sticky-note .text-box {
    align-self: center;
    position: relative;
    width: 232px;
    overflow: hidden;
    text-align: center;
    padding: 30px 30px 0 30px;
    float: right;
    font-family: GillSansNova-Medium; }
    .sticky-note .text-box h5 {
      text-transform: uppercase; }
    .sticky-note .text-box p {
      padding-top: 10px;
      line-height: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      max-height: 70px; }
    .sticky-note .text-box a {
      -webkit-transition: all 0.1s;
      -o-transition: all 0.1s;
      -moz-transition: all 0.1s;
      transition: all 0.1s;
      color: #2c575a;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 16px;
      font-weight: bold;
      display: block;
      padding: 10px 0; }
      .sticky-note .text-box a img {
        margin: 0 0 3px 10px;
        display: inline-block;
        float: none;
        height: 23px; }
      .sticky-note .text-box a:hover {
        margin-right: -5px; }
    .sticky-note .text-box button {
      background: transparent;
      border: 0;
      position: absolute;
      top: 9px;
      right: 9px;
      padding: 0;
      opacity: 0.7; }

header {
  -webkit-transition: -webkit-transform 0.2s ease,opacity 0.2s ease;
  -moz-transition: -moz-transform 0.2s ease,opacity 0.2s ease;
  transition: transform 0.2s ease,opacity 0.2s ease;
  position: relative;
  width: 100%;
  z-index: 3;
  opacity: 0; }
  header.not-visible {
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
    opacity: 0; }
  header.fixed {
    position: fixed; }
  header.visible {
    position: fixed;
    -webkit-transition: -webkit-transform 0.2s ease,opacity 0.2s ease;
    -moz-transition: -moz-transform 0.2s ease,opacity 0.2s ease;
    transition: transform 0.2s ease,opacity 0.2s ease;
    opacity: 1 !important; }
  header.menu-2 .main-nav {
    height: 70px; }
    header.menu-2 .main-nav .inner-container > ul {
      height: 70px; }
      header.menu-2 .main-nav .inner-container > ul > li {
        height: 70px; }
        header.menu-2 .main-nav .inner-container > ul > li > a {
          padding: 26px 0 25px 0;
          height: 70px; }
    header.menu-2 .main-nav .logo-cover {
      top: 5px; }
  header.menu-2 .mobile-nav {
    height: 70px; }
    header.menu-2 .mobile-nav .inner-container > ul {
      height: 70px; }
      header.menu-2 .mobile-nav .inner-container > ul > li {
        height: 70px; }
        header.menu-2 .mobile-nav .inner-container > ul > li > a {
          padding: 26px 0 27px 0;
          height: 70px; }
    header.menu-2 .mobile-nav .logo-cover {
      top: 5px; }

.line-cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 26px;
  height: 100%;
  overflow: hidden;
  margin-top: -1px; }
  .line-cover .lines {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    align-self: center;
    width: 18px;
    height: 2px;
    background-color: #3f515c;
    position: relative;
    margin-top: 7px;
    margin-bottom: 7px; }
    .line-cover .lines:before {
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      -moz-transition: all 0.2s;
      transition: all 0.2s;
      content: '';
      width: 26px;
      background-color: #3f515c;
      height: 2px;
      display: block;
      position: absolute;
      top: -7px; }
    .line-cover .lines:after {
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      -moz-transition: all 0.2s;
      transition: all 0.2s;
      content: '';
      width: 21px;
      background-color: #3f515c;
      height: 2px;
      display: block;
      position: absolute;
      bottom: -7px; }

.modal-dialog.with-golden-exit .modal-content {
  border-radius: 0; }

.modal-dialog.with-golden-exit .modal-header {
  text-align: right;
  padding-bottom: 13px; }

.modal-header .golden-exit-modal {
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 17px;
  height: 17px; }
  .modal-header .golden-exit-modal img {
    margin: 0 2px 0 0; }

.main-nav {
  transition: height 0.25s ease-in;
  width: 100%;
  height: 56px;
  background-color: #f6f5f3;
  position: relative;
  padding: 0 30px; }
  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .main-nav ul li {
      float: left; }
      .main-nav ul li a {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        text-decoration: none;
        padding: 19px 0 18px 0;
        color: #3f515c;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0 25px 0 25px;
        letter-spacing: 1px;
        display: block;
        height: 56px; }
        .main-nav ul li a:hover {
          color: #a1966e; }
          .main-nav ul li a:hover .lines {
            background-color: #a1966e; }
            .main-nav ul li a:hover .lines:before {
              background-color: #a1966e; }
            .main-nav ul li a:hover .lines:after {
              background-color: #a1966e; }
        .main-nav ul li a .glyphicon {
          font-size: 9px;
          margin-left: 9px;
          top: 0; }
        .main-nav ul li a:focus {
          color: #a1966e; }
      .main-nav ul li.relative {
        position: relative; }
      .main-nav ul li.dropdown-open a {
        color: #a1966e; }
      .main-nav ul li.dropdown-open .line-cover .lines {
        background-color: transparent; }
        .main-nav ul li.dropdown-open .line-cover .lines:before {
          -webkit-transform: translateY(7px) rotate(45deg);
          -moz-transform: translateY(7px) rotate(45deg);
          -ms-transform: translateY(7px) rotate(45deg);
          -o-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
          width: 19px; }
        .main-nav ul li.dropdown-open .line-cover .lines:after {
          -webkit-transform: translateY(-7px) rotate(-45deg);
          -moz-transform: translateY(-7px) rotate(-45deg);
          -ms-transform: translateY(-7px) rotate(-45deg);
          -o-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
          width: 19px; }
    .main-nav ul.left-side {
      width: 50%;
      float: left; }
      .main-nav ul.left-side li a:first-child {
        margin-left: 0; }
    .main-nav ul.right-side {
      width: 50%;
      float: right; }
      .main-nav ul.right-side li {
        float: right; }
        .main-nav ul.right-side li a:first-child {
          margin-right: 0; }
  .main-nav .dropdown {
    background-color: #fff;
    display: none;
    position: absolute;
    padding: 0 30px; }
    .main-nav .dropdown .dropdown-body {
      max-width: 1180px;
      margin: 0 auto;
      position: relative; }
      .main-nav .dropdown .dropdown-body a {
        height: auto; }
    .main-nav .dropdown .exit-dropdown {
      position: absolute;
      right: 0;
      border: 0;
      background-color: transparent;
      top: -45px;
      padding: 0;
      width: 17px;
      height: 17px; }
      .main-nav .dropdown .exit-dropdown img {
        margin: 0 2px 0 0; }
    .main-nav .dropdown.full-width {
      padding-top: 70px;
      left: 0;
      right: 0;
      height: 100vh;
      overflow-y: auto; }
      .main-nav .dropdown.full-width .gold-line {
        -webkit-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 0;
        height: 3px;
        background-color: #a1966e;
        margin: 0 auto; }
        .main-nav .dropdown.full-width .gold-line.grow {
          width: 100%; }
      .main-nav .dropdown.full-width ul {
        float: left;
        height: auto; }
        .main-nav .dropdown.full-width ul li {
          width: 100%;
          color: #a1966e;
          font-size: 17px;
          text-transform: uppercase;
          letter-spacing: 0.5px; }
          .main-nav .dropdown.full-width ul li a {
            padding: 0;
            font-weight: normal;
            margin-bottom: 25px;
            height: auto;
            display: table; }
            .main-nav .dropdown.full-width ul li a:after {
              -webkit-transition: all 0.2s;
              -o-transition: all 0.2s;
              -moz-transition: all 0.2s;
              transition: all 0.2s;
              content: "\e080";
              font-family: "Glyphicons Halflings";
              display: inline-block;
              font-size: 8px;
              width: 6px;
              height: 7px;
              color: #a1966e;
              position: relative;
              margin-left: 5px;
              top: -2px;
              opacity: 0; }
            .main-nav .dropdown.full-width ul li a:hover:after {
              content: "\e080";
              font-family: "Glyphicons Halflings";
              display: inline-block;
              font-size: 8px;
              width: 6px;
              height: 7px;
              position: relative;
              margin-left: 5px;
              top: -2px;
              opacity: 1; }
          .main-nav .dropdown.full-width ul li ul {
            padding: 0 0 25px 20px;
            margin-top: -15px; }
            .main-nav .dropdown.full-width ul li ul li {
              overflow: hidden; }
              .main-nav .dropdown.full-width ul li ul li a {
                color: #3f515c;
                font-weight: 600;
                font-size: 16px;
                letter-spacing: 1px;
                margin-bottom: 5px; }
                .main-nav .dropdown.full-width ul li ul li a:hover {
                  color: #a1966e; }
              .main-nav .dropdown.full-width ul li ul li ul {
                padding: 15px 0 30px 25px; }
                .main-nav .dropdown.full-width ul li ul li ul li {
                  padding-bottom: 0; }
                  .main-nav .dropdown.full-width ul li ul li ul li a {
                    font-weight: normal;
                    height: auto;
                    margin: 0 0 3px 0;
                    text-transform: none;
                    padding: 0;
                    font-size: 14px; }
                    .main-nav .dropdown.full-width ul li ul li ul li a:after, .main-nav .dropdown.full-width ul li ul li ul li a:hover:after {
                      content: none; }
    .main-nav .dropdown.login-dropdown, .main-nav .dropdown.lang-dropdown {
      min-width: 170px;
      background-color: #f6f5f3;
      right: 0;
      height: auto;
      padding: 0;
      white-space: nowrap; }
      .main-nav .dropdown.login-dropdown ul, .main-nav .dropdown.lang-dropdown ul {
        padding: 0 19px;
        overflow: hidden; }
        .main-nav .dropdown.login-dropdown ul li, .main-nav .dropdown.lang-dropdown ul li {
          width: 100%;
          text-align: right; }
          .main-nav .dropdown.login-dropdown ul li a, .main-nav .dropdown.lang-dropdown ul li a {
            color: #908f8f;
            margin: 0 0 8px 0;
            padding: 0; }
            .main-nav .dropdown.login-dropdown ul li a:hover, .main-nav .dropdown.lang-dropdown ul li a:hover {
              color: #a1966e; }
    .main-nav .dropdown.lang-dropdown {
      min-width: 80px; }
      .main-nav .dropdown.lang-dropdown ul li a {
        text-transform: uppercase; }
    .main-nav .dropdown.dropdown-burger .title {
      width: 100%;
      color: #a1966e;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 5px; }
      .main-nav .dropdown.dropdown-burger .title a {
        padding-top: 0;
        font-weight: normal; }
    .main-nav .dropdown.dropdown-burger .search-cover {
      float: right;
      padding-right: 130px; }
      .main-nav .dropdown.dropdown-burger .search-cover .title {
        margin-left: 5px; }
    .main-nav .dropdown.dropdown-burger .search-box h5 {
      text-transform: uppercase;
      color: #3f515c;
      letter-spacing: 1px;
      margin: 5px 0 18px 5px; }
    .main-nav .dropdown.dropdown-burger .search-box input {
      font-family: 'Open Sans', sans-serif;
      font-style: italic;
      color: #3f515c;
      width: 100%;
      padding: 0 17px 8px 17px;
      border: 0;
      outline: 0;
      border-bottom: 1px solid #ecedf1; }
      .main-nav .dropdown.dropdown-burger .search-box input::-webkit-input-placeholder {
        color: #3f515c; }
      .main-nav .dropdown.dropdown-burger .search-box input:-moz-placeholder {
        color: #3f515c; }
      .main-nav .dropdown.dropdown-burger .search-box input::-moz-placeholder {
        color: #3f515c; }
      .main-nav .dropdown.dropdown-burger .search-box input:-ms-input-placeholder {
        color: #3f515c; }
    .main-nav .dropdown.dropdown-burger .search-box .search {
      position: relative; }
    .main-nav .dropdown.dropdown-burger .search-box .search-icon {
      background-color: transparent;
      width: 16px;
      height: 16px;
      display: inline-block;
      position: absolute;
      right: 15px;
      bottom: 12px;
      border: 0; }
    .main-nav .dropdown .col-md-6:last-child ul li ul {
      padding-bottom: 23px; }
      .main-nav .dropdown .col-md-6:last-child ul li ul li {
        padding-bottom: 0; }
        .main-nav .dropdown .col-md-6:last-child ul li ul li a {
          padding: 0;
          font-size: 14px; }
    .main-nav .dropdown.dropdown-partners ul li {
      float: none; }
      .main-nav .dropdown.dropdown-partners ul li a {
        font-family: GillSansNova-Medium;
        color: #a1966e;
        text-transform: uppercase;
        font-size: 17px;
        margin: 25px 0 5px 0;
        padding: 0;
        font-weight: normal;
        display: block;
        text-decoration: none; }
      .main-nav .dropdown.dropdown-partners ul li:first-child a {
        margin-top: 0; }
  .main-nav .inner-container {
    max-width: 1180px;
    margin: 0 auto; }

.mobile-nav {
  display: none;
  width: 100%;
  height: 56px;
  background-color: #f6f5f3;
  position: relative;
  padding: 0 30px; }
  .mobile-nav ul {
    padding: 0;
    list-style: none; }
    .mobile-nav ul li {
      float: left; }
      .mobile-nav ul li a {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        text-decoration: none;
        color: #3f515c;
        text-transform: uppercase;
        font-weight: bold;
        padding: 19px 25px 18px 25px;
        height: 56px;
        margin: 0;
        letter-spacing: 1px;
        display: block; }
        .mobile-nav ul li a .glyphicon {
          font-size: 9px;
          margin-left: 9px;
          top: 0; }
        .mobile-nav ul li a:focus {
          color: #a1966e; }
      .mobile-nav ul li .line-cover .lines {
        margin-left: 8px; }
        .mobile-nav ul li .line-cover .lines:before {
          left: -8px; }
        .mobile-nav ul li .line-cover .lines:after {
          left: -3px; }
      .mobile-nav ul li.dropdown-open img {
        display: block !important; }
      .mobile-nav ul li.dropdown-open > a {
        color: #a1966e; }
      .mobile-nav ul li.dropdown-open .dropdown {
        display: block; }
      .mobile-nav ul li.dropdown-open .not-visible.dropdown {
        display: none; }
      .mobile-nav ul li.dropdown-open .first-ul {
        display: block; }
      .mobile-nav ul li.dropdown-open.burger-dropdown .line-cover .lines {
        background-color: transparent; }
        .mobile-nav ul li.dropdown-open.burger-dropdown .line-cover .lines:before {
          -webkit-transform: translateY(7px) rotate(-45deg);
          -moz-transform: translateY(7px) rotate(-45deg);
          -ms-transform: translateY(7px) rotate(-45deg);
          -o-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
          background-color: #a1966e;
          width: 19px;
          left: 0; }
        .mobile-nav ul li.dropdown-open.burger-dropdown .line-cover .lines:after {
          -webkit-transform: translateY(-7px) rotate(45deg);
          -moz-transform: translateY(-7px) rotate(45deg);
          -ms-transform: translateY(-7px) rotate(45deg);
          -o-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
          background-color: #a1966e;
          width: 19px;
          left: 0; }
      .mobile-nav ul li.burger-dropdown img {
        display: none;
        position: relative;
        top: 2px; }
      .mobile-nav ul li.relative {
        position: relative; }
  .mobile-nav .dropdown {
    background-color: #fff;
    display: none;
    position: absolute;
    overflow-y: auto; }
    .mobile-nav .dropdown.dropdown-clone {
      top: -3px;
      bottom: 0;
      z-index: 10; }
    .mobile-nav .dropdown .dropdown-body {
      max-width: 1180px;
      margin: 0 auto;
      position: relative; }
    .mobile-nav .dropdown.full-width {
      z-index: 2;
      left: 0;
      right: 0;
      height: 100vh;
      padding-top: 50px;
      border-top: 3px solid #a1966e; }
      .mobile-nav .dropdown.full-width .menu-back-cover {
        width: 100%;
        z-index: 10;
        position: absolute;
        display: none;
        height: 50px;
        left: 0;
        right: 0;
        padding-right: 15px;
        top: 1px;
        border-top: 0; }
        .mobile-nav .dropdown.full-width .menu-back-cover a {
          margin: 0;
          color: #a1966e;
          line-height: 22px;
          width: 100%;
          padding: 14px 0; }
          .mobile-nav .dropdown.full-width .menu-back-cover a .glyphicon {
            color: #3f515c;
            margin: 0 5px 0 0; }
      .mobile-nav .dropdown.full-width li {
        display: flex;
        width: 100%;
        border-top: 1px solid #e5e9eb;
        border-bottom: 1px solid #e5e9eb;
        margin: -1px 0 0 0;
        padding: 0 0 0 30px; }
        .mobile-nav .dropdown.full-width li .button-cover {
          padding: 9px 0;
          position: relative; }
        .mobile-nav .dropdown.full-width li a {
          line-height: 24px;
          display: block;
          float: left;
          margin: 0;
          height: auto;
          width: calc(100% - 69px);
          padding: 13px 10px 11px 0; }
        .mobile-nav .dropdown.full-width li.empty {
          padding: 0 30px;
          height: auto;
          border: 0;
          margin: 0; }
        .mobile-nav .dropdown.full-width li .sub-link {
          width: 69px;
          align-self: center;
          margin-left: auto;
          padding: 0 33px 0 32px;
          background: transparent;
          border: 0;
          border-left: 1px solid #e5e9eb;
          position: absolute;
          bottom: 9px;
          top: 9px; }
          .mobile-nav .dropdown.full-width li .sub-link .glyphicon {
            color: #3f515c;
            top: -1px;
            font-size: 9px; }
        .mobile-nav .dropdown.full-width li .sub-menu {
          overflow: hidden;
          position: absolute;
          display: none;
          padding-top: 50px;
          top: 0 !important;
          left: 0;
          right: 0;
          background-color: #fff;
          z-index: 2;
          height: 100vh; }
          .mobile-nav .dropdown.full-width li .sub-menu li .title {
            text-align: center;
            line-height: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a1966e;
            font-weight: bold;
            margin: 0 auto;
            padding: 13px 15px 11px 0; }
      .mobile-nav .dropdown.full-width .search-cover {
        padding: 0 15px;
        margin-top: 20px;
        width: 100%; }
        .mobile-nav .dropdown.full-width .search-cover h4 {
          color: #a1966e;
          text-transform: uppercase;
          font-size: 14px;
          font-weight: bold;
          margin-left: 5px; }
        .mobile-nav .dropdown.full-width .search-cover p {
          color: #3f515c;
          text-transform: uppercase;
          margin-left: 5px; }
        .mobile-nav .dropdown.full-width .search-cover input {
          font-family: 'Open Sans', sans-serif;
          font-style: italic;
          color: #3f515c;
          font-weight: bold;
          width: 100%;
          padding: 0 30px 8px 17px;
          border: 0;
          outline: 0;
          border-bottom: 1px solid #ecedf1; }
          .mobile-nav .dropdown.full-width .search-cover input::-webkit-input-placeholder {
            color: #3f515c; }
          .mobile-nav .dropdown.full-width .search-cover input:-moz-placeholder {
            color: #3f515c; }
          .mobile-nav .dropdown.full-width .search-cover input::-moz-placeholder {
            color: #3f515c; }
          .mobile-nav .dropdown.full-width .search-cover input:-ms-input-placeholder {
            color: #3f515c; }
        .mobile-nav .dropdown.full-width .search-cover .search {
          position: relative; }
        .mobile-nav .dropdown.full-width .search-cover .search-icon {
          background-color: transparent;
          width: 16px;
          height: 16px;
          display: inline-block;
          position: absolute;
          right: 15px;
          bottom: 12px;
          border: 0; }
    .mobile-nav .dropdown.lang-dropdown {
      min-width: 80px;
      background-color: #f6f5f3;
      height: auto; }
      .mobile-nav .dropdown.lang-dropdown ul {
        overflow: hidden;
        padding: 0 30px; }
        .mobile-nav .dropdown.lang-dropdown ul li {
          width: 100%;
          text-align: left; }
          .mobile-nav .dropdown.lang-dropdown ul li a {
            color: #908f8f;
            padding: 13px 0;
            height: auto;
            text-transform: uppercase; }
            .mobile-nav .dropdown.lang-dropdown ul li a:hover {
              color: #a1966e; }
  .mobile-nav .left-side {
    float: left;
    width: 50%;
    margin: 0; }
    .mobile-nav .left-side li a:first-child {
      padding-left: 0; }
  .mobile-nav .right-side {
    float: right;
    width: 50%;
    margin: 0; }
    .mobile-nav .right-side li {
      float: right; }
      .mobile-nav .right-side li a {
        padding-right: 0; }

.logo-cover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 197px;
  top: 25px;
  z-index: 3; }
  .logo-cover > img {
    display: none;
    z-index: 2;
    margin-top: 5px;
    bottom: -25px;
    position: absolute;
    left: 0; }
  .logo-cover .logo {
    margin: 0 auto;
    width: 60px;
    height: 61px;
    display: block; }

.image-caption > p {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  display: block;
  font-size: 12px !important;
  text-align: center;
  font-weight: bold;
  margin-top: 15px; }
  .image-caption > p:before {
    width: 127px;
    height: 2px;
    display: block;
    background-color: #a1966e;
    margin: 21px auto 20px auto;
    margin-bottom: 0; }

#player {
  position: absolute;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0; }
  #player iframe {
    width: 100%;
    height: 180%;
    position: absolute;
    left: 0;
    top: -40%;
    z-index: -1; }

.video-fallback {
  width: 100%;
  height: 100%;
  opacity: 0; }

#video {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  position: relative;
  width: 100%;
  height: 813px;
  overflow: hidden;
  border-bottom: 4px solid #a1966e; }
  #video .loading-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 131px; }
  #video .body {
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    display: none; }
    #video .body.not-visible:before {
      opacity: 0; }
    #video .body:before {
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      right: 0;
      opacity: 1; }
    #video .body .video-text {
      display: inline-block;
      align-self: center;
      z-index: 2;
      position: relative;
      margin: 0 auto;
      padding: 0 30px; }
      #video .body .video-text h1 {
        font-size: 45px;
        margin: 0;
        padding-bottom: 30px;
        border-bottom: 2px solid #fff; }
    #video .body a {
      position: relative;
      background-color: #fff;
      border-radius: 25px;
      color: #3f515c;
      display: table;
      text-align: center;
      min-width: 200px;
      margin: 27px auto 0 auto;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-decoration: none;
      line-height: 19px;
      padding: 15px 30px 13px 20px; }
      #video .body a:hover > span {
        left: 5px;
        color: #a1966e; }
      #video .body a > span {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        position: relative;
        display: inline-block;
        left: 0; }
        #video .body a > span:after {
          content: "\e080";
          font-family: "Glyphicons Halflings";
          display: inline-block;
          font-size: 8px;
          position: absolute;
          right: -10px;
          top: 50%;
          transform: translateY(-50%);
          margin-top: -7px;
          width: 6px;
          height: 7px; }

.header-cover {
  position: relative;
  padding-top: calc(31.25% - 20px); }
  .header-cover .loading-box {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 110px;
    height: 60px;
    display: none; }
    .header-cover .loading-box #loading {
      margin: 0; }

#header-image {
  width: 100%;
  top: 0;
  position: absolute;
  height: calc(100% + 20px);
  background: url("../img/pictures/header-img-1.png") no-repeat center;
  background-size: cover; }
  #header-image.header-1 {
    background-image: url("../img/pictures/header-img-1.jpg"); }
  #header-image.header-2 {
    background-image: url("../img/pictures/header-img-2.png"); }
  #header-image.header-3 {
    background-image: url("../img/pictures/header-img-3.png"); }
  #header-image.header-4 {
    background-image: url("../img/pictures/header-img-4.png"); }
  #header-image.header-5 {
    background-image: url("../img/pictures/header-img-5.png"); }
  #header-image.header-6 {
    background-image: url("../img/pictures/header-img-6.png"); }
  #header-image.header-7 {
    background-image: url("../img/pictures/header-img-7.png"); }
  #header-image.header-8 {
    background-image: url("../img/pictures/header-img-8.png"); }
  #header-image.header-9 {
    background-image: url("../img/pictures/header-img-9.png"); }
  #header-image.header-10 {
    background-image: url("../img/pictures/header-img-10.png"); }
  #header-image .shadow {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 33%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%; }

footer {
  background-color: #fff; }
  footer .gold-line {
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    width: 100%;
    height: 4px;
    background-color: #a1966e;
    margin: 0 auto; }
    footer .gold-line.grow {
      width: 100% !important; }
  footer .inner-container {
    max-width: 1210px; }
  footer .footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 23px 0 22px 0;
    overflow: hidden;
    margin: 0 30px; }
  footer .divider {
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    background-color: #d8e0e5;
    height: 1px;
    margin: 0 auto;
    width: 100%;
    max-width: 1150px; }
    footer .divider.grow {
      width: 100% !important; }
  footer .footer-bottom {
    overflow: hidden;
    padding: 30px 0;
    margin: 0 30px; }
    footer .footer-bottom p {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: #808e96;
      text-align: center; }
  footer nav {
    margin: 8px 0 10px 0; }
    footer nav ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      overflow: hidden;
      padding: 0;
      margin: 0;
      width: 100%; }
      footer nav ul li {
        float: left;
        flex-grow: 1;
        text-align: center; }
        footer nav ul li a {
          -webkit-transition: all 0.2s;
          -o-transition: all 0.2s;
          -moz-transition: all 0.2s;
          transition: all 0.2s;
          color: #3f515c;
          text-transform: uppercase;
          font-weight: bold;
          letter-spacing: 0.5px;
          text-decoration: none;
          padding-bottom: 6px;
          margin: 0 5px;
          font-size: 14px; }
          footer nav ul li a img {
            height: 11px;
            position: relative;
            top: -1px; }
          footer nav ul li a:hover, footer nav ul li a:focus {
            text-decoration: none;
            color: #a1966e; }
  footer .contacts {
    font-family: GillSansNova-Medium;
    border: 1px solid #393a3b;
    text-transform: uppercase;
    color: #3f515c;
    text-decoration: none;
    width: 121px;
    height: 32px;
    float: right;
    border-radius: 15px;
    text-align: center;
    line-height: 32px;
    font-size: 13px;
    letter-spacing: 1.5px; }
    footer .contacts:hover {
      border-color: #a1966e;
      color: #a1966e; }
  footer .left {
    order: 1;
    flex: 0 0 260px;
    float: left;
    max-width: 260px;
    width: 100%;
    overflow: hidden; }
    footer .left > a {
      margin-right: 10px;
      text-decoration: none; }
      footer .left > a:last-child {
        margin-right: 0; }
      footer .left > a > img {
        width: 33px;
        height: 34px; }
  footer .middle {
    order: 2;
    flex: 1;
    float: left;
    max-width: 660px;
    width: 100%;
    overflow: hidden; }
  footer .right {
    order: 3;
    flex: 0 0 260px;
    float: right;
    max-width: 260px;
    width: 100%;
    overflow: hidden; }

.custom-file-link {
  font-family: GillSansNova-Medium;
  text-decoration: none !important;
  color: #a1966e !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  padding: 10px 0 6px 40px;
  min-height: 26px;
  line-height: 1.2;
  margin-bottom: 10px;
  display: inline-block; }
  .custom-file-link:hover {
    text-decoration: underline !important; }
  .custom-file-link.doc.gold, .custom-file-link.docx.gold {
    background: url("../img/svg/files/doc-gold.svg") no-repeat left center;
    background-size: 28px 29px; }
  .custom-file-link.doc.dark, .custom-file-link.docx.dark {
    background: url("../img/svg/files/doc-dark.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #3f515c !important; }
  .custom-file-link.doc.white, .custom-file-link.docx.white {
    background: url("../img/svg/files/doc-gold-white.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #fff !important; }
  .custom-file-link.xlsx.gold, .custom-file-link.xls.gold {
    background: url("../img/svg/files/xls-gold.svg") no-repeat left center;
    background-size: 28px 29px; }
  .custom-file-link.xlsx.dark, .custom-file-link.xls.dark {
    background: url("../img/svg/files/xls-dark.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #3f515c !important; }
  .custom-file-link.xlsx.white, .custom-file-link.xls.white {
    background: url("../img/svg/files/xls-gold-white.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #fff !important; }
  .custom-file-link.pptx.gold, .custom-file-link.ppt.gold {
    background: url("../img/svg/files/ppt-gold.svg") no-repeat left center;
    background-size: 28px 29px; }
  .custom-file-link.pptx.dark, .custom-file-link.ppt.dark {
    background: url("../img/svg/files/ppt-dark.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #3f515c !important; }
  .custom-file-link.pptx.white, .custom-file-link.ppt.white {
    background: url("../img/svg/files/ppt-gold-white.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #fff !important; }
  .custom-file-link.pdf.gold {
    background: url("../img/svg/files/pdf-gold.svg") no-repeat left center;
    background-size: 28px 29px; }
  .custom-file-link.pdf.dark {
    background: url("../img/svg/files/pdf-dark.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #3f515c !important; }
  .custom-file-link.pdf.white {
    background: url("../img/svg/files/pdf-gold-white.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #fff !important; }
  .custom-file-link.other.gold {
    background: url("../img/svg/files/daudzpunkts-gold.svg") no-repeat left center;
    background-size: 28px 29px; }
  .custom-file-link.other.dark {
    background: url("../img/svg/files/daudzpunkts-dark.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #3f515c !important; }
  .custom-file-link.other.white {
    background: url("../img/svg/files/daudzpunkts-white.svg") no-repeat left center;
    background-size: 28px 29px;
    color: #fff !important; }

.section-cover {
  max-width: 100%;
  margin: 0 30px; }

.section-container {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: 60px 30px 60px 30px;
  margin: 0 auto 32px auto;
  max-width: 1180px; }
  .section-container img {
    max-width: 100%;
    object-fit: cover; }
  .section-container a {
    text-decoration: none; }
    .section-container a:hover {
      text-decoration: underline; }
  .section-container .bootstrap-select .dropdown-menu {
    top: 42px !important; }
  .section-container .filter .select-cover .glyphicon {
    top: 15px !important; }
  .section-container .custom-card-link {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    color: #3f515c;
    text-decoration: none !important;
    font-family: GillSansNova-Medium;
    font-size: 13px !important;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 15px;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    font-weight: bold;
    word-break: break-all; }
    .section-container .custom-card-link:hover {
      color: #a1966e;
      margin-left: 5px; }
    .section-container .custom-card-link:after {
      font-family: 'Glyphicons Halflings';
      content: "\e080" !important;
      font-size: 8px;
      margin-left: 10px;
      position: relative;
      top: -1px; }
  .section-container table {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    font-weight: 600;
    margin-bottom: 25px; }
    .section-container table thead tr th, .section-container table thead tr td {
      font-weight: bold;
      color: #000000;
      padding: 10px;
      font-size: 14px;
      border-bottom: 1px solid #dadadd;
      line-height: 22px; }
    .section-container table tbody tr th {
      border-bottom: 1px solid #dadadd;
      padding: 10px;
      font-size: 13px;
      line-height: 22px; }
    .section-container table tbody tr td {
      color: #61757f;
      border-bottom: 1px solid #dadadd;
      padding: 10px;
      font-size: 13px;
      line-height: 22px;
      font-weight: normal !important; }
      .section-container table tbody tr td strong {
        font-weight: bold;
        color: #000000;
        font-size: 14px; }
    .section-container table.flexible-table td {
      width: 1%; }
  .section-container.has-bottom-logo {
    overflow: visible; }
    .section-container.has-bottom-logo:after {
      content: '';
      width: 60px;
      height: 62px;
      position: absolute;
      bottom: -30px;
      left: 50%;
      background-image: url("../img/svg/logo.svg");
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      background-repeat: no-repeat;
      background-size: 59px 60px; }
  .section-container .owl-caption {
    display: none;
    line-height: 24px; }
    .section-container .owl-caption.active {
      display: block; }
  .section-container h1 {
    font-family: GillSansNova-Medium;
    color: #3f515c;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 40px; }
  .section-container h2 {
    font-family: GillSansNova-Medium;
    font-size: 28px;
    text-transform: uppercase;
    color: #3f515c;
    text-align: center;
    margin: 0; }
  .section-container h3 {
    font-family: GillSansNova-Medium;
    color: #3f515c; }
  .section-container.first-block {
    top: -32px;
    margin-bottom: 0; }
  .section-container .line {
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    width: 127px;
    height: 2px;
    display: block;
    background-color: #a1966e;
    margin: 21px auto 20px auto; }
    .section-container .line.grow {
      width: 127px !important; }
  .section-container .heading-paragraph {
    font-family: 'Open Sans', sans-serif;
    margin: 0 auto;
    font-size: 15px;
    color: #000000;
    line-height: 25px;
    text-align: center; }
  .section-container .pagination {
    display: table;
    margin: 30px auto 5px auto; }
    .section-container .pagination li {
      padding: 0;
      margin: 0; }
      .section-container .pagination li:before {
        content: none; }
      .section-container .pagination li a {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        font-family: GillSansNova-Medium;
        border: 0;
        background-color: transparent !important;
        color: #3f515c !important;
        font-size: 16px;
        z-index: 1;
        border-radius: 0;
        text-decoration: none; }
        .section-container .pagination li a:hover {
          background-color: transparent;
          color: #a1966e !important; }
      .section-container .pagination li.active a {
        border: 1px solid #cdcdcd; }
  .section-container .result {
    flex: 1;
    padding-left: 50px;
    border-left: 1px solid #ecedf1; }
    .section-container .result div {
      font-family: 'Open Sans', sans-serif;
      display: none;
      color: #3f515c;
      font-size: 15px;
      line-height: 24px;
      margin-top: -4px; }
      .section-container .result div .read-more {
        -webkit-transition: all 0.1s;
        -o-transition: all 0.1s;
        -moz-transition: all 0.1s;
        transition: all 0.1s;
        font-family: GillSansNova-Medium;
        font-size: 13px;
        display: block;
        color: #000000;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold; }
        .section-container .result div .read-more .glyphicon-chevron-right {
          font-size: 8px;
          top: -1px;
          margin-left: 10px; }
    .section-container .result .active {
      display: block; }
  .section-container .small-paragraph {
    font-family: 'Open Sans', sans-serif;
    max-width: 632px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px; }
    .section-container .small-paragraph a {
      text-decoration: underline;
      color: #000000; }
  .section-container .collapse-panel .panel-title {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: GillSansNova-Medium;
    letter-spacing: 1px;
    min-height: 80px;
    padding: 28px 30px 28px 30px;
    border: 1px solid #c8c2ac;
    background-color: #e7e2d1;
    color: #a1966e;
    text-align: center;
    text-transform: uppercase;
    font-size: 17px;
    cursor: pointer;
    margin-top: -1px; }
    .section-container .collapse-panel .panel-title:hover {
      background-color: #a1966e;
      color: #fff;
      border-color: #a1966e; }
      .section-container .collapse-panel .panel-title:hover .glyphicon {
        color: #c8c2ac; }
    .section-container .collapse-panel .panel-title.active {
      background-color: #fff;
      border-bottom: 0; }
      .section-container .collapse-panel .panel-title.active:hover {
        color: #a1966e; }
        .section-container .collapse-panel .panel-title.active:hover .glyphicon {
          color: #a1966e; }
    .section-container .collapse-panel .panel-title .glyphicon {
      font-size: 9px;
      top: -1px;
      margin-left: 25px; }
  .section-container .collapse-panel .panel-body {
    position: relative;
    padding: 10px;
    display: none;
    border: 1px solid #c8c2ac;
    border-top: 0; }
    .section-container .collapse-panel .panel-body img {
      background-size: cover !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      max-width: 100%;
      margin: 0 auto;
      display: block; }
    .section-container .collapse-panel .panel-body .row, .section-container .collapse-panel .panel-body .inner-container {
      opacity: 0;
      top: 20px;
      position: relative; }
    .section-container .collapse-panel .panel-body .card-info {
      font-family: 'Open Sans', sans-serif;
      color: #000000;
      font-size: 15px;
      margin: 39px 0;
      line-height: 24px; }
    .section-container .collapse-panel .panel-body .pros {
      padding: 0;
      list-style: none; }
      .section-container .collapse-panel .panel-body .pros li {
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        margin-bottom: 15px;
        position: relative;
        padding-left: 50px;
        line-height: 24px;
        color: #000000; }
        .section-container .collapse-panel .panel-body .pros li:before {
          content: '';
          width: 14px;
          height: 2px;
          display: block;
          background-color: #a1966e;
          position: absolute;
          left: 0;
          margin-top: 12px; }
  .section-container .share {
    max-width: 870px;
    margin: 55px auto 0 auto;
    padding: 25px 0;
    text-align: center; }
    .section-container .share hr {
      margin: 25px auto !important; }
      .section-container .share hr:first-child {
        margin-top: 0 !important; }
      .section-container .share hr:last-child {
        margin-bottom: 0 !important; }
    .section-container .share h3 {
      font-family: GillSansNova-Medium;
      font-size: 20px;
      color: #3f515c;
      text-transform: uppercase;
      margin: 0; }
    .section-container .share .buttons {
      margin-top: 15px; }
      .section-container .share .buttons a {
        padding: 0 25px;
        text-decoration: none;
        position: relative; }
        .section-container .share .buttons a > img {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          margin-left: auto;
          margin-right: auto; }
  .section-container .follownsignup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    max-width: 870px;
    margin: 60px auto 0 auto; }
    .section-container .follownsignup .box {
      flex: 1;
      text-align: center;
      padding: 0 30px; }
      .section-container .follownsignup .box h3 {
        font-family: GillSansNova-Medium;
        font-size: 20px;
        color: #3f515c;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0 0 20px 0; }
      .section-container .follownsignup .box p {
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        color: #000000;
        line-height: 24px;
        margin-top: 15px; }
      .section-container .follownsignup .box .sign-up {
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        color: #000000;
        font-family: GillSansNova-Medium;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        font-size: 13px;
        padding-top: 10px;
        display: table;
        margin: 0 auto;
        left: 0;
        position: relative; }
        .section-container .follownsignup .box .sign-up:hover {
          color: #a1966e;
          left: 5px;
          position: relative; }
        .section-container .follownsignup .box .sign-up .glyphicon {
          font-size: 8px;
          position: relative;
          top: -1px;
          margin-left: 5px; }
    .section-container .follownsignup .divider {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-wrap: wrap;
      flex: 1;
      max-width: 1px; }
      .section-container .follownsignup .divider .line {
        -webkit-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        align-self: center;
        width: 1px;
        height: 0;
        background-color: #a1966e; }
        .section-container .follownsignup .divider .line.grow {
          height: 100% !important; }
    .section-container .follownsignup .link {
      text-decoration: none;
      margin-right: 10px; }
      .section-container .follownsignup .link:last-child {
        margin-right: 0; }
      .section-container .follownsignup .link > img {
        width: 33px;
        height: 34px;
        display: inline-block !important; }
  .section-container small {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    display: block;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px; }
    .section-container small b {
      margin: 0 !important; }
    .section-container small:last-child {
      margin-bottom: 0; }
  .section-container blockquote {
    display: table;
    max-width: 650px;
    margin: 45px auto 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    text-align: justify;
    font-style: italic;
    padding: 0 25px;
    line-height: 24px;
    border: 0;
    position: relative; }
    .section-container blockquote .text {
      overflow: hidden;
      display: block; }
      .section-container blockquote .text:before, .section-container blockquote .text:after {
        font-family: "Georgia", Times, serif;
        font-size: 28px;
        font-weight: bold;
        font-style: italic;
        line-height: 5px;
        position: absolute; }
      .section-container blockquote .text:before {
        content: "“";
        left: 0;
        top: 0; }
      .section-container blockquote .text:after {
        content: "”";
        right: 5px;
        margin-top: 36px; }
    .section-container blockquote cite {
      font-family: 'Open Sans', sans-serif;
      width: 100%;
      display: block;
      font-size: 12px;
      text-align: center;
      margin-top: 10px;
      font-style: normal;
      font-weight: bold; }
      .section-container blockquote cite.grow:before {
        width: 127px !important; }
      .section-container blockquote cite:before {
        -webkit-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        content: '';
        width: 127px;
        height: 2px;
        display: block;
        background-color: #a1966e;
        margin: 20px auto 15px auto; }
  .section-container ul {
    overflow: hidden;
    padding: 5px 30px 15px 30px;
    list-style: none;
    margin: 0; }
    .section-container ul > li {
      position: relative;
      text-align: left;
      padding-left: 30px;
      margin-bottom: 15px;
      font-size: 15px; }
      .section-container ul > li:before {
        content: '';
        width: 14px;
        height: 2px;
        display: block;
        background-color: #a1966e;
        position: absolute;
        left: 0;
        margin-top: 11px; }
      .section-container ul > li:last-child {
        margin-bottom: 0; }

.bib-form {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  color: #414141; }
  .bib-form .logo-icon {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }
  .bib-form h2 {
    text-align: left;
    margin-bottom: 25px; }
  .bib-form .sub-title {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-style: italic;
    font-size: 15px;
    color: #414141;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin: 0 0 0 7px; }
    .bib-form .sub-title:before, .bib-form .sub-title:after {
      content: '';
      width: 4px;
      height: 2px;
      background-color: #d6d2c4;
      display: block;
      position: absolute;
      opacity: 0; }
    .bib-form .sub-title:before {
      left: 0;
      top: 11px; }
    .bib-form .sub-title:after {
      bottom: 8px;
      right: 0; }
  .bib-form [type="submit"] {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    background-color: transparent;
    border: 0;
    color: #3f515c;
    font-family: GillSansNova-Medium;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-size: 13px;
    margin: 17px auto 25px auto;
    display: block;
    outline: 0;
    position: relative;
    left: 0; }
    .bib-form [type="submit"]:hover, .bib-form [type="submit"]:active {
      background-color: transparent;
      outline: 0;
      box-shadow: none;
      position: relative;
      left: 5px;
      color: #a1966e; }
    .bib-form [type="submit"] .glyphicon {
      font-size: 8px;
      top: -1px;
      margin-left: 7px; }
  .bib-form .select-circle {
    padding: 30px 0 35px 24px; }
    .bib-form .select-circle .select {
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px; }
      .bib-form .select-circle .select input {
        display: none; }
      .bib-form .select-circle .select label {
        width: 14px;
        height: 14px;
        background-color: #fff;
        border: 3px solid #fff;
        border-radius: 20px;
        box-shadow: 0 0 0 1px #cdcdcd;
        margin: 1px;
        cursor: pointer;
        float: left;
        margin-top: 5px; }
      .bib-form .select-circle .select input[type="radio"]:checked + label {
        background-color: #a1966e; }
      .bib-form .select-circle .select p {
        cursor: pointer; }
      .bib-form .select-circle .select .text-cover {
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        float: left;
        margin-left: 18px;
        max-width: calc(100% - 46px); }
        .bib-form .select-circle .select .text-cover .title {
          text-transform: uppercase;
          color: #3f515c;
          font-size: 16px;
          font-weight: bold;
          margin-bottom: 0;
          letter-spacing: 1px; }
        .bib-form .select-circle .select .text-cover .text {
          font-family: 'Open Sans', sans-serif;
          font-size: 15px;
          color: #414141;
          margin-top: 2px; }
        .bib-form .select-circle .select .text-cover h4 {
          font-family: GillSansNova-Medium;
          margin-top: -5px;
          text-transform: uppercase;
          font-weight: normal;
          color: #3f515c;
          font-size: 17px;
          margin-bottom: 0;
          letter-spacing: 1px; }
      .bib-form .select-circle .select.has-error label {
        box-shadow: 0 0 0 1px #ff0000; }
  .bib-form .select-cube {
    padding: 0 0 55px 0;
    padding-left: 6px; }
    .bib-form .select-cube ul {
      overflow: hidden;
      list-style: none;
      padding: 0 0 0 18px; }
      .bib-form .select-cube ul li {
        width: 50%;
        float: left;
        padding-right: 20px;
        margin: 0;
        padding-left: 0; }
        .bib-form .select-cube ul li:before {
          content: none; }
    .bib-form .select-cube .select {
      margin-bottom: 4px; }
      .bib-form .select-cube .select label {
        border: 1px solid #cecece;
        width: 17px;
        height: 17px;
        display: inline-block;
        vertical-align: middle;
        margin: 6px 5px 0 0;
        background: url("../img/svg/checkbox-checked.svg");
        background-size: 0 0; }
      .bib-form .select-cube .select input[type="checkbox"] {
        display: none; }
        .bib-form .select-cube .select input[type="checkbox"]:checked + label {
          border: 0;
          width: 20px;
          margin-right: 2px;
          background-size: 100% 100%; }
      .bib-form .select-cube .select p {
        display: inline-block;
        vertical-align: middle;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        margin: 0 0 0 7px;
        color: #414141;
        cursor: pointer;
        max-width: calc(100% - 52px);
        position: relative;
        top: 2px; }
      .bib-form .select-cube .select.has-error label {
        border-color: #ff0000; }
  .bib-form .terms-li {
    width: 100% !important; }
  .bib-form .terms {
    max-width: 690px;
    margin: 0 auto;
    overflow: hidden; }
    .bib-form .terms label {
      border: 1px solid #cecece;
      width: 17px;
      height: 18px;
      display: block;
      float: left;
      margin: 6px 30px 0 0;
      cursor: pointer; }
    .bib-form .terms input[type="checkbox"] {
      display: none; }
      .bib-form .terms input[type="checkbox"]:checked + label {
        border: 0;
        width: 21px;
        margin-right: 26px;
        background: url("../img/svg/checkbox-checked.svg"); }
    .bib-form .terms p {
      overflow: hidden;
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      line-height: 28px;
      cursor: pointer; }
    .bib-form .terms.has-error label {
      border-color: #ff0000; }
  .bib-form .inputs {
    margin: 30px -10px 20px -10px; }
    .bib-form .inputs .col-md-6, .bib-form .inputs .col-md-12 {
      padding: 0 10px; }
  .bib-form .select-cover {
    margin-bottom: 21px; }
  .bib-form .input-cover {
    position: relative;
    margin-bottom: 21px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px; }
    .bib-form .input-cover.has-error {
      margin-bottom: 8px; }
    .bib-form .input-cover label {
      position: absolute;
      top: 11px;
      left: 15px;
      cursor: text;
      margin: 0;
      padding: 0 10px;
      font-weight: normal;
      background-color: #fff;
      transition: all .2s ease;
      -webkit-transition: all .2s ease; }
      .bib-form .input-cover label .colored {
        color: #a1966e; }
    .bib-form .input-cover input {
      padding: 0 25px;
      height: 40px; }
      .bib-form .input-cover input:-webkit-autofill, .bib-form .input-cover input:-webkit-autofill:hover, .bib-form .input-cover input:-webkit-autofill:active, .bib-form .input-cover input:-webkit-autofill:focus {
        -webkit-text-fill-color: #414141;
        -webkit-box-shadow: 0 0 0 40px white inset; }
    .bib-form .input-cover textarea {
      padding: 10px 25px;
      resize: vertical; }
    .bib-form .input-cover input, .bib-form .input-cover textarea {
      width: 100%;
      outline: 0;
      border: 1px solid #cdcdcd; }
      .bib-form .input-cover input:focus ~ label, .bib-form .input-cover input.has-value ~ label, .bib-form .input-cover textarea:focus ~ label, .bib-form .input-cover textarea.has-value ~ label {
        top: -10px;
        color: #a1966e; }
    .bib-form .input-cover .error {
      display: none;
      text-align: left;
      margin: 0;
      padding-left: 25px;
      color: #ff0000; }
    .bib-form .input-cover.has-error input, .bib-form .input-cover.has-error textarea, .bib-form .input-cover.has-error label {
      border-color: #ff0000; }
    .bib-form .input-cover.has-error .error {
      display: block; }
  .bib-form .select-cover {
    position: relative; }
    .bib-form .select-cover .bootstrap-select {
      width: 100% !important; }
      .bib-form .select-cover .bootstrap-select .dropdown-toggle {
        outline: 0 !important;
        padding-left: 25px;
        margin: 0;
        height: 40px;
        color: #414141;
        font-family: 'Open Sans', sans-serif;
        font-style: italic;
        text-transform: none;
        background-color: transparent;
        border-radius: 0;
        border: 1px solid #cdcdcd;
        box-shadow: none; }
        .bib-form .select-cover .bootstrap-select .dropdown-toggle:hover, .bib-form .select-cover .bootstrap-select .dropdown-toggle:focus {
          background-color: transparent; }
        .bib-form .select-cover .bootstrap-select .dropdown-toggle .filter-option {
          text-overflow: ellipsis;
          font-family: Georgia, Times, "Times New Roman", serif; }
        .bib-form .select-cover .bootstrap-select .dropdown-toggle .caret {
          display: none; }
      .bib-form .select-cover .bootstrap-select .dropdown-menu {
        border-radius: 0;
        padding: 3px 0; }
        .bib-form .select-cover .bootstrap-select .dropdown-menu li a {
          background-color: transparent;
          outline: 0;
          padding-left: 25px; }
          .bib-form .select-cover .bootstrap-select .dropdown-menu li a:hover {
            color: #a1966e; }
    .bib-form .select-cover .glyphicon {
      position: absolute;
      top: 15px;
      right: 12px;
      font-size: 10px; }
  .bib-form .error-main {
    padding-bottom: 6px;
    margin-bottom: 20px;
    color: #ff0000;
    border-bottom: 2px solid currentColor; }

.bootstrap-select.btn-group .dropdown-menu {
  max-height: 193px !important; }

.bootstrap-select.btn-group .dropdown-menu li {
  padding-left: 0;
  margin: 0; }
  .bootstrap-select.btn-group .dropdown-menu li:before {
    content: none; }

.form-success {
  display: none; }
  .form-success a {
    color: #a1966e; }

.attachment-description {
  padding-left: 40px;
  margin-top: 10px;
  width: 100%; }

#yt_video {
  width: 100%;
  height: 392px; }

.embed_video {
  position: relative;
  overflow: hidden;
  max-height: 397px;
  max-width: 697px;
  margin: 0 auto; }
  .embed_video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.85); }
  .embed_video button {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: transparent;
    border: 0;
    width: 68px;
    height: 56px; }
    .embed_video button img {
      width: 56px !important;
      height: 56px !important; }
  .embed_video.not-visible:before {
    content: none; }
  .embed_video.not-visible button {
    display: none; }

.mouseout-cover {
  max-width: 700px;
  position: relative;
  margin: 0 auto; }
  .mouseout-cover .line {
    margin-bottom: 10px; }

.carousel-cover {
  position: relative;
  margin: 25px auto 15px auto; }
  .carousel-cover .arrow {
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 2;
    font-size: 9px;
    color: #fff;
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0;
    display: table; }

.owl-carousel {
  margin: 0 auto; }
  .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-left: -33px; }
  .owl-carousel .item {
    max-width: 100%;
    max-height: 390px;
    height: 100%; }
    .owl-carousel .item > img {
      object-fit: cover; }
  .owl-carousel .owl-item img {
    height: 100%; }
  .owl-carousel .owl-item.active {
    max-width: 630px; }

.carousel-hover-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: #a1966e;
  display: none;
  text-align: center;
  z-index: 2;
  cursor: pointer; }
  .carousel-hover-btn.visible {
    display: block; }
  .carousel-hover-btn .glyphicon {
    color: #fff;
    font-size: 8px;
    margin: 0 auto;
    display: block;
    margin-top: 20px; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  width: 100%;
  margin: auto; }
  .tabs ul {
    flex: 1;
    text-align: right; }
    .tabs ul:first-child {
      padding: 0 50px 0 0; }
    .tabs ul li {
      list-style-type: none;
      text-align: right;
      margin-bottom: 10px; }
      .tabs ul li:before {
        width: 0; }
      .tabs ul li a {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        width: 100%;
        text-align: right;
        color: #000 !important;
        font-family: GillSansNova-Medium;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none !important;
        font-size: 13px;
        padding-top: 5px;
        display: table;
        margin: 0 auto !important; }
        .tabs ul li a:hover {
          color: #a1966e !important; }
        .tabs ul li a:after {
          content: none !important; }
        .tabs ul li a.active {
          color: #a1966e !important; }
          .tabs ul li a.active:after {
            font-family: 'Glyphicons Halflings';
            content: "\e080" !important;
            font-size: 9px;
            top: 0;
            position: relative;
            margin-left: 15px !important; }
      .tabs ul li .item {
        padding: 0 30px;
        border: 1px solid #c8c2ac;
        border-top: 0; }
        .tabs ul li .item a {
          text-transform: initial;
          font-size: 15px;
          line-height: 25px;
          font-family: 'Open Sans', sans-serif;
          display: block;
          padding: 0;
          color: #a1966e;
          letter-spacing: normal;
          word-break: break-all; }
      .tabs ul li .mobile-active {
        background-color: #fff;
        border-bottom: 0; }
  .tabs .divider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    max-width: 1px; }
    .tabs .divider .tab-line {
      -webkit-transition: all 0.7s ease-in-out;
      -o-transition: all 0.7s ease-in-out;
      -moz-transition: all 0.7s ease-in-out;
      transition: all 0.7s ease-in-out;
      align-self: center;
      width: 1px;
      height: 100%;
      background-color: #ecedf1; }
      .tabs .divider .tab-line.grow {
        height: 100% !important; }
  .tabs .tabs-info {
    flex: 1;
    padding-left: 50px; }
    .tabs .tabs-info img {
      max-width: 700px;
      margin-bottom: 5px;
      float: left; }
    .tabs .tabs-info p {
      clear: both;
      text-align: left !important;
      margin: 0 !important;
      opacity: 1; }
      .tabs .tabs-info p a {
        text-transform: initial;
        font-size: 15px;
        line-height: 25px;
        display: block;
        padding: 0;
        margin: 0 !important; }
        .tabs .tabs-info p a:after {
          content: ""; }
        .tabs .tabs-info p a:hover {
          color: #a1966e; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.entry-content {
  max-width: 900px;
  margin: 0 auto; }

.row.columns-3.padding-30 .col-md-4 {
  padding: 0 30px; }

.row.columns-2.padding-30 .col-md-6 {
  padding: 0 30px; }

.row.width-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.row.width-860 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.row.width-820 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.row.width-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.row.width-410 {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.row.columns-6.padding-18 .col-md-6 {
  padding: 0 18px; }

.row.columns-6.padding-18 .col-md-6.first {
  padding-left: 0; }

.row.columns-6.padding-18 .col-md-6.last {
  padding-right: 0; }

@media only screen and (max-width: 991px) {
  .row.columns-6.padding-18 .col-md-6 {
    padding-left: 0;
    padding-right: 0; } }

.col-md-12 {
  padding: 0 !important; }

.hide-form {
  display: none;
  visibility: hidden; }

.recaptcha-padding {
  padding-bottom: 40px; }

#search .search-icon {
  background-color: transparent;
  width: 16px;
  height: 18px;
  display: inline-block;
  position: absolute;
  right: 15px;
  bottom: 10px;
  border: 0;
  padding: 0; }

#search p {
  font-family: 'Open Sans', sans-serif;
  line-height: 24px; }

#supported-projects .collapse-panels {
  margin-top: 30px;
  margin-bottom: 30px; }

#loading {
  margin: 0 auto;
  width: 110px;
  height: 60px;
  position: relative;
  margin: 45px auto 50px auto; }
  #loading .ball {
    width: 12px;
    height: 12px;
    background-color: #a1966e;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 15px;
    animation-iteration-count: infinite;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    animation-duration: 1.3s; }
    #loading .ball:first-child {
      animation-name: first-ball;
      left: 15px; }
    #loading .ball:nth-child(2) {
      left: 1px;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      animation-name: second-ball; }
    #loading .ball:last-child {
      right: 15px;
      animation-name: third-ball; }

.iframe-wrapper {
  border: 0px;
  width: 100%;
  min-height: 350px;
  margin-bottom: 20px;
  margin-top: 20px; }

.btn-blue, .btn-gold {
  box-shadow: none !important;
  background-color: #fff !important;
  border: 2px solid #3f515c !important;
  border-radius: 25px;
  min-height: 52px;
  text-transform: uppercase;
  padding: 15px 20px;
  min-width: 220px;
  font-family: GillSansNova-Medium;
  letter-spacing: 2.5px;
  color: #3f515c !important;
  font-size: 13px;
  display: initial !important;
  outline: none !important;
  text-decoration: none !important;
  white-space: normal; }
  .btn-blue:hover, .btn-gold:hover {
    background-color: #3f515c !important;
    color: #fff !important;
    text-decoration: none; }
  .btn-blue > span, .btn-gold > span {
    display: inline-block;
    position: relative;
    margin-right: 15px; }
    .btn-blue > span:after, .btn-gold > span:after {
      content: "\e080";
      font-family: "Glyphicons Halflings";
      display: inline-block;
      font-size: 8px;
      position: absolute;
      right: -19px;
      top: 50%;
      transform: translateY(-50%);
      margin-top: -3px;
      width: 6px;
      height: 7px; }

.btn-gold {
  border: 2px solid #a1966e !important;
  color: #a1966e !important;
  font-weight: normal;
  padding: 14px 20px;
  letter-spacing: 3px; }
  .btn-gold:hover {
    background-color: #a1966e !important; }
  .btn-gold > span {
    margin-right: 20px; }

@keyframes first-ball {
  0% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  33% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  66% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }

@keyframes second-ball {
  16.5% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  49.5% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  82.5% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }

@keyframes third-ball {
  33% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  66% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  99% {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .mobile-nav .dropdown.full-width {
    height: 1024px; } }

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
  .mobile-nav .dropdown.full-width {
    height: 768px; } }

@media screen and (device-aspect-ratio: 40 / 71) {
  .mobile-nav .dropdown.full-width {
    height: 500px; } }

@media only screen and (max-width: 1440px) {
  #header-image {
    padding-top: 31.25%; } }

@media only screen and (max-width: 1440px) {
  #header-image {
    padding-top: 31.25%; } }

@media only screen and (max-width: 1200px) {
  .main-nav .dropdown.dropdown-business .search-cover {
    padding-right: 0; }
  .main-nav .dropdown.dropdown-burger .search-cover {
    padding-right: 0; } }

@media only screen and (max-width: 1024px) {
  footer .left, footer .right {
    flex: 0 0 125px; }
  .second-cover {
    margin: 0; }
  #header-image {
    padding-top: 31.25%; }
  #video .body .video-text h1 {
    font-size: 36px; } }

@media only screen and (max-width: 1099px) {
  .main-nav {
    display: none; }
  .mobile-nav {
    display: block; }
    .mobile-nav .lang-dropdown {
      min-width: 120px;
      left: 0; } }

@media only screen and (max-width: 991px) {
  .main-nav .dropdown.dropdown-business .search-cover {
    float: left;
    margin-left: -5px; }
  .main-nav .dropdown.dropdown-business .middle ul {
    padding-left: 0; }
    .main-nav .dropdown.dropdown-business .middle ul ul {
      padding-left: 20px; }
  .responsive-table-wrapper {
    overflow: auto; }
  .fixed-column {
    position: absolute !important;
    width: 45% !important;
    display: block;
    border-right: 1px solid #ddd !important;
    background-color: #fff !important;
    overflow: hidden;
    word-wrap: break-word;
    top: auto !important;
    z-index: 1; }
    .fixed-column thead, .fixed-column tbody {
      display: block;
      width: 100%; }
      .fixed-column thead tr, .fixed-column tbody tr {
        display: block;
        width: 100%; }
        .fixed-column thead tr td, .fixed-column thead tr th, .fixed-column tbody tr td, .fixed-column tbody tr th {
          display: block;
          width: 100% !important;
          height: 100%;
          padding: 10px 10px 9px 10px !important; }
  table:not(.fixed-column) {
    width: 55%; }
    table:not(.fixed-column) tr {
      min-width: 200px; }
      table:not(.fixed-column) tr:first-child td, table:not(.fixed-column) tr:first-child th {
        border-top: 0; }
      table:not(.fixed-column) tr td {
        min-width: 200px;
        white-space: nowrap;
        border-top: 1px solid #dadadd; }
        table:not(.fixed-column) tr td:first-child {
          display: none; }
      table:not(.fixed-column) tr th {
        white-space: nowrap; }
        table:not(.fixed-column) tr th:first-child {
          display: none; }
  .section-container ul {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .tabs ul {
    padding-right: 25px !important; }
  .tabs .tabs-info {
    padding-left: 25px !important; } }

@media only screen and (max-width: 960px) {
  #video .body .video-text h1 {
    font-size: 36px; }
  .loading-screen {
    display: none; } }

@media only screen and (max-width: 767px) {
  .tabs {
    display: block; }
    .tabs > ul {
      width: 100%;
      padding: 0 !important;
      border: 0; }
      .tabs > ul > li {
        margin-bottom: 0 !important;
        margin-top: -1px;
        padding-left: 0; }
        .tabs > ul > li:first-child {
          margin-top: 0; }
        .tabs > ul > li > a {
          font-family: GillSansNova-Medium;
          letter-spacing: 1px;
          min-height: 80px;
          padding: 28px 30px 28px 30px !important;
          border: 1px solid #c8c2ac;
          background-color: #e7e2d1;
          color: #a1966e !important;
          text-align: center !important;
          text-transform: uppercase;
          font-size: 17px !important;
          cursor: pointer; }
          .tabs > ul > li > a.active:after {
            content: none !important; }
        .tabs > ul > li .item p {
          padding: 15px 0;
          margin: 0 !important;
          clear: both;
          text-align: left !important; }
        .tabs > ul > li .item img {
          margin-top: 15px !important;
          float: left; }
        .tabs > ul > li .item a {
          text-align: left; }
    .tabs .tabs-info {
      display: none; }
  .header-cover {
    height: 276px; }
  .sticky-note {
    right: 15px !important;
    bottom: 15px;
    left: 15px;
    max-width: 100%;
    z-index: 9999; }
    .sticky-note > img {
      float: none;
      max-width: 100%;
      max-height: 150px;
      margin: 0 auto;
      display: block;
      object-fit: cover;
      width: 100%; }
    .sticky-note .text-box {
      float: none;
      width: auto;
      padding-bottom: 10px; } }

@media only screen and (max-width: 650px) {
  footer .footer-top {
    display: block; }
  footer .middle {
    border-bottom: 1px solid #d8e0e5; }
    footer .middle nav ul {
      flex-direction: column;
      margin-bottom: 27px; }
      footer .middle nav ul li {
        margin-bottom: 7px; }
        footer .middle nav ul li:last-child {
          margin-bottom: 0; }
  footer .left, footer .right {
    width: auto;
    padding-top: 23px; }
  #become-client .box-cover {
    display: block; }
    #become-client .box-cover .box {
      width: 100%;
      border: 0 !important; }
      #become-client .box-cover .box p {
        margin-bottom: 20px; }
      #become-client .box-cover .box .body h3 {
        margin-top: 10px; }
      #become-client .box-cover .box:first-child .body {
        margin-bottom: 40px; }
  .bib-form .sub-title {
    margin-left: 0; }
  .bib-form .select-circle {
    padding-left: 0; }
    .bib-form .select-circle .select .text-cover {
      margin-left: 16px;
      max-width: calc(100% - 32px); }
  .bib-form .select-cube ul {
    padding-left: 0; }
    .bib-form .select-cube ul li {
      width: 100%; }
  .bib-form .select-cube .select {
    margin-bottom: 10px; }
    .bib-form .select-cube .select p {
      margin-left: 15px;
      max-width: calc(100% - 42px); }
  .bib-form .terms input[type="checkbox"]:checked + label {
    margin-right: 10px; }
  .bib-form .terms label {
    margin-right: 15px; }
  #news .follownsignup, #barometer .follownsignup {
    display: block;
    margin: 0; }
    #news .follownsignup .box, #barometer .follownsignup .box {
      overflow: hidden;
      width: 100%;
      padding: 30px; }
      #news .follownsignup .box:last-child, #barometer .follownsignup .box:last-child {
        border: 0;
        border-top: 1px solid #a1966e;
        padding-bottom: 0; }
    #news .follownsignup .divider, #barometer .follownsignup .divider {
      height: 0; }
  .partners-block {
    display: block;
    flex-wrap: initial;
    width: 100%;
    padding: 0;
    margin: 0; }
    .partners-block ul {
      width: 100%;
      padding: 0 !important;
      border-right: 0; }
      .partners-block ul li {
        text-align: left; }
        .partners-block ul li a {
          text-align: left; }
        .partners-block ul li .active {
          margin: 0;
          margin-top: 20px; }
    .partners-block .partners-info {
      width: 100%;
      padding-top: 20px;
      padding-left: 0;
      margin-bottom: 20px; }
      .partners-block .partners-info .item {
        padding: 0;
        margin: 0;
        border: 0; }
        .partners-block .partners-info .item p {
          width: 100%;
          word-break: break-all; } }

@media only screen and (max-width: 425px) {
  .sticky-note > img {
    display: none;
  }
  .section-cover {
    margin: 0 15px; }
  .notification {
    padding: 0 15px; }
    .notification p {
      padding: 0 25px; }
  .mobile-nav {
    padding: 0 15px;
    height: 70px; }
    .mobile-nav .inner-container > ul {
      height: 70px; }
      .mobile-nav .inner-container > ul > li {
        height: 70px; }
        .mobile-nav .inner-container > ul > li > a {
          padding: 26px 0 0 0;
          height: 70px; }
        .mobile-nav .inner-container > ul > li.burger-dropdown > a {
          padding-top: 2px !important;
          height: 70px !important;
          padding-bottom: 0 !important; }
    .mobile-nav .dropdown.full-width li {
      padding-left: 15px; }
      .mobile-nav .dropdown.full-width li .sub-link {
        padding: 0 18px 0 17px; }
    .mobile-nav .logo {
      top: 6px; }
    .mobile-nav .dropdown.lang-dropdown ul {
      padding: 0 15px; }
  .logo-cover {
    width: 59px;
    top: 41px; }
    .logo-cover > img {
      bottom: -25px;
      position: absolute;
      left: -69px; }
  .menu-2 .logo-cover {
    top: 6px; }
  .bib-form .input-cover label {
    left: 6px; }
  .bib-form .input-cover input {
    padding: 0 15px; }
  .bib-form .input-cover textarea {
    padding: 10px 15px; }
  .bib-form .select-cover .bootstrap-select .dropdown-toggle {
    padding-left: 15px; }
  .section-container {
    padding: 60px 15px; }
    .section-container .collapse-panel .panel-body {
      padding: 0 15px; }
    .section-container .collapse-panel .panel-title {
      padding: 28px 15px 28px 15px; }
  #video .body .video-text h1 {
    font-size: 8vw; }
  footer .footer-top {
    margin: 0 15px; }
  footer .footer-bottom {
    margin: 0 15px; }
  footer .left {
    width: 100%;
    max-width: 100%;
    text-align: center; }
  footer .link {
    float: none;
    display: inline-block; }
  footer .right {
    width: 100%;
    max-width: 100%;
    padding-top: 15px; }
  footer .contacts {
    float: none;
    margin: 0 auto;
    display: block; } }

@media only screen and (max-width: 320px) {
  .section-container .collapse-panel .panel-title {
    padding: 28px 5px 28px 5px; }
  .section-container .collapse-panel .panel-title .glyphicon {
    margin: 5px 0 0 0;
    display: block; } }

body.animations-enabled {
  /*
  #contacts {
    h1, h2, h3, p, .col-md-6 {
      opacity: 0;
    }
    hr {
      width: 0;
    }
    .line {
      width: 0;
    }
    #map-big {
      opacity: 0;
    }
  }


  #other-offices {
    h1, h2, h3, p, .map-small {
      opacity: 0;
    }
  }


  #highlights {
    article {
      opacity: 0;

      &:nth-child(even) {
        left: -50px;
      }
      &:nth-child(odd) {
        right: -50px;
      }
    }
    .all-news {
      opacity: 0;
    }
  }

  .follownsignup {
    .divider .line {
      height: 0;
    }
  }

  #services {
    .box-cover {
      opacity: 0;

      article {
        opacity: 0;
        top: 20px;
        position: relative;
      }
      .image {
        .logo-icon {
          opacity: 0;
        }
      }
      .divider .line {
        height: 0;
      }
    }
  }

  #service-nav {
    .box {
      position: relative;
      top: 20px;
      opacity: 0;
    }
  }

  #relationship {
    opacity: 0;

    .body {
      .cta-header, p, .apply-link, .leave-message {
        opacity: 0;
      }
    }
  }

  #our-qualities {
    .box {
      position: relative;
      top: 20px;
      opacity: 0;

      .body .line {
        transition: none;
      }
    }
  }
  */
  /*
  .tabs {
    .divider {
      .tab-line {
        height: 0;
      }
    }
  }
  */
  /*
  #might-interested {
    h4 {
      opacity: 0;
    }
    .box {
      opacity: 0;
      position: relative;
      top: 20px;
    }
    .divider .line {
      height: 0;
    }
  }
  */
  /*
  #supported-projects {
    img, h1, h2, h3, h4, p, img, .custom-card-link {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    blockquote cite:before {
      width: 0;
    }
    .line {
      width: 0;
    }
    .follownsignup .box {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    .collapse-panel {
      position: relative;
      top: 20px;
      opacity: 0;
    }
  }

  #news {
    article, h1, .load-more, .images, .images .image {
      opacity: 0;
    }
    .images .image {
      position: relative;
      top: 20px;
    }
    img {
      opacity: 1;
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    blockquote cite:before {
      width: 0;
    }
    .line {
      width: 0;
    }
    .follownsignup {
      h3, p, img {
        opacity: 1;
      }
      .box {
        opacity: 0;
        top: 20px;
        position: relative;
      }
    }
    article a, .box a {
      opacity: 1;
    }
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }
  }

  #news-archive {
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }
  }


  #search {
    h1, h2, .results-count, .result, .pagination {
      opacity: 0;
    }
    .search-input {
      p, .input-cover {
        opacity: 0;
      }
      .input-cover {
        position: relative;
        top: 20px;
      }
      .border {
        width: 0;
      }
    }
    .result {
      position: relative;
      top: 20px;

      a, p {
        opacity: 1;
      }
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    blockquote cite:before {
      width: 0;
    }
    .line {
      width: 0;
    }
    .follownsignup .box {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }
  }

  #council {
    h2, .box, .teams {
      opacity: 0;
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    img, a, p {
      opacity: 1;
    }
    blockquote cite:before {
      width: 0;
    }
    .line {
      width: 0;
    }
    .follownsignup .box {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }


  #page-404 {
    h1, .small-paragraph {
      opacity: 0;
    }
    a {
      opacity: 1;
    }
    .small-paragraph {
      position: relative;
      top: 20px;
    }
    .search-input {
      p, .input-cover {
        opacity: 0;
      }
      .input-cover {
        position: relative;
        top: 20px;
      }
      .border {
        width: 0;
      }
    }
    blockquote {
      p, cite {
        opacity: 0;
      }
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    blockquote cite:before {
      width: 0;
    }
    .line {
      width: 0;
    }
    .follownsignup .box {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }
  }
  */ }
  @media only screen and (min-width: 991px) {
    body.animations-enabled .section-container table {
      border-collapse: inherit; }
    body.animations-enabled .section-container .collapse-panel .panel-body table {
      border-collapse: inherit; } }
  body.animations-enabled .small-container .line {
    width: 0; }
  body.animations-enabled #contacts hr {
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
    width: 0; }
    body.animations-enabled #contacts hr.grow {
      width: 100%; }
  body.animations-enabled #contacts hr, body.animations-enabled #contacts .line {
    width: 0; }
  body.animations-enabled #search .search-input .border {
    width: 0; }
  body.animations-enabled .section-container hr {
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
    width: 0; }
    body.animations-enabled .section-container hr.grow {
      width: 100%; }
  body.animations-enabled .section-container blockquote cite:before, body.animations-enabled .section-container .line {
    width: 0; }
  body.animations-enabled .section-container .tabs .divider .tab-line {
    width: 1px;
    height: 0; }
  body.animations-enabled .section-container .shareholders-box .text-cover .divider .inner-line {
    height: 0; }
  body.animations-enabled #video .video-text {
    position: relative;
    top: 20px;
    opacity: 0; }
  body.animations-enabled #header-image {
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    opacity: 0; }
  body.animations-enabled .header-cover .loading-box {
    display: block; }
  body.animations-enabled footer .footer-top .left, body.animations-enabled footer .footer-top .right {
    opacity: 0; }
  body.animations-enabled footer .footer-top .middle {
    opacity: 0;
    top: 20px;
    position: relative; }
  body.animations-enabled footer .footer-bottom {
    opacity: 0; }
  body.animations-enabled footer .gold-line, body.animations-enabled footer .divider {
    width: 0; }
  @media only screen and (min-width: 425px) {
    body.animations-enabled #become-client {
      opacity: 0; }
      body.animations-enabled #become-client .box {
        opacity: 0;
        position: relative;
        top: 20px; }
      body.animations-enabled #become-client .divider .line {
        height: 0; } }
  body.animations-enabled #privacy {
    opacity: 0; }
  body.animations-enabled .section-container .bootstrap-select ul, body.animations-enabled .section-container .bootstrap-select li, body.animations-enabled .section-container .bootstrap-select a {
    opacity: 1; }
  body.animations-enabled #become-client-page {
    /*
    h1, h2, button[type="submit"], .heading, .heading-paragraph, .sub-title, .select, .input-cover, .select-cover, .terms, &:after, .article-block {
      opacity: 0;
    }
    hr {
      @include transition(all 1.5s ease-in-out);
      width: 0;

      &.grow {
        width: 100%;
      }
    }
    h4, a, p, li, ul {
      opacity: 1;
    }
    blockquote cite:before {
      width: 0;
    }
    .heading, .input-cover, .terms, .select-cover {
      position: relative;
      top: 20px;
    }
    .line, .border-bottom {
      width: 0;
    }
    .follownsignup .box {
      opacity: 0;
      top: 20px;
      position: relative;
    }
    .collapse-panel .panel-body {
      .filter, .pagination, table tr {
        opacity: 0;
      }
    }
    */ }
    body.animations-enabled #become-client-page:after {
      opacity: 0; }
    body.animations-enabled #become-client-page .border-bottom {
      width: 0; }
    body.animations-enabled #become-client-page.has-bottom-logo:after {
      -webkit-transition: all 1.5s;
      -o-transition: all 1.5s;
      -moz-transition: all 1.5s;
      transition: all 1.5s;
      opacity: 0; }
  body.animations-enabled #about-bank hr {
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
    width: 0; }
    body.animations-enabled #about-bank hr.grow {
      width: 100%; }
  body.animations-enabled #about-bank .history .time-line {
    width: 0;
    border: 0; }
    body.animations-enabled #about-bank .history .time-line .content-wrapper, body.animations-enabled #about-bank .history .time-line .arrow.right {
      opacity: 0; }
  body.animations-enabled #about-bank .history .content .vertical-line .inner-line {
    height: 0; }
  body.animations-enabled #about-bank .history .content .cover {
    opacity: 0;
    position: relative;
    top: 20px; }


/*!
 * justifiedGallery - v4.0.0-alpha
 * http://miromannino.github.io/Justified-Gallery/
 * Copyright (c) 2019 Miro Mannino
 * Licensed under the MIT license.
 */
.justified-gallery {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.justified-gallery > a,
.justified-gallery > div,
.justified-gallery > figure {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  /* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */
  filter: "alpha(opacity=10)";
  opacity: 0.1;
  margin: 0;
  padding: 0;
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > figure > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img,
.justified-gallery > figure > a > img,
.justified-gallery > a > svg,
.justified-gallery > div > svg,
.justified-gallery > figure > svg,
.justified-gallery > a > a > svg,
.justified-gallery > div > a > svg,
.justified-gallery > figure > a > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  border: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
}
.justified-gallery > a > .caption,
.justified-gallery > div > .caption,
.justified-gallery > figure > .caption {
  display: none;
  position: absolute;
  bottom: 0;
  padding: 5px;
  background-color: #000000;
  left: 0;
  right: 0;
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 300;
  font-family: sans-serif;
}
.justified-gallery > a > .caption.caption-visible,
.justified-gallery > div > .caption.caption-visible,
.justified-gallery > figure > .caption.caption-visible {
  display: initial;
  filter: "alpha(opacity=70)";
  opacity: 0.7;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}
.justified-gallery > .jg-entry-visible {
  filter: "alpha(opacity=100)";
  opacity: 1;
  background: none;
}
.justified-gallery > .jg-entry-visible > img,
.justified-gallery > .jg-entry-visible > a > img,
.justified-gallery > .jg-entry-visible > svg,
.justified-gallery > .jg-entry-visible > a > svg {
  filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}
.justified-gallery > .jg-filtered {
  display: none;
}
.justified-gallery > .spinner {
  position: absolute;
  bottom: 0;
  margin-left: -24px;
  padding: 10px 0 10px 0;
  left: 50%;
  filter: "alpha(opacity=100)";
  opacity: 1;
  overflow: initial;
}
.justified-gallery > .spinner > span {
  display: inline-block;
  filter: "alpha(opacity=0)";
  opacity: 0;
  width: 8px;
  height: 8px;
  margin: 0 4px 0 4px;
  background-color: #000;
  border-radius: 6px;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out; 
    -moz-transition: all 0.3s ease-out; 
    -o-transition: all 0.3s ease-out; 
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
        opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
        opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

#bib_widgets {
  position: fixed;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid #e4ded6;
}
#bib_widgets > .widget-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

#bib_widgets .st0 {
  stroke: #978f6b;
  transition: 0.3s all ease-in-out;
}
#bib_widgets svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
}
#bib_widgets .widget-icon:hover .st0,
#bib_widgets .widget-icon.active .st0 {
  stroke: #3f515c;
}

#bib_widgets .widget-content{
  position: absolute;
  top: -1px;
  right: -401px;
  z-index: -1;
  width: 280px;
  background: #ffffff;
  border: 1px solid #e4ded6;
  padding:  20px;
  font-family: GillSansNova-Medium;
  font-weight: 500;
  color: #3f515c;
  transition: 0.3s all ease-in-out;
}
#bib_widgets .widget-content.active{
  right: -1px;
}
#bib_widgets .widget-content a{
  color: #3f515c;
}
#bib_widgets .widget-content a:hover{
  color: #978f6b;
}
#bib_widgets .widget-content h4,
#bib_widgets .widget-content h6{
  margin-bottom: 35px;
  margin-top: 0;
}
#bib_widgets .widget-content p{
  margin-bottom: 5px;
}
#bib_widgets .widget-content p:last-child{
  margin: 0;
}
#bib_widgets .widget-content p.small{
  font-size: 75%;
}
#bib_widgets .widget-content p.gold{
  color: #978f6b;
}
#bib_widgets .widget-close {
    background: #978f6b;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: -1px;
    left: -25px;
    background-image: url(/assets/img/svg/exit-white.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}
.new-gallery-item{
  padding: 5px !important;
  overflow: hidden;
  height: 200px;
  border: 5px solid #fff;
}
.new-gallery-item img {
    width: auto;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.d-none{
  display: none !important;
}
.new-gallery-more {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  font-size: 48px;
  line-height: 200px;
}

img.mfp-img{
  max-width: 1200px;
}

@media (max-width: 767px){
  .new-gallery{
    padding-left: 5px;
    padding-right: 5px;
  }
  .new-gallery-item{
    height: 150px !important;
  }
  .new-gallery-more{
    line-height: 150px;
  }
}