  html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {display: block;}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: visible;}

/* we use a lot of ULs that aren't bulleted.
  you'll have to restore the bullets within content,
  which is fine because they're probably customized anyway */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

input {-webkit-appearance:none;}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

small {font-size: 85%;}

strong {font-weight: bold;}

td, td img {vertical-align: top;}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button,
input[type=button] {width: auto; overflow: visible;}

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

*:after,
*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::-moz-selection {
  color: #fff;
  background-color: #808080;
}

*::selection {
  color: #fff;
  background-color: #808080;
}

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', sans-serif;
  /*font-size: 16px;*/
  font-size: 14px;
  line-height: 1.5;
  color: #404040;
  background: #fff;
}

.container {
  overflow: hidden;
}

.wrap {
  max-width: 1213px;
  padding: 0 50px;
  margin: 0 auto;
}

.h1,
h1 {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.25;
  color: #000;
}

.h2,
h2 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.25;
  color: #000;
}

.h3,
h3 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.25;
  color: #000;
}

.h4,
h4 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.25;
  color: #000;
}

.h5,
.h6,
h5,
h6 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
}

ul {
  padding: 0 0 0 15px;
  margin: 0 0 15px;
  list-style: none;
}

ul li {
  padding-left: 20px;
  margin-left: 0;
  position: relative;
}

ul li::before {
  display: block;
  content: '•';
  position: absolute;
  top: 0;
  left: 0;
}

ol {
  margin: 0 0 15px;
  padding: 0 0 0 10px;
  list-style-position: inside;
}

ol li + li,
ul li + li {
  margin-top: 5px;
}

p {
  margin: 0 0 15px;
}

.fs16px {
  font-size: 16px;
}

.fs14px {
  font-size: 14px;
}

.fs12px {
  font-size: 12px;
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

hr {
  border: 0;
  height: 2px;
  clear: both;
  margin: 57px 0 50px;
  background: rgba(151, 151, 151, 0.27);
}

b,
strong {
  font-weight: 700;
}

a {
  outline: 0 none;
  color: inherit;
  text-decoration: none;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
}

a:hover,
a:focus {
  text-decoration: underline;
}

label {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page-content img {
  margin: 25px 0;
}

table {
  width: 100%;
  margin: 25px 0;
  font-size: 14px;
  border-spacing: 0;
  border-collapse: collapse;
}

table th {
  font-weight: bold;
  text-align: left;
  font-size: 12px;
  color: #000;
}

table th,
table td {
  padding: 9px 0;
}

table td,
table th {
  border-bottom: 1px solid #e6e6e6;
}

blockquote {
  padding: 20px 30px;
  margin: 25px 0;
  background: #f2f2f2;
  border-radius: 20px;
}

hr {
  margin: 20px 0;
  height: 1px;
  background: #e6e6e6;
}

form {
  font-size: 14px;
}

.form-tip {
  margin: -8px 0 13px;
  font-size: 12px;
  text-align: right;
}

fieldset {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

form fieldset:last-child {
  margin: 0;
}

.form-field {
  width: calc(50% - 10px);
  position: relative;
}

.form-field.full-width {
  width: 100%;
}

.field-text label {
  display: block;
  height: 24px;
  padding: 5px 7px;
  margin-top: -12px;
  position: absolute;
  left: 8px;
  top: 26px;
  line-height: 1;
  color: #808080;
  background: #fff;
  pointer-events: none;
  transition: transform .3s ease;
  transform-origin: 0 0;
}

.field-text input:focus + label,
.field-text input.filled + label,
.field-text textarea:focus + label,
.field-text textarea.filled + label {
  transform: scale(.8) translate(2px,-30px);
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=date],
input[type=number],
input[type=week],
input[type=url],
input[type=tel],
select,
textarea {
  display: block;
  width: 100%;
  height: 52px;
  outline: 0 none;
  transition: all .3s;
  color: #000;
  padding: 10px 15px;
  text-align: left;
  font-weight: normal;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background-color: #fff;
  box-shadow: none;
  border-radius: 5px;
  border: 1px solid #ccc;
}

textarea {
  height: auto;
  min-height: 150px;
  max-height: 800px;
  line-height: 1.5;
  resize: vertical;
}

select {
  padding-right: 30px;
  color: #808080;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

select.selected {
  color: #000;
}

.field-select::after {
  display: block;
  content: '';
  width: 12px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url(../images/dropdown-arr.svg) center no-repeat;
  background-size: contain;
}

.field-cb::after,
.field-radio::after {
  display: block;
  content: '';
  clear: both;
}

.field-cb label,
.field-radio label {
  float: left;
  clear: left;
  padding-left: 30px;
  position: relative;
  color: #000;
}

.field-cb label + label,
.field-radio label + label {
  margin-top: 13px;
}

.field-cb input + span::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #808080;
  border-radius: 3px;
}

.field-cb label:hover input + span::before {
  border-color: #000;
}

.field-cb input:checked + span::before {
  background: #000 url(../images/checkbox-mark.svg) center no-repeat;
  background-size: 13px auto;
  border-color: #000;
}

.field-cb input {
  position: absolute;
  left: -200vw;
}

.field-radio input + span::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #808080;
  border-radius: 10px;
}

.field-radio label:hover input + span::before {
  border-color: #000;
}

.field-radio input:checked + span::after {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  left: 3px;
  top: 3px;
  background: #000;
  border-radius: 50%;
}

.field-radio input {
  position: absolute;
  left: -200vw;
}

.form-submit {
  display: block;
  text-align: center;
}

.btn-submit {
  margin: 10px auto 0;
}

fieldset + hr {
  margin-top: -5px;
}

.err,
.field-cb input[type=checkbox].err + span::before,
.field-cb input[type=radio].err + span::before,
.wpcf7-not-valid,
.field-cb .wpcf7-not-valid input[type=checkbox] + span::before,
.field-radio .wpcf7-not-valid input[type=radio] + span::before {
  border-color: #d00 !important;
}

.err + label,
.wpcf7-not-valid + label {
  color: #c00 !important;
}

.form-field .wpcf7-not-valid-tip {
  padding-top: 5px;
  font-size: 12px;
}

.form-field .wpcf7-form-control-wrap {
  position: static;
}

.form-field .wpcf7-form-control-wrap::after,
.field-radio .wpcf7-list-item::after {
  display: block;
  content: '';
  clear: left;
}

.field-cb .wpcf7-form-control-wrap,
.field-radio .wpcf7-form-control-wrap {
  display: block;
}

.field-cb .wpcf7-list-item,
.field-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

.field-cb .wpcf7-form-control-wrap + .wpcf7-form-control-wrap,
.field-radio .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 13px;
}

.field-cb .wpcf7-not-valid-tip,
.field-radio .wpcf7-not-valid-tip {
  padding-left: 30px;
  clear: left
}

.wpcf7-response-output {
  padding: 20px !important;
  text-align: center;
  border-radius: 20px;
}

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

  fieldset {
    display: block;
    margin: 0;
  }

  .form-field {
    width: 100%;
    margin-bottom: 25px;
  }

}


.btn {
  display: inline-block;
  height: 40px;
  min-width: 146px;
  padding: 0 30px;
  font-size: 12px;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border: 1px solid #808080;
  border-radius: 20px;
  transition: all .3s ease;
}

.btn:hover {
  text-decoration: none;
  color: #000;
  background: #fff;
}

.btn-black {
  border-color: #000;
}

.btn.disabled {
  opacity: .3;
  pointer-events: none;
}

.ico-mail {
  padding-left: 24px;
  position: relative;
}

.ico-mail::before {
  display: block;
  content: '';
  width: 12px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/ico-mail.svg) center no-repeat;
  background-size: contain;
}

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

  .wrap {
    padding: 0 20px;
  }

}


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

  .h1,
  h1 {
    margin: 0 0 15px;
    font-size: 26px;
  }

  .h2,
  h2 {
    margin: 0 0 15px;
    font-size: 22px;
  }

  .h3,
  h3 {
    margin: 0 0 15px;
    font-size: 20px;
  }

  .h4,
  h4 {
    margin: 0 0 15px;
    font-size: 16px;
  }

  .h5,
  .h6,
  h5,
  h6 {
    margin: 0 0 15px;
    font-size: 14px;
  }

}


/* HEADER */

header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  color: #fff;
  background: rgba(0,0,0,0);
  transition: background .3s ease, padding .5s ease;
}

header.fixed {
  padding: 10px 0;
  background: rgba(0,0,0,.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

header > .wrap {
  max-width: 1440px;
}

header nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

header .logo {
  position: relative;
  z-index: 2;
}

header .logo img {
  width: 100%;
  max-width: 150px;
}

header ul,
header li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header nav li {
  display: inline-block;
  margin: 0 15px;
}

header nav li::before {
  display: none;
}

header nav ul li a {
  position: relative;
}

header nav ul a {
  padding: 5px 10px;
  text-decoration: none
  background: rgba(0,0,0,0);
  border-radius: 10px;
}

header nav ul a:hover {
  text-decoration: none;
  background: #000;
}

header nav .has-submenu a {
  padding-right: 23px;
}

header nav .has-submenu a::after {
  display: block;
  content: '';
  width: 9px;
  height: 8px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 5px;
  background: url(../images/dropdown-arr.svg) center no-repeat;
  background-size: contain;
  transition: transform .3s ease;
}

header nav .has-submenu a.opened {
  background: #000;
}

header nav .has-submenu a.opened::after {
  transform: scaleY(-1);
}

.subnav-opened header {
  background: #0d0d0d;
}

.submenu {
  display: none;
}

.submenu .wrap {
  padding-top: 32px;
  padding-bottom: 10px;
  text-align: center;
}

.submenu ul {
  display: flex;
  flex-flow: row;
  padding: 0;
  margin: 0 -10px;
  justify-content: center;
}

.submenu ul li {
  display: block;
  max-width: 370px;
  padding: 0 10px;
  flex-grow: 1;
}

.submenu ul a {
  display: block;
  padding: 30px;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 20px;
}

.submenu ul a i {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 9px;
  opacity: .5;
  background: center no-repeat;
  background-size: contain;
  transition: filter .25s ease, opacity .5s ease;
}

.submenu ul a:hover {
  color: #000;
  background: #f2f2f2;
}

.submenu ul a:hover i {
  opacity: .8;
  filter: invert(1);
}

.submenu ul li::before {
  display: none;
}

.submenu-header {
  display: none;
}

.mob-nav-contact {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(0,0,0,.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  cursor: url(../images/cursor-close.svg), crosshair;
}

.nav-toggle {
  display: none;
}

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

  header {
    background: rgba(0,0,0,.8);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  header .right {
    display: none;
  }

  .nav-toggle {
    display: block;
    width: 60px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  .nav-toggle i {
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 7px;
    background: #999;
    transition: transform .5s ease;
  }

  .nav-toggle i::before,
  .nav-toggle i::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #999;
    transition: transform .2s ease;
  }

  .nav-toggle i::before {
    top: -7px;
  }

  .nav-toggle i::after {
    bottom: -7px;
  }

  .mob-nav-opened .nav-toggle i {
    transform: rotate(45deg);
  }

  .mob-nav-opened .nav-toggle i::before {
    transform: translateY(7px) rotate(90deg);
  }

  .mob-nav-opened .nav-toggle i::after {
    transform: translateY(-7px) rotate(90deg);
  }

  .main-menu {
    display: block;
    height: 100vh;
    padding: 85px 40px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    transform: translateX(100%);
    pointer-events: none;
  }

  .mob-nav-opened .main-menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  header.fixed {
    padding: 20px 0;
  }

  header nav ul {
    max-width: 400px;
    margin: 0 auto;
  }

  header nav li {
    display: block;
    margin: 0 0 5px;
  }

  header nav li a,
  header nav .has-submenu a {
    display: block;
    padding: 15px 0;
    background: none;
  }

  header nav li a:hover {
    background: none;
  }

  header nav .has-submenu a::after {
    width: 15px;
    right: -3px;
    transform: rotate(-90deg);
  }

  .mob-nav-contact {
    display: block;
  }

  .submenu-header {
    display: block;
    padding-top: 30px;
    position: relative;
    text-align: center;
    color: #bfbfbf;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .submenu.show-submenu .submenu-header {
    opacity: 1;
  }

  .btn-back {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/dropdown-arr.svg) 34px 10px no-repeat;
    background-size: 15px auto;
    transform: rotate(90deg);
  }

  .submenu {
    display: block;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    overflow: scroll;
    background: #0d0d0d;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    transform: translateX(100%);
    pointer-events: none;
  }

  .submenu.show-submenu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  .submenu .wrap {
    padding: 38px 20px 30px;
  }

  .submenu ul {
    flex-flow: column;
    margin: 0;
  }

  .submenu ul li {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0 auto 20px;
    flex-grow: 0;
  }

  .nav-overlay {
    display: none !important;
  }

}

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

  header .right {
    display: none;
  }

  header > .wrap {
    padding: 0 20px;
  }

}



/* SECTION: HERO */

.hero {
  position: relative;
  overflow: hidden;
  background: #404040;
}

.hero img {
  display: block;
  width: 100%;
  visibility: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: center 0 no-repeat;
  background-size: cover;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: end;
  padding-bottom: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

.hero-content div {
  width: 100%;
  text-align: center;
}

.hero-dark,
.hero-dark * {
  color: #fff;
}

.hero-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: center bottom no-repeat;
  background-size: contain;
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: normal;
}

.hero p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
}

.hero p:last-child {
  margin-bottom: 0;
}

.hero .btn {
  margin-top: 30px;
}

.hero.gradient::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.5) 100%);
}

/**/

.hero-large {
  height: 100vh;
  min-height: 750px;
}

/**/

.hero-internal {
  min-height: 400px;
}

.hero-internal .wrap {
  padding: 0;
}

.hero-internal .hero-content {
  padding: 50px;
}

/**/

.hero-simple {
  background: #000;
}

.hero-simple .hero-content {
  min-height: 400px;
  padding-top: 150px;
  position: static;
  align-items: flex-start;
}

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

  .hero-large .hero-content {
    padding-bottom: 160px;
  }

  .hero-internal .hero-content {
    padding: 50px 25px;
  }

  .hero-icon {
    width: 35px;
    height: 35px;
  }

  .hero-simple .hero-content {
    min-height: 280px;
    padding-top: 130px;
  }

}

/* hero carousel */

.carousel {
  visibility: hidden;
  pointer-events: none;
}

.carousel.slick-slider {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  visibility: visible;
  transform: translateY(-50%);
}

.carousel i {
  display: block;
  position: absolute;
  padding: 20px;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #0f0;
}

.carousel img {
  display: block;
  visibility: visible;
  border-radius: 20px;
}

.carousel .slick-slide {
  padding: 0 10px;
}

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

  .carousel.slick-slider {
    top: 35%;
  }

}


/* global SECTIONS */

.content-section a {
  text-decoration: underline;
}

.content-section a:hover {
  text-decoration: none;
}

.content-section .learn-more {
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.content-section .learn-more:hover {
  text-decoration: underline;
}

.content-section h3 {
  margin-bottom: 9px;
}

.content-section {
  padding: 50px 0;
  background: center no-repeat;
  background-size: cover;
}

.media-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transform: translate3d(0,0,0);
}

.media-box a {
  display: block;
  overflow: hidden;
}

.media-full-height {
  align-self: stretch;
  background: center no-repeat;
  background-size: cover;
}

.media-full-height .media-box {
  height: 100%;
}

.media-full-height .media-box > img,
.media-full-height .media-box a > img {
  visibility: hidden;
}

.media-icon {
  width: 32px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 5;
  pointer-events: none;
  will-change: transform;
}

.media-icon img {
  display: block;
  width: 100%;
  max-height: 32px;
}

.media-box.gradient::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(55deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 1%,rgba(0,0,0,0) 49%,rgba(0,0,0,0) 100%);
}

.row-reverse .media-icon {
  right: 20px;
  top: 20px;
  left: unset;
  bottom: unset;
}

.row-reverse .media-box.gradient::after {
  background: linear-gradient(-120deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 1%,rgba(0,0,0,0) 49%,rgba(0,0,0,0) 100%);
}

.media img {
  margin: 0;
}

.media {
  overflow: hidden;
  transform: translate3d(0,0,0);
}

.media a img {
  transition: transform .5s ease;
}

.media a:hover img {
  transform: scale(1.1);
}

.section-box {
  transform: translate3d(0,0,0);
}

.video-box {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  min-height: 100%;
  overflow: hidden;
}

.video-box video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.video-bg video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-large + .section-3-cols.offset-top {
  margin-top: -60px;
}

.hero + .section-faq.offset-top {
  margin-top: -100px;
}

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

  .hero-large + .section-3-cols.offset-top {
    margin-top: -100px;
  }

}



/* SECTION TEXT */

.section-text-content {
  font-size: 16px;
}

.section-text-content .wrap {
  max-width: 990px;
  padding: 0 40px;
}

.section-text-content .wrap p:last-child {
  margin: 0;
}



/* SECTION TEXT|MEDIA */

.section-text-media .section-box {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 20px;
}

.row-reverse .section-box {
  flex-flow: row-reverse;
}

.section-text-media .content {
  width: 49%;
  padding: 20px;
}

.section-text-media .media {
  width: 51%;
  padding: 0 0 0 40px;
}

.section-text-media.row-reverse .media {
  padding: 0 40px 0 0;
}

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

  .section-text-media .section-box {
    flex-flow: column-reverse;
  }

  .section-text-media .content,
  .section-text-media .media {
    width: 100%;
  }

  .section-text-media .content {
    padding: 20px 0 10px;
  }

  .section-text-media .media,
  .section-text-media.row-reverse .media {
    padding: 0;
  }

}



/* SECTION 2 COLUMNS */

.section-2-cols .section-box {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-2-cols .section-col {
  display: flex;
  flex-flow: column;
  width: calc(50% - 10px);
  padding: 20px;
  margin-top: 20px;
  background: #f2f2f2;
  border-radius: 20px;
}

.section-2-cols .section-col:nth-child(1),
.section-2-cols .section-col:nth-child(2) {
  margin-top: 0;
}

.section-2-cols.col-reverse .section-col,
.section-2-cols .section-col.col-reverse {
  flex-flow: column-reverse;
  justify-content: space-between;
}

.section-2-cols .content {
  padding: 20px;
}

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

  .section-2-cols .section-box {
    flex-flow: column;
  }

  .section-2-cols .section-col {
    width: 100%;
  }

  .section-2-cols .section-col + .section-col {
    margin-top: 20px;
  }

  .section-2-cols .content {
    padding: 20px 0 10px;
  }

  .section-2-cols.col-reverse .content {
    padding: 0 0 20px;
  }

}



/* SECTION 3 COLUMNS / grid */

.section-3-cols .section-box {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-3-cols .section-col {
  display: flex;
  flex-flow: column;
  width: calc(33.333% - 13px);
  padding: 20px;
  margin-top: 20px;
  background: #f2f2f2;
  border-radius: 20px;
}

.section-3-cols .section-col:nth-child(1),
.section-3-cols .section-col:nth-child(2),
.section-3-cols .section-col:nth-child(3) {
  margin-top: 0;
}

.section-3-cols.col-reverse .section-col,
.section-3-cols .section-col.col-reverse {
  flex-flow: column-reverse;
  justify-content: space-between;
}

.section-3-cols .content {
  padding: 20px;
}

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

  .section-3-cols .section-box {
    flex-flow: column;
  }

  .section-3-cols .section-col {
    width: 100%;
  }

  .section-3-cols .section-col + .section-col {
    margin-top: 20px;
  }

  .section-3-cols .content {
    padding: 20px 0 10px;
  }

}



/* SECTION TEXT|LARGE MEDIA */

.section-text-large-media .section-box {
  display: flex;
  flex-flow: row;
  align-items: center;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 20px;
}

.section-text-large-media.row-reverse .section-box {
  flex-flow: row-reverse;
}

.section-text-large-media .content {
  width: 41%;
  padding: 20px 40px;
}

.section-text-large-media .media {
  width: 59%;
}

.section-text-large-media .media-box {
  border-radius: 0;
}

.section-text-large-media .media-box.gradient::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 1%,rgba(0,0,0,0) 49%,rgba(0,0,0,0) 100%);
}

.section-text-large-media .media-icon {
  width: 50px;
  left: 40px;
  top: 40px;
  bottom: unset;
}

.section-text-large-media.row-reverse .media-box.gradient::after {
  background: linear-gradient(-120deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 1%,rgba(0,0,0,0) 49%,rgba(0,0,0,0) 100%);
}

.section-text-large-media.row-reverse .media-icon {
  right: 40px;
  top: 40px;
  left: unset;
  bottom: unset;
}

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

  .section-text-large-media .section-box,
  .section-text-large-media.row-reverse .section-box {
    flex-flow: column-reverse;
  }

  .section-text-large-media .content,
  .section-text-large-media .media {
    width: 100%;
  }

  .section-text-large-media .content {
    padding: 20px 20px 25px;
  }

}



/* SECTION: LARGE BANNER */

.section-large-banner .section-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.large-banner-bg {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  bottom: 0;
  background: center 0 no-repeat;
  background-size: cover;
  pointer-events: none;
}

.section-large-banner .inner-wrap {
  max-width: 1193px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}

.section-large-banner .content {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 215px 0;
  color: #fff;
  z-index: 2;
}

.section-large-banner .content h2 {
  margin-bottom: 10px;
  color: #fff;
}

.section-large-banner .content > div {
  width: 100%;
  max-width: 550px;
}

.section-large-banner .learn-more {
  color: #fff;
}

.banner-logos {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  overflow: hidden;
}

.banner-logos ul,
.banner-logos li {
  padding: 0;
  margin: 0;
}

.banner-logos ul {
  display: flex;
  min-width: 1039px;
  margin: 0 -10px;
  align-items: center;
  justify-content: space-between;
}

.banner-logos li {
  padding: 0 10px;
  pointer-events: none;
}

.banner-logos li::before {
  display: none;
}

.banner-logos img {
  display: block;
  max-width: unset;
}

.section-large-banner.full-width {
  padding: 0;
}

.section-large-banner.full-width .wrap {
  max-width: unset;
  padding: 0;
} 

.section-large-banner.full-width .section-box {
  border-radius: 0;
}

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

  .banner-logos {
    padding: 0 40px;
    left: 0;
    right: 0;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .banner-logos::-webkit-scrollbar {
    display: none;
  }

}

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

  .section-large-banner .content {
    padding: 20.15vw 0;
  }

}

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

  .section-large-banner .content {
    padding: 154px 0;
  }

  .banner-logos {
    padding: 0 25px;
    cursor: move;
  }

}



/* SECTION: LOGO GRID */

.section-logo-grid .section-box {
  padding: 40px;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 20px;
}

.section-logo-grid ul,
.section-logo-grid ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

.section-logo-grid ul li { 
  display: inline-block;
  width: 25%;
  padding: 21px;
  vertical-align: middle;
}

.section-logo-grid img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}

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

  .section-logo-grid .section-box {
    padding: 25px 0;
  }

  .section-logo-grid ul li {
    width: 33.33%;
    padding: 15px 10px;
  }

}



/* SECTION: FAQ */

.section-faq {
  padding: 50px 0;
  background-color: #f2f2f2;
}

.section-faq .section-box {
  padding: 30px 40px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
}

.faq-item {
  padding: 15px 0;
}

.faq-item + .faq-item {
  border-top: 1px solid #e6e6e6;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-toggle {
  display: block;
  padding: 13px 40px 13px 0;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none!important;
  color: #000;
}

.faq-toggle::after {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/faq-arr.svg) center no-repeat;
  background-size: contain;
  transition: transform .2s ease;
}

.faq-toggle.opened::after {
  transform: scaleY(-1);
}

.faq-answer {
  display: none;
}

.faq-answer p:last-child {
  padding: 0 0 20px;
  margin: 0;
}

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

  .section-faq .section-box {
    padding: 20px 25px;
  }

  .faq-toggle {
    padding: 10px 40px 10px 0;
    font-size: 16px;
  }

}



/* SECTION: SLIDER */

.section-slider {
  padding: 85px 0 90px;
  background-color: #e6e6e6;
}

.section-slider h2 {
  margin-bottom: 40px;
  text-align: center;
}

.slider {
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 20px;
}

.slide-box {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  font-size: 14px;
}

.slide-box .content {
  width: 45%;
  padding: 0 20px;
}

.slide-box .media {
  width: 51%;
  padding: 0 0 0 40px;
}

.slider-nav {
  margin-top: 20px;
}

.slider-nav ul {
  display: flex;
  flex-flow: row;
  padding: 0;
  margin: 0 -5px;
}

.slider-nav ul li {
  display: block;
  width: 1px;
  padding: 0 5px;
  margin: 0;
  flex-grow: 1;
  overflow: hidden;
}

.slider-nav ul li::before {
  display: none;
}

.slider-nav a {
  display: block;
  text-decoration: none;
  color: #404040;
}

.slider-nav a i {
  display: block;
  height: 5px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  transform: translate3d(0,0,0);
}

.slider-nav a i::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 3px;
  transform: translateX(-101%);
}

.slider-nav a.active i::before {
  transform: translateX(0);
  transition: transform 5s linear;
}

.slider-nav a span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slider-nav a.active,
.slider-nav a:hover {
  color: #000;
}

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

  .section-slider h2 {
    font-size: 28px;
  }

  .slide-box {
    flex-flow: column;
    min-height: 500px;
  }

  .slide-box .content,
  .slide-box .media {
    width: 100%;
  }

  .slide-box .content {
    padding: 0;
  }

  .slide-box .media {
    padding: 25px 0 0;
  }

  .slider-nav ul {
    display: block;
    width: 10000px;
    transition: transform .5s ease;
  }

  .slider-nav ul li {
    display: inline-block;
    width: 70vw;
  }

}



/* DARK THEME SECTIONS */

.section-dark h2,
.section-dark h3,
.section-dark a,
.section-dark .learn-more {
  color: #fff;
}

.section-dark .section-box,
.section-2-cols.section-dark .section-col,
.section-3-cols.section-dark .section-col,
.section-slider.section-dark .slider,
.section-text-content.section-dark {
  color: #fff;
  background: #0d0d0d;
}

.section-text-media.section-dark,
.section-2-cols.section-dark,
.section-3-cols.section-dark,
.section-text-large-media.section-dark,
.section-large-banner.section-dark,
.section-logo-grid.section-dark,
.section-faq.section-dark,
.section-slider.section-dark {
  background-color: #1a1a1a;
}

.section-2-cols.section-dark .section-box,
.section-3-cols.section-dark .section-box, 
.section-slider.section-dark .section-box,
.featured-post.section-dark,
.articles-grid.section-dark {
  background: none;
}

.section-logo-grid.section-dark .section-box {
  background: #f2f2f2;
}

.section-faq.section-dark .section-box {
  background: #fff;
}

.section-faq.section-dark .section-box,
.section-faq.section-dark a {
  color: #000;
}

.section-slider.section-dark .slider-nav a i {
  background: #444;
}

.section-slider.section-dark .slider-nav a i::before {
  background: #fff;
}

.section-slider.section-dark .slider-nav a {
  color: #bbb;
}

.section-slider.section-dark .slider-nav a.active {
  color: #eee;
}



/* INSIGHTS / BLOG */

.blog,
.page-template-page-insights {
  background: #1a1a1a;
}

.insights {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.insights .featured-post {
  padding: 0 0 20px;
}

.articles-grid {
  padding: 0 0 100px;
}

.articles-grid .section-box {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  background: none;
}

.articles-grid .section-col {
  display: flex;
  flex-flow: column;
  width: calc(33.333% - 13px);
  padding: 20px;
  margin-bottom: 20px;
  background: #000;
  border-radius: 20px;
}

.articles-grid .section-col-dummy {
  visibility: hidden;
}

.articles-grid .content {
  padding: 30px 20px 20px;
}

.articles-grid .media {
  border-radius: 20px;
}

.articles-grid h4 {
  margin: 0;
}

.articles-grid a {
  text-decoration: none;
}

.articles-grid a:hover {
  text-decoration: underline;
}

.load-more {
  padding-top: 30px;
  text-align: center;
}

.single-post,
.single-page {
  background: #f2f2f2;
}

.page-content {
  min-height: 500px;
  padding: 65px 110px;
  margin-top: -100px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  border-radius: 20px;
  background: #fff;
}

.page-content .intro {
  margin-bottom: 30px;
}

.page-content .intro p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.page-content .intro p:last-child {
  margin: 0;
}

.page-content a {
  text-decoration: underline;
}

.page-content a:hover {
  text-decoration: none;
}

.page-content .media-box {
  margin-bottom: 30px;
}

.media-box img {
  width: 100%;
  margin: 0;
}

.page-content img[class*="wp-image"] {
  max-width: 100%;
  margin: 40px 0;
  border-radius: 20px;
}

.page-template-page-simple {
  background-color: #f2f2f2;
}

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

  .articles-grid .section-col {
    width: calc(50% - 10px);
  }

  .articles-grid .section-col-dummy {
    display: none;
  }

}

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

  .insights {
    margin-top: -60px;
  }

  .page-content {
    padding: 25px 20px;
    margin: -60px 0 40px;
  }

  .articles-grid .section-col {
    display: block;
    width: 100%;
  }

  .articles-grid .content {
    padding: 20px 0 5px;
  }

  .page-content .intro p {
    font-size: 16px;
  }

  .page-content .intro,
  .page-content .media-box {
    margin-bottom: 25px;
  }

}



/* FOOTER */

footer {
  text-align: center;
  color: #bfbfbf;
  background: #000;
}

.footer-cta {
  padding: 130px 0 114px;
}

.footer-cta .wrap {
  max-width: 700px;
}

.footer-cta .h1 {
  font-weight: normal;
  color: #fff;
}

.footer-cta .btn {
  margin-top: 30px;
  color: #fff;
  border-color: #fff;
}

.footer-cta .btn:hover {
  color: #000;
}

.footer-bottom {
  padding: 34px;
  font-size: 12px;
  background: #0d0d0d;
}

.footer-bottom ul,
.footer-bottom li {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom li {
  margin-left: 40px;
}

.footer-bottom li::before {
  display: none;
}

.footer-bottom li a:hover {
  color: #fff;
}

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

  .footer-cta {
    padding: 85px 0;
  }

  .footer-bottom {
    padding: 23px;
  }

  .footer-bottom ul {
    display: block;
  }

  .footer-bottom li {
    display: block;
    margin: 20px 0 0;
  }

}
