@-webkit-keyframes scroll {
  0% {
    left: -8px;
  }

  33% {
    left: 0px;
  }

  66% {
    left: 0px;
  }

  100% {
    left: -8px;
  }
}

@keyframes scroll {
  0% {
    left: -8px;
  }

  33% {
    left: 0px;
  }

  66% {
    left: 0px;
  }

  100% {
    left: -8px;
  }
}

@-webkit-keyframes fadeInUpTabs {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpTabs {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInSpan {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    visibility: none;
    display: none;
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    visibility: visible;
    display: inline-block;
    opacity: 0.17;
  }
}

@keyframes fadeInSpan {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    visibility: none;
    display: none;
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    visibility: visible;
    display: inline-block;
    opacity: 0.17;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    visibility: none;
    display: none;
    opacity: 0;
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    display: inline-block;
    opacity: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    visibility: none;
    display: none;
    opacity: 0;
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    display: inline-block;
    opacity: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}



html {
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: avenir-next-lt-pro, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Optional, but often used together for better legibility */
  text-rendering: optimizeLegibility; 
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body *::-moz-selection,
body *::selection {
  background: #152555;
  color: #fff;
}

#width-check {
  z-index: 0;
  position: relative;
}

@media screen and (max-width: 800px) {
  #width-check {
    z-index: 1;
  }
}

input,
textarea,
select,
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: 0;
  -webkit-appearance: none;
}

select {
  border: solid 1px #c8c8c8;
  background-color: transparent;
  padding: 0 20px;
  color: #000;
}

select option,
select:focus {
  color: #000;
}

select::-ms-expand {
  display: none;
}

input {
  background-color: transparent;
  border: none;
  padding: 7px 5px;
  border-bottom: solid 1px rgba(37, 57, 101, 0.5);
  font-size: 16px;
  color: #152555;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
}

input:focus {
  border-bottom: solid 1px #be9d67;
}

input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
input::placeholder {
  font-size: 16px;
  color: #152555;
  font-weight: 300;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 1200px) {
  input {
    font-size: 14px;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 1200px) {

  input::-webkit-input-placeholder,
  input:-ms-input-placeholder,
  input::-ms-input-placeholder,
  input::placeholder {
    font-size: 14px;
  }
}

b,
strong {
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.24px;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

h2,
h3,
h4,
h5,
h6,
li,
p,
a,
input,
textarea,
select,
button {
  font-family: avenir-next-lt-pro, sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h1 {
  font-family: castoro, sans-serif;
  font-size: 96px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: #152555;
}

@media screen and (max-width: 1200px) {
  h1 {
    font-family: castoro, sans-serif;
    font-size: 40px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: -0.44px;
  }
}

h2 {
  font-size: 46px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -0.16px;
  color: #152555;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 26px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: -0.1px;
  }
}

h3 {
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #152555;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  h3 {
    font-size: 22px;
    line-height: 1.64;
    letter-spacing: 0.49px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #152555;
}

h4 a {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.17;
  letter-spacing: 0.45px;
  color: #152555;
}

@media screen and (max-width: 1200px) {
  h4 {
    font-size: 20px;
    line-height: 1.27;
  }

  h4 a {
    font-size: 20px;
    line-height: 1.27;
  }
}

h5 {
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: 0.34px;
}

@media screen and (max-width: 1200px) {
  h5 {
    font-size: 15px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 0.3px;
  }
}

h6 {
  font-size: 14px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.8px;
  color: #152555;
}

@media screen and (max-width: 1200px) {
  h6 {
    font-size: 11px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.8px;
  }
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #152555;
  font-weight: 500;
}

body,
p,
li,
a {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 1200px) {

  body,
  p,
  li,
  a {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 0.26px;
  }
}

p.caption {
  line-height: 18px;
  letter-spacing: 0.3px;
  font-size: 14px;
}

body,
p {
  color: #505050;
}

blockquote {
  background-color: #f2f2f2;
  width: 100%;
  margin: 0 0 45px 0;
  padding: 50px 75px 35px 75px;
}

blockquote p {
  color: #152555;
}

blockquote p strong {
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  blockquote {
    padding: 25px 35px 15px 35px;
  }
}

button.btn,
.btn {
  height: 54px;
  padding: 16px 24px;
  background-color: #be9d67;
  gap: 10px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.24px;
  line-height: 1.57;
  text-align: center;
  text-transform: uppercase;

  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

button.btn:hover,
.btn:hover {
  background-color: #fff;
  color: #152555;
}

/* .button-secondary {
  margin: 54px 832px 42px 7px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}
.button-secondary {
  margin: 54px 832px 42px 7px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}
.button-secondary {
  margin: 54px 257px 78px 0;
  padding: 16px 24px;
}
.button-secondary {
  margin: 54px 257px 78px 0;
  padding: 16px 24px;
} */




button.btn i,
.btn i {
  font-size: 18px;
  padding-left: 5px;
  display: inline-block;
  color: #be9d67;
  margin-right: 5px;
}

/* button.btn:hover, .btn:hover {
  border-color: #be9d67 !important;
  opacity: 1; } */

button.btn.inverse,
.btn.inverse {
  color: #152555;
  border-color: #c8c8c8;
}

button.btn.solid-h:hover,
.btn.solid-h:hover {
  background-color: #fff;
  border-color: #fff !important;
  color: #152555;
}

@media screen and (max-width: 1200px) {

  button.btn,
  .btn {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    font-size: 14px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1325px;
}

@media screen and (max-width: 1450px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

.container_i {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width: 1450px) {
  .container_i {
    padding: 0 30px;
  }
}

.container_f {
  margin: 0 40px;
}

.tabs .wrapper .hold {
  display: none;
}

.tabs .wrapper .hold.active {
  display: block;
  -webkit-animation-name: fadeInUpTabs;
  animation-name: fadeInUpTabs;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
}

.expand {
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.24px;
  color: #152555;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 30px;
  display: block;
}

.expand:hover {
  color: #be9d67;
}

.col6 {
  width: 49.4339622642%;
  -ms-flex-preferred-size: 49.4339622642%;
  flex-basis: 49.4339622642%;
  max-width: 655px;
}

@media screen and (max-width: 1200px) {
  .col6 {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col6-f {
  width: 51.6981132075%;
  -ms-flex-preferred-size: 51.6981132075%;
  flex-basis: 51.6981132075%;
  max-width: 685px;
}

@media screen and (max-width: 1450px) {
  .col6-f {
    width: 53.8867924528%;
    -ms-flex-preferred-size: 53.8867924528%;
    flex-basis: 53.8867924528%;
    max-width: 714px;
  }
}

@media screen and (max-width: 1200px) {
  .col6-f {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col7 {
  width: 58.9433962264%;
  -ms-flex-preferred-size: 58.9433962264%;
  flex-basis: 58.9433962264%;
  max-width: 781px;
}

@media screen and (max-width: 1200px) {
  .col7 {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col4 {
  width: 32.6037735849%;
  -ms-flex-preferred-size: 32.6037735849%;
  flex-basis: 32.6037735849%;
  max-width: 432px;
}

@media screen and (max-width: 1200px) {
  .col4 {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.pull1 {
  margin-right: 112px;
}

@media screen and (max-width: 1200px) {
  .pull1 {
    margin-right: 0;
  }
}

.push1 {
  margin-left: 112px;
}

@media screen and (max-width: 1200px) {
  .push1 {
    margin-left: 0;
  }
}

.flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#Recaptcha1,
#Recaptcha3 {
  margin: 0;
  opacity: 0;
  height: 0;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  pointer-events: none;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}

@media screen and (max-width: 450px) {

  #Recaptcha1,
  #Recaptcha3 {
    -webkit-transform: scale(0.77) !important;
    -ms-transform: scale(0.77) !important;
    transform: scale(0.77) !important;
    -webkit-transform-origin: bottom left !important;
    -ms-transform-origin: bottom left !important;
    transform-origin: bottom left !important;
  }
}

#Recaptcha1.show,
#Recaptcha3.show {
  opacity: 1;
  height: 78px;
  width: auto;
  pointer-events: all;
  margin: 20px 0;
}

@media screen and (max-width: 450px) {
  #Recaptcha2 {
    -webkit-transform: scale(0.73) !important;
    -ms-transform: scale(0.73) !important;
    transform: scale(0.73) !important;
    -webkit-transform-origin: bottom left !important;
    -ms-transform-origin: bottom left !important;
    transform-origin: bottom left !important;
  }
}

header {
  height: 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #fff;
}

header .logo {
  /*display: flex;*/
  align-items: center;
  /* width: calc(100% - 940px);
    max-width: calc(100% - 940px);
    -ms-flex-preferred-size: calc(100% - 940px);
    flex-basis: calc(100% - 940px); */
  width: auto;
  max-width: none;
  flex-basis: auto;
  flex-shrink: 0;
  padding: 8.6px 0 7.9px 63px;
  background-color: #fff;
  position: relative;
  z-index: 1111;
}

header .logo img {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .logo img:hover {
  opacity: 0.7;
}

header .logo a {
  position: absolute;
  left: 40px;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

header .logo a.regular {
  opacity: 1;
}

header .logo a.regular img {
  width: auto;
  max-width: none;
  height: 63.5px;
  display: block;
}

header .logo a.icon {
  opacity: 0;
  top: 8px;
}

header .logo a.icon img {
  height: 40px;
}

header nav {
  width: 940px;
  max-width: 940px;
  -ms-flex-preferred-size: 940px;
  flex-basis: 940px;
  background-color: #fff;
  padding: 0 50px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  margin: 0 0 0 auto;
  z-index: 20;
}

header nav>ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
}

header nav>ul>li {
  position: relative;
}

header nav>ul>li:nth-last-child(2) {
  margin-right: 24px;
}

header nav>ul>li>a {
  color: #152555;
  font-size: 16px;
  font-weight: 500;
  line-height: 57px;
  letter-spacing: 0.3px;
  display: block;
  position: relative;
}

/* header nav>ul>li>a:hover {
  opacity: 0.5;
} */

header nav>ul>li>a:after {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #be9d67;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

header nav>ul>li.search a {
  color: #be9d67;
}

header nav>ul>li:hover a:after {
  width: 100%;
}

header nav>ul>li .sub_nav {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 57px;
  left: 0;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 250px;
  z-index: 20;
}

header nav>ul>li .sub_nav li {
  display: block;
}

header nav>ul>li .sub_nav li a {
  position: relative;
  background-color: #152555;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.3px;
  display: block;
  padding: 13px 30px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

header nav>ul>li .sub_nav li a:hover {
  /* color: rgba(255, 255, 255, 0.5); */
  background-color: #be9d67;
}

header nav>ul>li:last-of-type .sub_nav {
  left: unset;
  right: -50px;
}

header nav>ul>li .sub_nav li:last-of-type a {
  border-bottom: 0;
}

header nav>ul>li .sub_nav li.has-submenu>a:after {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 700;
  content: '\f078';
  position: absolute;
  right: 30px;
  top: 15px;
  width: 12px;
  color: #fff;
  font-size: 14px;
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header nav>ul>li .sub_nav li.has-submenu:hover>a:after {
  transform: rotate(0deg);
}

header nav>ul>li .sub_nav li.has-submenu:hover .subsub_nav {
  display: block;
}

header nav>ul>li .sub_nav .subsub_nav {
  display: none;
}

header nav>ul>li .sub_nav .subsub_nav li {
  padding: 13px 30px 13px 45px;
  background: #152555;
}

header nav>ul>li .sub_nav .subsub_nav a {
  padding: 0;
  background: transparent;
  border-bottom: #152555 1px solid;
}

header nav>ul>li:hover .sub_nav {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

header .search_form {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
}

header .search_form input {
  border: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.58px;
  padding: 0 0 0 10px;
}

header .search_form input::-webkit-input-placeholder,
header .search_form input:-ms-input-placeholder,
header .search_form input::-ms-input-placeholder,
header .search_form input::placeholder {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.58px;
  text-transform: uppercase;
}

header .subheader {
  position: absolute;
  bottom: -35px;
  right: 0;
  background-color: #be9d67;
  height: 35px;
  /*width: 380px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 13px;
  color: #fff;
  padding: 8px 24px;
}

header .subheader>div {
  white-space: nowrap;
}

header .subheader .symbol {
  font-weight: 800;
}

header .subheader .ticker {
  background-color: #fff;
  padding: 1px 9px;
  font-weight: 500;
  /*margin-right: 25px;*/
  margin-left: 15px;
  white-space: nowrap;
}

header .subheader .ticker i {
  font-size: 11px;
  position: relative;
  bottom: 2px;
  left: 1px;
}

header .subheader .search_form {
  width: 300px;
  display: none;
  position: absolute;
  left: 0;
  padding-left: 20px;
  background-color: #c8c8c8;
}

header .subheader .search_form input {
  background-color: transparent;
  color: #152555;
  border-left: 2px solid #152555;
}

header .subheader .search_form input::-webkit-input-placeholder,
header .subheader .search_form input:-ms-input-placeholder,
header .subheader .search_form input::-ms-input-placeholder,
header .subheader .search_form input::placeholder {
  color: #152555;
}

header .subheader .search_form.show {
  display: block;
}

header .subheader .search {
  cursor: pointer;
  margin-left: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .subheader .search i {
  font-size: 16px;
}

header .subheader .search:hover {
  color: #be9d67;
}

header .subheader .ticker {
  color: #152555;
}

header .social-mob,
header .search-mob {
  display: none;
}

header.scrolled {
  height: 55px;
  -webkit-box-shadow: 0px -3px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -3px 16px 0px rgba(0, 0, 0, 0.2);
}

header.scrolled .subheader {
  -webkit-transform: translateY(-35px);
  -ms-transform: translateY(-35px);
  transform: translateY(-35px);
}

header.scrolled .logo .regular img {
  height: 43.5px;
}

header.scrolled .logo .icon {
  opacity: 1;
}

header.open nav {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  overflow-y: scroll !important;
  padding-bottom: 250px;
}

header.open .subheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
  opacity: 1;
}

header.open .search-mob {
  position: fixed;
}

header.open .social-mob,
header.open .search-mob {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 1200px) {
  header {
    height: 50px !important;
  }
}

@media screen and (max-width: 1200px) {
  header .logo {
    width: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 8.6px 0 7.9px 20px;
    z-index: 100;
  }

  header .logo:after {
    content: '';
    background-color: #fff;
    width: 100%;
    height: 50px;
    position: absolute;
    right: -99%;
    top: 0;
  }
}

@media screen and (max-width: 1200px) {
  header .logo a {
    left: 20px;
  }
}

@media screen and (max-width: 1200px) {
  header .logo a.regular img {
    height: 33px;
    position: relative;
    z-index: 11;
  }
  header.scrolled .logo a.regular img {
    height: 33px;
  }
}

@media screen and (max-width: 1200px) {
  header nav {
    -webkit-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    transform: translateY(-120%);
    position: fixed;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #152555;
    height: 100vh;
    display: block;
    top: 100px;
    overflow-y: hidden;
    display: block;
    width: 100%;
    bottom: -250px;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    opacity: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    margin-left: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li>a {
    color: #fff;
    padding-left: 55px;
    padding: 15px 0 15px 25px;
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.26px;
    font-weight: 300;
  }

  header nav>ul>li>a.has-submenu:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    content: "\f054";
    display: block;
    color: #fff;
    position: absolute;
    right: 40px;
    top: 17px;
    font-size: 13px;
  }

  header nav>ul>li>a.has-submenu.active:before {
    content: '\f068';
    display: block;
    color: #fff;
    position: absolute;
    right: 40px;
  }

  header nav>ul>li.search {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li>a:after {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li .sub_nav {
    padding: 0;
    position: static;
    background-color: #152555;
    height: auto;
    display: none;
    opacity: 1 !important;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    pointer-events: all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li .sub_nav li {
    display: block;
    margin: 0;
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li .sub_nav li a {
    color: #fff;
    font-size: 14px;
    padding: 15px 0;
    margin: 0 25px;
    font-weight: 300;
    background-color: #152555;
  }
}

@media screen and (max-width: 1200px) {
  header nav>ul>li .sub_nav li:last-of-type {
    border-bottom: 0;
  }
}

@media screen and (max-width: 1200px) {
  header .subheader {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    width: 100%;
    background-color: #152555;
    height: 50px;
    top: 50px;
    bottom: initial;
    color: #fff;
    padding: 18px 25px;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
}

@media screen and (max-width: 1200px) {
  header .subheader .ticker {
    background-color: #152555;
    margin-left: 2px;
    font-weight: 400;
  }
}

@media screen and (max-width: 1200px) {
  header .subheader .search_form {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  header .subheader .search_form.show {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
  header .subheader .search {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  header .social-mob {
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    width: 100%;
    bottom: 0;
    z-index: 25;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 70px;
    padding-top: 20px;
    position: fixed;
    background-color: #152555;
  }

  header .social-mob li {
    margin-right: 12px;
  }

  header .social-mob li:last-of-type {
    margin-right: 0 !important;
  }

  header .social-mob li a {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  header .social-mob li a i {
    font-size: 14px;
  }

  header .social-mob li a:hover {
    border-color: #be9d67;
  }

  header .social-mob li a img {
    max-height: 15px;
  }
}

@media screen and (max-width: 450px) {
  header .social-mob li {
    margin-right: 5px;
  }
}

@media screen and (max-width: 1200px) {
  header .search-mob {
    display: block;
    width: 100%;
    bottom: 0;
    z-index: 25;
    background-color: #152555;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 15px 25px;
  }

  header .search-mob .search {
    color: #fff;
    position: absolute;
    right: 25px;
    bottom: 13px;
  }

  header .search-mob .search i {
    font-size: 16px;
  }

  header .search-mob .search_form {
    display: block;
  }

  header .search-mob .search_form input {
    background-color: #152555;
    color: #fff;
    border-left: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 900;
    width: 100%;
  }

  header .search-mob .search_form input::-webkit-input-placeholder,
  header .search-mob .search_form input:-ms-input-placeholder,
  header .search-mob .search_form input::-ms-input-placeholder,
  header .search-mob .search_form input::placeholder {
    color: #fff;
  }

  header .search-mob .search_form input::-webkit-input-placeholder {
    color: #fff;
  }

  header .search-mob .search_form input:-ms-input-placeholder {
    color: #fff;
  }

  header .search-mob .search_form input::-ms-input-placeholder {
    color: #fff;
  }

  header .search-mob .search_form input::placeholder {
    color: #fff;
  }
}

@media screen and (max-width: 1200px) {
  header.scrolled {
    height: 50px;
  }
}

@media screen and (max-width: 1200px) {
  header.scrolled .subheader {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

@media screen and (max-width: 1200px) {
  header.scrolled .logo .regular {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  header.scrolled .logo .icon {
    opacity: 0;
  }
}

.nav-mob {
  display: none;
  width: 54px;
  position: relative;
  top: 0;
  right: 0;
  position: fixed;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 50px;
  z-index: 1001;
  background-color: #152555;
}

.nav-mob span {
  background-color: #fff;
  display: block;
  width: 24px;
  height: 2px;
  right: 0;
  left: 0;
  margin: auto;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-mob span:nth-of-type(1) {
  top: 20px;
}

.nav-mob span:nth-of-type(2) {
  top: 30px;
}

.nav-mob.open {
  background-color: #152555;
}

.nav-mob.open span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
}

.nav-mob.open span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
}

@media screen and (max-width: 1200px) {
  .nav-mob {
    display: block;
  }

  header nav>ul>li .sub_nav .subsub_nav {
    display: block;
  }

  header nav>ul>li .sub_nav li.has-submenu>a {
    border-bottom: none;
  }

  header nav>ul>li .sub_nav li.has-submenu>a:after {
    -webkit-transform: rotate(0deg);
    right: 15px;
  }

  header nav>ul>li .sub_nav .subsub_nav {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    margin: 0 25px;
  }

  header nav>ul>li .sub_nav .subsub_nav li {
    padding-left: 0px;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin: 0 0 0 20px;
  }

  header nav>ul>li .sub_nav .subsub_nav li a {
    margin-left: 0;
  }
}

footer {
  background-color: #152555;
  padding: 66px 0 29px 0;
  height: 316px;
}

footer .ft-top {
  /*border-bottom: solid 1px rgba(255, 255, 255, 0.5); padding-bottom: 50px; */
  display: flex;
}

footer a:hover {
  opacity: 0.6;
}

footer .social {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  padding: 0;
}

footer .social li {
  margin-right: 14px;
}

footer .social li:last-of-type {
  margin-right: 0;
}

footer .social li a {
  width: 66px;
  height: 66px;
  border: 1px solid #be9d67;
  border-radius: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
}

footer .social li a i {
  font-size: 14px;
}

footer .social li a:hover {
  background-color: #be9d67;
  color: #fff;
  opacity: 1;
}

footer .social li a img {
  height: 16px;
  width: auto;
}

footer nav {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}

footer nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer nav ul li {
  white-space: nowrap;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}

footer nav ul li a {
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.31px;
  font-weight: 300;
}

footer nav ul li a:hover {
  opacity: 0.5;
}

footer nav ul li.top-level>a {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

footer nav ul li .sub_nav {
  display: block;
  padding: 0;
}

footer nav ul li .sub_nav li {
  display: block;
}

footer nav ul li .sub_nav li a {
  line-height: 1.71;
}

footer nav ul li .sub_nav .subsub_nav {
  display: none;
}

@media screen and (max-width: 1200px) {
  footer {
    height: unset;
  }

  footer nav {
    display: none;
  }

  footer .ft-top {
    justify-content: center;
  }

  footer .social {
    flex-basis: 0;
  }
}

@media screen and (max-width: 600px) {
  footer .btm-links {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  footer .btm-links {
    display: block;
    text-align: center;
  }

  footer .social li a {
    width: 56px;
    height: 56px;
  }
}

footer .btm-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.31px;
  color: #FFF;
  margin-top: 70px;
  font-weight: 300;
}

footer .btm-links .copyright a {
  color: #FFF;
  border-left: 1px solid #fff;
  font-weight: 300;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.31px;
}

footer .btm-links .blender a {
  color: #FFF;
  font-weight: 800;
  border-right: 0;
  padding-right: 0;
  margin: 0;
}

footer .btm-links .blender a:hover,
footer .btm-links .copyright a:hover {
  opacity: 0.5;
}

.signup-hold {
  background-image: url(../../../../_resources/banners/home-signup.jpg);
  background-size: cover;
  background-position: center;
  padding: 67px 0 79px 0;
  text-align: center;
}

.signup-hold h4 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 55px;
}

.signup-hold .recaptcha>div {
  margin: 0 auto;
}

.signup-hold .input {
  display: inline-block;
  width: 320px;
  position: relative;
}

.signup-hold .input:first-of-type {
  margin-right: 10px;
}

.signup-hold .input input {
  padding: 10px 15px;
  margin-bottom: 0;
  border-bottom: solid 1px #fff;
  color: #fff;
  width: 100%;
}

.signup-hold .input input::-webkit-input-placeholder,
.signup-hold .input input:-ms-input-placeholder,
.signup-hold .input input::-ms-input-placeholder,
.signup-hold .input input::placeholder {
  opacity: 1;
  color: #fff;
}

.signup-hold input::placeholder,
.signup-hold textarea::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.signup-hold input::-webkit-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.signup-hold input:-ms-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.signup-hold input::-ms-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.signup-hold input,
.signup-hold textarea {
  color: #fff !important;
}

.signup-hold .btn {
  display: block;
  min-width: 200px;
  border: 0;
  text-transform: uppercase;
  margin: 50px auto 0 auto;
}
@media screen and (max-width: 800px) {
  .signup-hold .btn {
    margin: 40px 0;
  }
}

.signup-hold .signup-message {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .signup-hold {
    padding: 80px 0 25px 0;
  }
}

@media screen and (max-width: 1200px) {
  .signup-hold h4 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 800px) {
  .signup-hold h4 {
    text-align: left;
  }
}

@media screen and (max-width: 800px) {
  .signup-hold .input {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

section#stats {
  overflow: hidden;
  border-top: 1px solid #c8c8c8;
}

section#stats .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

/* section#stats .container:before, section#stats .container:after {
      content: '';
      height: 1px;
      width: 100%;
      position: absolute;
      top: 50%;
      display: block;
      background-color: #c8c8c8; } */
section#stats .container:before {
  left: -100%;
}

section#stats .container:after {
  right: -100%;
}

section#stats .container>div {
  position: relative;
  -ms-flex-preferred-size: calc(100%/3);
  flex-basis: calc(100%/3);
  max-width: calc(100%/3);
  width: calc(100%/3);
  height: 236px;
  padding: 95px 0 65px 80px;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}

/* @media screen and (min-width: 800px) { */
  section#stats .container>div::after {
    content: '';
    width: 33px;
    height: 2px;
    background-color: #be9d67;
    position: absolute;
    top: 64px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
/* } */

section#stats .container>div:nth-of-type(3n) {
  border-right: 0;
}

section#stats .container>div:nth-of-type(4),
section#stats .container>div:nth-of-type(5),
section#stats .container>div:nth-of-type(6) {
  border-bottom: 0;
}

section#stats .container>div h2 {
  font-weight: 200;
  position: relative;
}

section#stats .container>div h2:before {
  content: '';
  display: block;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: -25px;
  width: 1px;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
  transition-delay: 0.45s;
  height: 2px;
}

section#stats .container>div h2.visible:before {
  width: 37px;
  background-color: #be9d67;
}

section#stats .container>div p {
  margin: 5px 0 0 0;
}

@media screen and (max-width: 1200px) {
  section#stats .container {
    padding: 0;
  }
}

@media screen and (max-width: 1200px) {

  section#stats .container:before,
  section#stats .container:after {
    display: none;
  }
}

@media screen and (max-width: 1450px) {
  section#stats .container:before {
    left: calc(-100% + 40px);
  }
}

@media screen and (max-width: 1450px) {
  section#stats .container:after {
    right: calc(-100% + 40px);
  }
}

@media screen and (max-width: 1200px) {
  section#stats .container>div {
    -ms-flex-preferred-size: calc(100%/2);
    flex-basis: calc(100%/2);
    max-width: calc(100%/2);
    width: calc(100%/2);
    height: 212px;
    padding: 70px 0 45px 45px;
  }
}

@media screen and (max-width: 800px) {
  section#stats .container {
    flex-wrap: wrap;
  }

  section#stats .container>div {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 72px 0 64px 30px;
    border-right: 0 !important;
  }
}

@media screen and (max-width: 1200px) {
  section#stats .container>div:nth-of-type(3n) {
    border-right: 1px solid #c8c8c8;
  }
}

@media screen and (max-width: 450px) {
  section#stats .container>div:nth-of-type(3n) {
    border-right: 0;
  }
}

/* @media screen and (max-width: 1200px) {
  section#stats .container > div:nth-of-type(2n) {
    border-right: 0 !important; } } */
@media screen and (max-width: 1200px) {

  section#stats .container>div:nth-of-type(4),
  section#stats .container>div:nth-of-type(5),
  section#stats .container>div:nth-of-type(6) {
    border-bottom: 1px solid #c8c8c8;
  }
}

@media screen and (max-width: 1200px) {
  section#stats .container>div h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1200px) {
  section#stats .container>div h2:before {
    width: 23px;
    top: -10px;
    height: 1px;
  }
}

.news-item {
  background-color: #fff;
  border: solid 1px #c8c8c8;
  border-top: 2px solid #be9d67;
  position: relative;
}

.news-item .news-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.34px;
  color: #152555;
  display: block;
  padding: 30px 25px;
  min-height: 250px;
}

.news-item .news-date {
  font-size: 13px;
  font-weight: 500;
  color: #152555;
  letter-spacing: 0.58px;
  text-transform: uppercase;
  display: block;
  border-top: 1px solid #c8c8c8;
  padding: 10px 25px;
  height: 40px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .news-item {
    width: calc(100% / 3 - 15px);
    -ms-flex-preferred-size: calc(100% / 3 - 15px);
    flex-basis: calc(100% / 3 - 15px);
    max-width: calc(100% / 3 - 15px);
  }

  .news-item:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .news-item {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.rook-1-nav {
  position: fixed;
  top: 55px;
  background-color: #fff;
  right: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
}

.rook-1-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rook-1-nav ul li a {
  font-weight: 400;
  padding: 12px 0;
  display: block;
  position: relative;
}

.rook-1-nav ul li a:after {
  content: '';
  height: 2px;
  background-color: #be9d67;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.rook-1-nav ul li a:hover {
  color: #be9d67;
}

.rook-1-nav ul li a.active:after {
  width: 100%;
}

.rook-1-nav.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  z-index: 19;
  -webkit-box-shadow: 0px -3px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -3px 16px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1200px) {
  .rook-1-nav {
    display: none;
  }
}

section#hero {
  background-image: url(../../../../_resources/banners/header_home.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 820px;
  background-position: center;
  padding: 160px 0;
  margin-top: 77px;
  position: relative;
  display: flex;
  align-items: center;
}

/* section#hero .container {
  height: 100%;
} */
section#hero h1 {
  position: relative;
  left: -3px;
  color: #fff;
  max-width: 820px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

section#hero h1 .word {
  opacity: 0;
  display: inline-block;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: calc(200ms * var(--word-index));
  animation-delay: calc(200ms * var(--word-index));
}

section#hero h1 [data-word='dolor'],
section#hero h1 [data-word='sitamet'] {
  color: #be9d67;
}


section#hero .btn {
  margin-top: 55px;
  width: 270px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}

section#hero .btn:hover {
  background-color: #152555;
  color: #fff;
}

section#hero .btn i {
  font-size: 12px;
  color: #fff;
  margin-right: 0;
}

section#hero .social {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 88px;
  right: 51px;
}

section#hero .social li {
  margin-right: 12px;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

section#hero .social li:nth-of-type(1) {
  -webkit-animation-delay: calc(250ms);
  animation-delay: calc(250ms);
}

section#hero .social li:nth-of-type(2) {
  -webkit-animation-delay: calc(250ms * 2);
  animation-delay: calc(250ms * 2);
}

section#hero .social li:nth-of-type(3) {
  -webkit-animation-delay: calc(250ms * 3);
  animation-delay: calc(250ms * 3);
}

section#hero .social li:nth-of-type(4) {
  -webkit-animation-delay: calc(250ms * 4);
  animation-delay: calc(250ms * 4);
}

section#hero .social li:nth-of-type(5) {
  -webkit-animation-delay: calc(250ms * 5);
  animation-delay: calc(250ms * 5);
}

section#hero .social li:last-of-type {
  margin-right: 0 !important;
}

section#hero .social li a {
  width: 59px;
  height: 59px;
  border: 1px solid #be9d67;
  border-radius: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

section#hero .social li a i {
  font-size: 14px;
}

section#hero .social li a:hover {
  background-color: #be9d67;
  color: #fff;
}

section#hero .social li a img {
  height: 15px;
  width: auto;
}

section#hero .scroll {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.34px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: inline-block;
  position: absolute;
  bottom: 80px;
  right: 25px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

section#hero .scroll span {
  padding-top: 10px;
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  display: inline-block;
  margin-right: 20px;
  top: 8px;
}

section#hero .scroll span img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

section#videos {
  overflow: hidden;
  max-width: 100%;
}

section#videos .container {
  min-height: 631px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

section#videos .container:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 100%;
  right: -100%;
  width: 100%;
  position: absolute;
  z-index: 10;
}

section#videos .prev,
section#videos .next {
  width: 1000px;
  position: absolute;
  top: 150px;
  bottom: 140px;
  z-index: 25;
}

section#videos .prev {
  left: -900px;
  cursor: pointer;
  cursor: url("../img/prev.png"), auto;
}

section#videos .next {
  cursor: pointer;
  cursor: url("../img/next.png"), auto;
  right: -900px;
}

section#videos .left {
  position: relative;
  width: 41.3%;
  max-width: 41.3%;
  -ms-flex-preferred-size: 41.3%;
  flex-basis: 41.3%;
  right: -95px;
}

section#videos .left:before {
  background-color: #f2f2f2;
  content: '';
  display: block;
  height: 100%;
  left: calc(-150% - 100px);
  width: 250%;
  position: absolute;
  z-index: -1;
}

section#videos .left.non-carousel .item {
  padding-top: 122px;
}

section#videos .left .owl-stage-outer {
  overflow: visible;
  padding-top: 122px;
}

section#videos .left .owl-item {
  pointer-events: none;
}

section#videos .left .owl-item .video {
  position: relative;
  -webkit-box-shadow: 0px 50px 30px -35px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 50px 30px -35px rgba(0, 0, 0, 0.25);
  width: 547px;
}

section#videos .left .owl-item .video:after {
  content: '\f04b';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  text-align: center;
  line-height: 67px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 67px;
  height: 67px;
  border: solid 1px rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  pointer-events: none;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  opacity: 0;
}

section#videos .left .owl-item .video:hover:after {
  background-color: #be9d67;
  border-color: #be9d67;
}

section#videos .left .owl-item.active {
  pointer-events: all;
}

section#videos .left .owl-item.active .video:after {
  opacity: 1;
}

section#videos .right {
  width: 50.5%;
  max-width: 50.5%;
  -ms-flex-preferred-size: 50.5%;
  flex-basis: 50.5%;
  padding: 122px 110px 0 132px;
  background-color: #fff;
  position: relative;
}

section#videos .right h2 {
  margin-bottom: 59px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.17;
  position: relative;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#videos .right h2:after {
  content: '';
  width: 33px;
  height: 1px;
  background-color: #be9d67;
  position: absolute;
  bottom: -16px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

section#videos .right p {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#videos .right .owl-item {
  pointer-events: none;
}

section#videos .right .owl-item.active {
  pointer-events: all;
}

section#videos .right .owl-item.active h2:after {
  width: 33px;
}

section#videos .owl-dots {
  text-align: left;
  z-index: 999;
  position: absolute;
  left: 125px;
  bottom: 94px;
}

section#videos .owl-dots .owl-dot span {
  border: 1px solid #979797;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin: 0 5px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

section#videos .owl-dots .owl-dot.active span,
section#videos .owl-dots .owl-dot:hover span {
  background-color: #be9d67;
}

section#assets {
  overflow: hidden;
  border-top: 1px solid #c8c8c8;
}

section#assets .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 590px;
  position: relative;
}

section#assets .container:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 100%;
  left: -100%;
  width: 100%;
  position: absolute;
  z-index: 10;
}

section#assets .container .left {
  width: 50.57%;
  max-width: 50.57%;
  -ms-flex-preferred-size: 50.57%;
  flex-basis: 50.57%;
  padding: 120px 100px 0 110px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

section#assets .container .left h2 {
  margin-bottom: 80px;
  position: relative;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#assets .container .left h2:after {
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 0;
  height: 2px;
  background-color: #be9d67;
  position: absolute;
  bottom: -35px;
  left: 0;
}

section#assets .container .left p {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#assets .container .left .owl-item.active h2:after {
  width: 33px;
}

section#assets .container .right {
  width: 20.75%;
  max-width: 20.75%;
  -ms-flex-preferred-size: 20.75%;
  flex-basis: 20.75%;
  position: relative;
  left: -365px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

section#assets .container .right:before {
  background-color: #f2f2f2;
  content: '';
  display: block;
  height: 100%;
  right: calc(-450% - 200px);
  width: 550%;
  position: absolute;
  z-index: -1;
}

section#assets .container .right .owl-stage-outer {
  overflow: visible;
  padding-top: 125px;
}

section#assets .container .right .owl-item {
  pointer-events: none;
  width: 275px;
}

section#assets .container .right .owl-item .asset {
  -webkit-box-shadow: 0px 50px 30px -35px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 50px 30px -35px rgba(0, 0, 0, 0.25);
  width: 275px;
  height: 330px;
  position: relative;
}

section#assets .container .right .owl-item .asset .img {
  background-color: #000;
  height: 198px;
}

section#assets .container .right .owl-item .asset .img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  opacity: 0.6 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

section#assets .container .right .owl-item .asset .bottom {
  background-color: #fff;
  height: 132px;
  padding: 0 0 0 25px;
  position: relative;
}

section#assets .container .right .owl-item .asset .bottom p {
  margin: 0;
  position: absolute;
  bottom: 30px;
  left: 25px;
  max-width: 140px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.24px;
}

section#assets .container .right .owl-item .asset .bottom:before {
  content: '';
  width: 0;
  height: 2px;
  background-color: #be9d67;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

section#assets .container .right .owl-item .asset .bottom:after {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  content: '\f1c1';
  color: #505050;
  position: absolute;
  bottom: 25px;
  right: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 25px;
}

section#assets .container .right .owl-item .asset a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

section#assets .container .right .owl-item:nth-of-type(2) .asset {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

section#assets .container .right .owl-item:nth-of-type(3) .asset {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

section#assets .container .right .owl-item.active {
  pointer-events: all;
}

section#assets .container .right .owl-item.active .asset .img img {
  opacity: 1 !important;
}

section#assets .container .right .owl-item.active .asset .bottom p {
  color: #152555;
}

section#assets .container .right .owl-item.active .asset .bottom:before {
  width: 100%;
}

section#assets .container .right .owl-item.active .asset .bottom:after {
  color: #be9d67;
}

section#assets .container .right .owl-item.active~.active {
  pointer-events: none;
}

section#assets .container .right .owl-item.active~.active .asset .img img {
  opacity: 0.6 !important;
}

section#assets .container .right .owl-item.active~.active .asset .bottom p {
  color: #505050;
}

section#assets .container .right .owl-item.active~.active .asset .bottom:before {
  width: 0;
}

section#assets .container .right .owl-item.active~.active .asset .bottom:after {
  color: #505050;
}

section#assets .prev,
section#assets .next {
  width: 1000px;
  position: absolute;
  top: 150px;
  bottom: 140px;
  z-index: 25;
}

section#assets .prev {
  left: -900px;
  cursor: pointer;
  cursor: url("../img/prev.png"), auto;
}

section#assets .next {
  cursor: pointer;
  cursor: url("../img/next.png"), auto;
  right: -700px;
}

section#assets .owl-dots {
  text-align: left;
  z-index: 999;
  position: absolute;
  left: 105px;
  bottom: 110px;
}

section#assets .owl-dots .owl-dot span {
  border: 1px solid #979797;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin: 0 5px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

section#assets .owl-dots .owl-dot.active span,
section#assets .owl-dots .owl-dot:hover span {
  background-color: #be9d67;
}

section#projects {
  background-color: #152555;
  min-height: auto;
  height: auto;
  overflow: hidden;
}

section#projects .container_i {
  position: relative;
}

section#projects .owl-stage-outer {
  overflow: visible !important;
}

section#projects .owl-dots {
  position: absolute;
  right: 0;
  bottom: 195px;
  z-index: 999;
  cursor: initial;
}

section#projects .owl-dots .owl-dot {
  border: 1px solid #fff;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

section#projects .owl-dots .owl-dot.active,
section#projects .owl-dots .owl-dot:hover {
  background-color: #fff;
}

section#projects .prev,
section#projects .next {
  width: 1000px;
  position: absolute;
  top: 150px;
  bottom: 140px;
  z-index: 3;
}

section#projects .prev i,
section#projects .next i {
  display: none;
}

section#projects .prev {
  left: -1000px;
  cursor: pointer;
  cursor: url("../img/prev.png"), auto;
}

section#projects .next {
  cursor: pointer;
  cursor: url("../img/next.png"), auto;
  right: -1000px;
}

section#projects .project {
  padding: 91px 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

section#projects .project .top {
  /* border-bottom: solid 1px rgba(255, 255, 255, 0.6); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 5px;
}

section#projects .project .top .name {
  -ms-flex-preferred-size: 210px;
  flex-basis: 210px;
  position: relative;
  white-space: nowrap;
}

section#projects .project .top .name>span {
  display: none;
  opacity: 0.08 !important;
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.78px;
  color: #fff;
  position: absolute;
  bottom: -70px;
  left: -175px;
  z-index: -1;
  text-transform: uppercase;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

section#projects .project .top .name>span>span:nth-of-type(1) {
  -webkit-animation-delay: calc(250ms);
  animation-delay: calc(250ms);
}

section#projects .project .top .name>span>span:nth-of-type(2) {
  -webkit-animation-delay: calc(250ms * 2);
  animation-delay: calc(250ms * 2);
}

section#projects .project .top .name>span>span:nth-of-type(3) {
  -webkit-animation-delay: calc(250ms * 3);
  animation-delay: calc(250ms * 3);
}

section#projects .project .top .name>span>span:nth-of-type(4) {
  -webkit-animation-delay: calc(250ms * 4);
  animation-delay: calc(250ms * 4);
}

section#projects .project .top .name>span>span:nth-of-type(5) {
  -webkit-animation-delay: calc(250ms * 5);
  animation-delay: calc(250ms * 5);
}

section#projects .project .top .name>span>span:nth-of-type(6) {
  -webkit-animation-delay: calc(250ms * 6);
  animation-delay: calc(250ms * 6);
}

section#projects .project .top .name>span>span:nth-of-type(7) {
  -webkit-animation-delay: calc(250ms * 7);
  animation-delay: calc(250ms * 7);
}

section#projects .project .top .name>span>span:nth-of-type(8) {
  -webkit-animation-delay: calc(250ms * 8);
  animation-delay: calc(250ms * 8);
}

section#projects .project .top .name>span>span:nth-of-type(9) {
  -webkit-animation-delay: calc(250ms * 9);
  animation-delay: calc(250ms * 9);
}

section#projects .project .top .name>span>span:nth-of-type(10) {
  -webkit-animation-delay: calc(250ms * 10);
  animation-delay: calc(250ms * 10);
}

section#projects .project .top h2 {
  color: #fff;
}

section#projects .project .top h6 {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin-right: 10px;
}

section#projects .project .top .location {
  -ms-flex-preferred-size: 320px;
  flex-basis: 320px;
}

section#projects .project .top .stage {
  -ms-flex-preferred-size: 430px;
  flex-basis: 430px;
}

section#projects .project .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 43px;
}

section#projects .project .body .left {
  -ms-flex-preferred-size: 59%;
  flex-basis: 59%;
  width: 59%;
  max-width: 59%;
}

section#projects .project .body .left p {
  margin-top: 34px;
  color: #fff;
}

section#projects .project .body .left img {
  margin-bottom: 10px;
}

section#projects .project .body .left .btn {
  width: 171px;
  margin-top: 34px;
}

section#projects .project .body .right {
  -ms-flex-preferred-size: 39.5%;
  flex-basis: 39.5%;
  max-width: 39.5%;
  width: 39.5%;
}

section#projects .project .body .right .title {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  margin-top: 25px;
  padding-bottom: 5px;
  display: none;
}

section#projects .project .body .right .stats-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

section#projects .project .body .right .stats-inner>div {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  width: 50%;
  max-width: 50%;
}

section#projects .project .body .right h6 {
  color: #fff;
  display: block;
  margin: 24px 0 0 0;
  opacity: 1;
  height: 19px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 14px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.8px;
  text-align: left;
}

section#projects .project .body .right h6:first-of-type {
  margin-top: 34px;
}

section#projects .project .body .right p {
  margin: 0;
  color: #fff;
  height: 42px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
}

section#projects .owl-item.active .project {
  opacity: 1;
}

section#csr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 765px;
}

section#csr .left {
  position: relative;
  width: 49.5%;
  max-width: 49.5%;
  -ms-flex-preferred-size: 49.5%;
  flex-basis: 49.5%;
}

section#csr .left:before {
  background-color: #f2f2f2;
  content: '';
  display: block;
  height: 100%;
  left: calc(-150% - 115px);
  width: 250%;
  position: absolute;
  z-index: -1;
}

section#csr .left p {
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: 0.26px;
}

section#csr .left .video {
  margin-top: 145px;
  position: relative;
}

section#csr .left .video:after {
  content: '\f04b';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  text-align: center;
  line-height: 67px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 67px;
  height: 67px;
  border: solid 1px rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  pointer-events: none;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

section#csr .left .video img {
  -webkit-box-shadow: 0px 28px 35px -18px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 28px 35px -18px rgba(0, 0, 0, 0.3);
  height: 375px;
  -o-object-fit: cover;
  object-fit: cover;
}

section#csr .left .video:hover:after {
  border-color: #be9d67;
}

section#csr .left .csr-caption {
  max-width: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

section#csr .left .csr-caption img {
  margin-right: 15px;
  height: 61px;
}

section#csr .right {
  width: 39.5%;
  max-width: 39.5%;
  -ms-flex-preferred-size: 39.5%;
  flex-basis: 39.5%;
  padding: 185px 0 195px 0;
}

section#csr .right h2 {
  margin-bottom: 65px;
  position: relative;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#csr .right h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  display: block;
  width: 33px;
  height: 2px;
  background-color: #be9d67;
}

section#csr .right p {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

section#csr .right .btn {
  margin-top: 35px;
}

section#investors {
  min-height: 654px;
  background-color: #0c1a3d;
  background-image: url(../../../../_resources/banners/home-investors.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 97px 0 91px 0;
  position: relative;
}

section#investors .container_i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section#investors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section#investors .left {
  max-width: 29%;
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  width: 29%;
}

section#investors .left ul {
  margin: 0 0 54px 0;
}

section#investors .left ul li {
  padding-left: 25px;
  line-height: 1.63;
  letter-spacing: 0.3px;
  position: relative;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

section#investors .left ul li:nth-of-type(2) {
  -webkit-animation-delay: calc(200ms);
  animation-delay: calc(200ms);
}

section#investors .left ul li:nth-of-type(3) {
  -webkit-animation-delay: calc(200ms * 2);
  animation-delay: calc(200ms * 2);
}

section#investors .left ul li a {
  color: #fff;
  margin-left: 5px;
  height: 26px;
  line-height: 1.63;
  letter-spacing: 0.3px;
  font-weight: 500;
}

section#investors .left ul li:not(:last-child) {
  margin-bottom: 7px;
}

section#investors .left ul li a:hover {
  opacity: 0.5;
}

section#investors .left ul li:before {
  content: '\f1c1';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  color: #be9d67;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
  line-height: 1.13;
  height: 18px;
  width: 28px;
  letter-spacing: 0.71px;
}

section#investors .left h2 {
  line-height: 1.02;
  height: 47px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.16px;
  text-align: left;
  color: #fff;
}

section#investors .left h6 {
  margin-top: 61px;
  color: #fff;
  opacity: 1;
  height: 19px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
}

section#investors .left h6:after {
  content: '';
  width: 322px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
}

section#investors .left a.btn {
  width: 212px;
}

section#investors .right {
  max-width: 59.5%;
  -ms-flex-preferred-size: 59.5%;
  flex-basis: 59.5%;
  width: 59.5%;
  background-color: #fff;
  height: 470px;
  padding: 60px 65px 50px 65px;
  overflow: hidden;
}

section#investors .right .tabs ul {
  border-bottom: solid 1px #c8c8c8;
}

section#investors .right .tabs ul li {
  font-size: 14px;
  color: #152555;
  display: inline-block;
  padding: 3px 10px;
  position: relative;
  bottom: -1px;
  border-bottom: solid 2px transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

section#investors .right .tabs ul li.active {
  border-bottom: solid 2px #152555;
}

section#investors .right .tabs ul li span {
  font-weight: 700;
}

section#investors .right .tabs .hold {
  padding-top: 10px;
}

section#investors .right .tabs .hold .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 20px 0;
}

section#investors .right .tabs .hold .top .last {
  font-size: 42px;
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: -0.16px;
  color: #152555;
}

section#investors .right .tabs .hold .top .info {
  color: #152555;
  width: 180px;
}

section#investors .right .tabs .hold .top .info span {
  font-weight: 700;
  width: 80px;
  display: inline-block;
}

section#investors .right .tabs .hold .chart .highcharts-title {
  display: none;
}

section#investors .right .tabs .hold:nth-of-type(2) .chart {
  margin-top: -20px;
}

@media screen and (max-width: 1200px) {
  section#hero {
    padding: 75px 0;
    margin-top: 50px;
    height: calc(100vh - 90px);
    min-height: 500px;
    max-height: 700px;
  }
}

@media screen and (max-width: 1200px) {
  section#hero h1 {
    line-height: 1.125;
    width: 100%;
    font-size: 60px;
    max-width: 500px;
    font-weight: 200;
  }
}

@media screen and (max-width: 450px) {
  section#hero h1 {
    font-size: 40px;
    max-width: 230px;
  }
}

@media screen and (max-width: 1200px) {
  section#hero .btn {
    height: 50px;
    line-height: 50px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 1200px) {
  section#hero .social {
    bottom: 35px;
  }
}

@media screen and (max-width: 800px) {
  section#hero .social {
    bottom: 45px;
  }
}

@media screen and (max-width: 450px) {
  section#hero .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 1200px) {
  section#hero .social li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 450px) {
  section#hero .social li {
    margin-right: 5px;
  }
}

@media screen and (max-width: 1200px) {
  section#hero .social li a {
    width: 54px;
    height: 54px;
  }
}

@media screen and (max-width: 800px) {
  section#hero .scroll {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .container {
    min-height: 535px;
  }
}

@media screen and (max-width: 900px) {
  section#videos .container {
    min-height: 585px;
  }
}

@media screen and (max-width: 800px) {
  section#videos .container {
    display: block;
    min-height: 535px;
  }
}

@media screen and (max-width: 1450px) {
  section#videos .container:after {
    right: calc(-100% + 40px);
  }
}

@media screen and (max-width: 1200px) {

  section#videos .prev,
  section#videos .next {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .left {
    right: 0;
    width: 400px;
    max-width: 400px;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
  }
}

@media screen and (max-width: 800px) {
  section#videos .left {
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    padding-bottom: 35px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 800px) {
  section#videos .left:before {
    left: auto;
    right: -30px;
    width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  
  section#videos .left.non-carousel .item,
  section#videos .left .owl-stage-outer {
    padding-top: 85px;
  }
}

@media screen and (max-width: 800px) {
  section#videos .left.non-carousel .item,
  section#videos .left .owl-stage-outer {
    padding-top: 60px;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .left .owl-item .video {
    width: 400px;
  }
}

@media screen and (max-width: 800px) {
  section#videos .left .owl-item .video {
    width: 430px;
  }
}

@media screen and (max-width: 450px) {
  section#videos .left .owl-item .video {
    width: 290px;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .right {
    padding: 85px 48px 24px 64px;
    width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    -ms-flex-preferred-size: calc(100% - 400px);
    flex-basis: calc(100% - 400px);
  }
}

@media screen and (max-width: 800px) {
  section#videos .right {
    padding: 40px 0 48px 0;
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .right h2 {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .right h2:after {
    bottom: -20px;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .right .owl-item.active h2:after {
    width: 21px;
  }
}

@media screen and (max-width: 1200px) {
  section#videos .owl-dots {
    left: 75px;
    bottom: 90px;
  }
}

@media screen and (max-width: 800px) {
  section#videos .owl-dots {
    left: 0;
    bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container {
    min-height: 455px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container {
    display: block;
  }
}

@media screen and (max-width: 1450px) {
  section#assets .container:after {
    left: calc(-100% + 40px);
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container:after {
    left: calc(-100% + 30px);
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .left {
    padding: 105px 50px 0 0;
    width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    -ms-flex-preferred-size: calc(100% - 400px);
    flex-basis: calc(100% - 400px);
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .left {
    padding: 40px 0 100px 0;
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .left h2 {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .left h2:after {
    bottom: -20px;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .left .owl-item.active h2:after {
    width: 21px;
  }
}

@media screen and (max-width: 1450px) {
  section#assets .container .right {
    left: -345px;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .right {
    left: -120px;
    width: 275px;
    max-width: 275px;
    -ms-flex-preferred-size: 275px;
    flex-basis: 275px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right {
    width: calc(100% + 80px);
    max-width: calc(100% + 80px);
    padding-bottom: 35px;
    letter-spacing: 0;
    left: 30px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right:before {
    left: auto;
    right: 30px;
    width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .right .owl-stage-outer {
    padding-top: 85px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right .owl-stage-outer {
    padding-top: 60px;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .container .right .owl-item .asset {
    width: 240px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right .owl-item .asset {
    width: 200px;
    height: 230px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right .owl-item .asset .img {
    height: 153px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right .owl-item .asset .bottom {
    height: 78px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .container .right .owl-item .asset .bottom p {
    bottom: 20px;
    left: 20px;
  }
}

@media screen and (max-width: 1200px) {

  section#assets .prev,
  section#assets .next {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  section#assets .owl-dots {
    left: 0;
    bottom: 90px;
  }
}

@media screen and (max-width: 800px) {
  section#assets .owl-dots {
    left: 0;
    bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  section#projects .owl-dots {
    bottom: 155px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .owl-dots {
    display: none;
  }
}

@media screen and (max-width: 800px) {

  section#projects .prev,
  section#projects .next {
    width: auto;
    top: 100px;
    height: 40px;
    font-size: 20px;
    color: #fff;
  }

  section#projects .prev i,
  section#projects .next i {
    position: relative;
    top: -3px;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  section#projects .prev {
    left: initial;
    right: 56px;
    text-align: left;
    padding-right: 14px;
    cursor: pointer !important;
  }

  section#projects .prev:after {
    content: '';
    background-color: rgba(255, 255, 255, 0.5);
    height: 13px;
    width: 1px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 800px) {
  section#projects .next {
    left: initial;
    right: 25px;
    cursor: pointer !important;
    text-align: right;
  }

  section#projects .next span {
    right: 25px;
  }
}

@media screen and (max-width: 1200px) {
  section#projects .project {
    padding: 122px 0 122px 0;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project {
    padding: 90px 0 90px 0;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top {
    display: block;
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top .name {
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1450px) {
  section#projects .project .top .name>span {
    left: -125px;
    font-size: 190px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top .name>span {
    left: -35px;
    font-size: 80px;
    bottom: -10px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top h6 {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top .location {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .top .stage {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .body {
    display: block;
    position: relative;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .body .left {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .body .left .btn {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media screen and (max-width: 800px) {
  section#projects .project .body .right {
    width: 100%;
    max-width: 100%;
  }

  section#projects .project .body .right img {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  section#csr {
    height: 640px;
  }
}

@media screen and (max-width: 800px) {
  section#csr {
    display: block;
    height: auto;
    position: relative;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left {
    width: 100%;
    max-width: 100%;
    position: static;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left:before {
    left: auto;
    right: -30px;
    top: -60px;
    width: 80%;
    height: 355px;
  }
}

@media screen and (max-width: 1200px) {
  section#csr .left .video {
    margin-top: 95px;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left .video {
    margin-top: 60px;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left .video:after {
    width: 54px;
    height: 54px;
    line-height: 54px;
    font-size: 12px;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left .video img {
    height: 200px;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left .csr-caption {
    position: absolute;
    bottom: 130px;
    left: 25px;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  section#csr .left .csr-caption img {
    height: 54px;
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  section#csr .right {
    width: 45%;
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    padding: 125px 0 125px 0;
  }
}

@media screen and (max-width: 800px) {
  section#csr .right {
    width: 100%;
    max-width: 100%;
    padding: 55px 0 60px 0;
  }
}

@media screen and (max-width: 800px) {
  section#csr .right h2 {
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 800px) {
  section#csr .right h2:after {
    width: 21px;
    height: 1px;
    bottom: -20px;
  }
}

@media screen and (max-width: 800px) {
  section#csr .right .btn {
    margin-top: 190px;
  }
}

@media screen and (max-width: 1200px) {
  section#investors {
    padding: 75px 0 135px 0;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .container_i {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .btn {
    position: absolute;
    bottom: 85px;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .left {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .right {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: -40px;
    padding: 25px 25px 50px 25px;
    height: 480px;
  }

  section#investors .right .highStock {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .right .tabs ul li {
    padding: 3px 5px;
  }
}

@media screen and (max-width: 800px) {
  section#investors .right .tabs .hold .top {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .right .tabs .hold .top .last {
    margin-bottom: 10px;
    font-size: 40px;
  }
}

@media screen and (max-width: 1200px) {
  section#investors .right .tabs .hold .top .info>div {
    margin-bottom: 5px;
  }
}

.ft-news {
  background-color: #f2f2f2;
  padding: 75px 0 88px 0;
  border-top: 2px solid #fff;
}

.ft-news .flex {
  gap: 25px;
}

.ft-news h3 {
  text-transform: capitalize;
  margin-bottom: 41px;
}

.ft-news .news-hold .news-item {
  width: calc(100% / 4 - 15px);
  /* height: 250px; */
  -ms-flex-preferred-size: calc(100% / 4 - 15px);
  flex-basis: calc(100% / 4 - 15px);
  max-width: calc(100% / 4 - 15px);
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border: 0;
  border-top: 2px solid #be9d67;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  bottom: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.ft-news .news-hold .news-item:hover {
  position: relative;
  bottom: 10px;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
  /* border: 2px solid #be9d67; */
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.16);
}

.ft-news .news-hold .news-item:hover a {
  opacity: 1;
}

.ft-news .news-hold .news-item .news-title {
  padding: 45px 40px;
  min-height: 250px;
}

@media screen and (max-width: 1200px) {
  .ft-news .news-hold .news-item .news-title {
    padding: 40px 35px;
    min-height: 200px;
  }
}

@media screen and (max-width: 800px) {
  .ft-news .news-hold .news-item .news-title {
    padding: 25px 20px;
    font-size: 16px;
  }
}

.ft-news .news-item:hover .news-date {
  background-color: #be9d67;
  color: #fff;
}
.ft-news .news-item:hover .news-pdf a i::before {
  color: #fff;
}

.ft-news .news-hold .news-item .news-date {
  display: flex;
  align-items: center;
  padding: 25px 45px;
  height: 68px;
  transition: all 0.25s ease-in-out;
}

.ft-news .news-hold .news-item .news-pdf {
    padding: 25px 45px;
    height: 70px;
}

.ft-news .news-hold .news-item:nth-of-type(2) {
  -webkit-animation-delay: calc(400ms);
  animation-delay: calc(400ms);
}

.ft-news .news-hold .news-item:nth-of-type(3) {
  -webkit-animation-delay: calc(300ms * 2);
  animation-delay: calc(300ms * 2);
}

.ft-news .news-hold .news-item:nth-of-type(4) {
  -webkit-animation-delay: calc(200ms * 3);
  animation-delay: calc(200ms * 3);
}

@media screen and (max-width: 1450px) {
  .ft-news .news-hold .news-item {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .ft-news .news-hold .news-item {
    width: calc(100% / 3 - 15px);
    -ms-flex-preferred-size: calc(100% / 3 - 15px);
    flex-basis: calc(100% / 3 - 15px);
    max-width: calc(100% / 3 - 15px);
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
  }

  .ft-news .news-hold .news-item:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .ft-news {
    padding: 75px 0 70px 0;
  }

  .ft-news .news-hold {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ft-news h3 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 800px) {
  .ft-news .news-hold .news-item {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 450px) {
  .ft-news .news-hold .news-item {
    padding-bottom: 50px;
  }
}



@media screen and (max-width: 800px) {
  .ft-news .news-hold .news-item .news-date {
    padding: 13px 30px;
    height: 50px;
  }
  .ft-news .news-hold .news-item .news-pdf {
        padding: 15px 30px;
        height: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .ft-news .news-hold .news-item:nth-of-type(2) {
    -webkit-animation-delay: calc(150ms);
    animation-delay: calc(150ms);
  }

  .ft-news .news-hold .news-item:nth-of-type(3) {
    -webkit-animation-delay: calc(150ms * 2);
    animation-delay: calc(150ms * 2);
  }

  .ft-news .news-hold .news-item:nth-of-type(4) {
    -webkit-animation-delay: calc(150ms * 3);
    animation-delay: calc(150ms * 3);
  }
}

body.inner .news {
  border-top: 2px solid #fff;
}

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

.grecaptcha-badge {
  display: none !important;
}

.grecaptcha-badge.show {
  display: block !important;
  visibility: visible !important;
}

/* Always show a project in the Owl */
#projects .projects-carousel {
  display: block !important;
}


.project img {
  height: 360px;
}

path.highcharts-graph { stroke: #be9d67; }
.highcharts-navigator-mask-inside { fill: #be9d67; }


/* #videos .container img {
  height: 375px;
} */

/* MODAL - GENERAL */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  z-index: 1000;
  color: #FFF;
  display: none;
}

.popup-container .content {
  max-width: 770px;
  padding: 0px 15px 0px 15px;
  margin: 300px auto 0px auto;
}

.popup-container .close {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 30px;
  line-height: 30px;
}

.popup-container form.signup .textbox {
  float: none !important;
  width: 100% !important;
}

.popup-container form.signup .textbox input {
  padding: 0px !important;
}

.popup-container .error-tooltip {
  top: -50px !important;
}

.popup-container input {
  width: 100%;
}

/* SEARCH MODAL */
#search-popup .searchsubmit {
  position: absolute;
  height: 0px;
  width: 0px;
  border: none;
  padding: 0px;
  visibility: hidden;
}

#search-popup .s {
  background-color: transparent;
  border: 0px;
  font-size: 50px;
  color: #ffffff;
}

#search-popup .s:focus {
  outline: 0;
}

#search-popup .s::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#search-popup .s:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#search-popup .s::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#search-popup .s:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#search-popup fieldset {
  padding: 0px;
  border: 0px;
}

@media screen and (max-width: 800px) {

  section#video .left img {width: 400px;}
  
  section#videos .left,
  section#assets .container .right {
    width: 100%;
    max-width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 800px) {

  html,
  body {
    overflow-x: hidden;
  }
}

#hero .container h4 {
  color: #fff;
  margin-top: 26px;
}

.grecaptcha-badge {
  display: none !important;
}

.grecaptcha-badge.show {
  display: block !important;
  visibility: visible !important;
}

/* Consent Popup */
#consent-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}

#consent-modal.show {
  opacity: 1;
  pointer-events: all;
  overflow-y: hidden;
}

#consent-modal::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  background-color: #000000;
  opacity: 0.5;
}

#consent-modal>div {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: #011e36;
  box-sizing: border-box;
  position: relative;
  z-index: 100001;
  width: 100%;
  max-width: 700px;
  background-color: #ffffff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 40px 80px 40px 30px;
}

#consent-modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  display: block;
}

#consent-modal .btn {
  border: none;
}

#consent-modal .close span {
  text-decoration: underline;
}

#consent-modal .close::after {
  content: "\f00d";
  margin-left: 6px;
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
}

#consent-modal .content {
  display: flex;
  align-items: flex-start;
}

#consent-modal .content>div *:first-child {
  margin-top: 0px;
}

#consent-modal input[type=checkbox] {
  -webkit-appearance: checkbox;
  margin: 10px 20px 0px 0px;
  min-width: 20px;
}

@media screen and (max-width: 767px) {
  #consent-modal>div {
    padding: 40px 40px 40px 20px;
  }
}

.news-item .news-pdf {
  font-weight: 700;
  display: block;
  padding: 10px 25px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-item .news-pdf a i::before {
  font-size: 20px;
  color: #be9d67;
  opacity: 1;
}