/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }
  a:active, a:hover {
    outline: 0; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
  text-transform: none; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }
  input::-moz-focus-inner {
    border: 0;
    padding: 0; }
  input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */ }
  input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto; }
  input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box; }
    input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

.is-hidden {
  display: none !important; }

.is-invisible {
  visibility: none !important; }

.block {
  display: block !important; }

.inline {
  display: inline !important; }

.inline-block {
  display: inline-block !important; }

.weight-300 {
  font-weight: 300 !important; }

.weight-400 {
  font-weight: 400 !important; }

.weight-500 {
  font-weight: 500 !important; }

.weight-600 {
  font-weight: normal !important; }

.weight-700 {
  font-weight: 700 !important; }

.relative {
  position: relative !important; }

.absolute {
  position: absolute !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.vertical-top {
  vertical-align: top !important; }

.vertical-middle {
  vertical-align: middle !important; }

.vertical-bottom {
  vertical-align: bottom !important; }

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

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

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

.mt0 {
  margin-top: 0 !important; }

.mt1 {
  margin-top: 1em !important; }

.mb0 {
  margin-bottom: 0 !important; }

.mb1 {
  margin-bottom: 1em !important; }

.no-decorate {
  text-decoration: none; }
  .no-decorate:hover {
    text-decoration: none; }
  .no-decorate:focus {
    outline: none; }

.icon-button {
  border: none;
  background-color: transparent; }
  .icon-button:focus {
    outline: none; }

.vertical-align {
  /*  @extend %vertical-align; */ }

@font-face {
  font-family: 'Chronicle';
  src: url("../../public/fonts/Chronicle/Chronicle-Light.woff2") format("woff2"), url("../../public/fonts/Chronicle/Chronicle-Light.woff") format("woff"), url("../../public/fonts/Chronicle/Chronicle-Light.otf");
  font-weight: normal; }
@font-face {
  font-family: 'GothamB';
  src: url("../../public/fonts/Gotham/Gotham-Bold.woff2") format("woff2"), url("../../public/fonts/Gotham/Gotham-Bold.woff") format("woff"), url("../../public/fonts/Gotham/Gotham-Bold.otf");
  font-weight: normal; }
@font-face {
  font-family: 'GothamL';
  src: url("../../public/fonts/Gotham/Gotham-Light.woff2") format("woff2"), url("../../public/fonts/Gotham/Gotham-Light.woff") format("woff"), url("../../public/fonts/Gotham/Gotham-Light.otf");
  font-weight: normal; }
@font-face {
  font-family: 'GothamR';
  src: url("../../public/fonts/Gotham/Gotham-Regular.woff2") format("woff2"), url("../../public/fonts/Gotham/Gotham-Regular.woff") format("woff"), url("../../public/fonts/Gotham/Gotham-Regular.otf");
  font-weight: normal; }
@font-face {
  font-family: 'Noteworthy';
  src: url("../../public/fonts/Noteworthy/Noteworthy-Bold.woff2") format("woff2"), url("../../public/fonts/Noteworthy/Noteworthy-Bold.woff") format("woff"), url("../../public/fonts/Noteworthy/Noteworthy-Bold.otf");
  font-weight: normal; }
.phone-icon {
  /*  @extends %icon;*/
  width: 25px;
  height: 25px;
  background-image: url(""); }

@media (min-width: 64.063em) {
  .phone-icon {
    width: 40px;
    height: 40px; } }
* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

input, select, textarea, button {
  font: 14px / 1.4 "Roboto", Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif; }

body {
  font: 14px / 1.4 "Roboto", Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif;
  color: #333333; }

a {
  color: #333333;
  text-decoration: none; }
  a:hover, a:active {
    text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1; }

h1 {
  font-size: 30px; }

h2 {
  font-size: 21px; }

h3 {
  font-size: 16px; }

h4 {
  font-size: 14px; }

h5 {
  font-size: 12px; }

h6 {
  font-size: 11px; }

ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none; }

ol {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none; }
  ol ol {
    list-style-type: none; }

ul ol, ul ul ol, ul ol ol {
  list-style-type: none; }

ol ul ol, ol ol ol {
  list-style-type: none; }

dd {
  margin-left: 0; }

img {
  max-width: 100%;
  vertical-align: middle; }

div#content.site-content {
  padding-top: 22px; }

@media (min-width: 64.063em) {
  div#content.site-content {
    padding-top: 0; } }
.wpb_row {
  margin-bottom: 0px !important; }

.vc_row {
  margin-left: 0px !important;
  margin-right: 0px !important; }
  .vc_row p {
    margin-top: 0px !important; }

.wpb_column {
  padding: 0px !important; }

.entry-footer {
  display: none !important; }

/****PRINCIPAL BANNERS***************************************************/
.landing-banner {
  width: 100%;
  height: 365px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .landing-banner {
    margin-top: 0px; } }
.principal-banner {
  width: 100%;
  height: 692px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner {
    margin-top: 0px; } }
.principal-banner2 {
  width: 100%;
  height: 623px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner2 {
    margin-top: 0px; } }
.principal-banner3 {
  width: 100%;
  height: 593px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner3 {
    margin-top: 0px; } }
.principal-banner4 {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner4 {
    margin-top: 0px; } }
.principal-banner5 {
  width: 100%;
  height: 561px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner5 {
    margin-top: 0px; } }
.principal-banner6 {
  width: 100%;
  height: 431px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner6 {
    margin-top: 0px; } }
.principal-banner7 {
  width: 100%;
  height: 461px;
  overflow: hidden;
  background-size: cover;
  margin-top: 16px; }

@media (min-width: 64.063em) {
  .principal-banner7 {
    margin-top: 0px; } }
/****SUB SECTION BANNERS***************************************************/
.landing-header {
  width: 100%;
  height: 200px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .landing-header .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .landing-header .wpb_wrapper h2 {
      margin-bottom: 55px; }
  .landing-header p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 70%;
    margin: auto;
    display: none; }

@media (min-width: 64.063em) {
  .landing-header .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .landing-header p {
    font-size: 22px;
    display: block; } }
.sub-section-header {
  width: 100%;
  height: 568px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .sub-section-header .wpb_wrapper {
    position: relative;
    top: 20%;
    width: 100%;
    margin: auto; }
    .sub-section-header .wpb_wrapper h2 {
      margin-bottom: 45px; }
  .sub-section-header p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 70%;
    margin: auto; }

@media (min-width: 64.063em) {
  .sub-section-header .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .sub-section-header p {
    font-size: 22px; } }
.sub-section-header2 {
  width: 100%;
  height: 464px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .sub-section-header2 .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .sub-section-header2 .wpb_wrapper h2 {
      margin-bottom: 55px; }
  .sub-section-header2 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 70%;
    margin: auto;
    display: none; }

@media (min-width: 64.063em) {
  .sub-section-header2 .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .sub-section-header2 p {
    font-size: 22px;
    display: block; } }
.sub-section-header3 {
  width: 100%;
  height: 457px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .sub-section-header3 .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .sub-section-header3 .wpb_wrapper h2 {
      margin-bottom: 64px; }
  .sub-section-header3 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 90%;
    margin: auto;
    margin-top: 26px !important;
    display: none; }

@media (min-width: 64.063em) {
  .sub-section-header3 .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .sub-section-header3 p {
    font-size: 22px;
    width: 38%;
    display: block; } }
.sub-section-header4 {
  width: 100%;
  height: 464px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .sub-section-header4 .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .sub-section-header4 .wpb_wrapper h2 {
      margin-bottom: 64px; }
  .sub-section-header4 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 38%;
    margin: auto;
    margin-top: 26px !important; }

@media (min-width: 64.063em) {
  .sub-section-header4 .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .sub-section-header4 p {
    font-size: 22px; } }
.sub-section-header5 {
  width: 100%;
  height: 437px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto !important; }
  .sub-section-header5 .wpb_wrapper {
    position: relative;
    width: 100%;
    margin: auto; }
    .sub-section-header5 .wpb_wrapper h2 {
      margin-bottom: 0px !important;
      margin-top: 9px;
      width: 100% !important;
      text-align: center; }
  .sub-section-header5 .work-case-text-banner .wpb_wrapper {
    margin-top: 115px; }
  .sub-section-header5 .work-case-img-banner figure {
    height: 100%;
    width: 100% !important; }
  .sub-section-header5 .note-title {
    font-size: 18px;
    font-family: 'GothamB';
    color: white;
    font-weight: 100;
    width: 100%;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0px;
    height: 15px !important; }
  .sub-section-header5 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    letter-spacing: 1px;
    font-weight: normal;
    text-align: center;
    margin-top: 12px !important; }

@media (min-width: 64.063em) {
  .sub-section-header5 .wpb_wrapper h2 {
    text-align: left; } }
@media (min-width: 64.063em) {
  .sub-section-header5 .wpb_wrapper {
    padding-top: 30px; } }
@media (min-width: 64.063em) {
  .sub-section-header5 .work-case-text-banner .wpb_wrapper {
    margin-top: 80px; } }
@media (min-width: 64.063em) {
  .sub-section-header5 .note-title {
    text-align: left; } }
@media (min-width: 64.063em) {
  .sub-section-header5 p {
    text-align: left;
    width: 78%;
    font-size: 21px; } }
.sub-section-header6 {
  width: 100%;
  height: 338px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto !important; }
  .sub-section-header6 .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .sub-section-header6 .wpb_wrapper h2 {
      margin-bottom: 10px; }
  .sub-section-header6 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 70%;
    margin: auto; }

@media (min-width: 64.063em) {
  .sub-section-header6 .wpb_wrapper {
    top: 26%; } }
@media (min-width: 64.063em) {
  .sub-section-header6 p {
    font-size: 22px; } }
.sub-section-header7 {
  width: 100%;
  height: 496px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto; }
  .sub-section-header7 .wpb_wrapper {
    position: relative;
    top: 45%;
    width: 100%;
    margin: auto; }
    .sub-section-header7 .wpb_wrapper h2 {
      margin-bottom: 10px; }
  .sub-section-header7 p {
    font-size: 19px;
    color: white;
    font-family: 'GothamL';
    width: 70%;
    margin: auto;
    display: none; }

@media (min-width: 64.063em) {
  .sub-section-header7 .wpb_wrapper {
    top: 32%; } }
@media (min-width: 64.063em) {
  .sub-section-header7 p {
    font-size: 22px;
    display: block; } }
/****TEXTS BANNERS***************************************************/
.base-title {
  font-size: 28px;
  font-family: 'GothamB';
  color: white;
  font-weight: 100;
  width: 90%;
  margin: auto; }

@media (min-width: 64.063em) {
  .base-title {
    font-size: 48px; } }
.init-title {
  font-size: 28px;
  font-family: 'Chronicle';
  text-decoration: underline; }

@media (min-width: 64.063em) {
  .init-title {
    font-size: 48px; } }
.note-title {
  font-size: 24px;
  font-family: 'GothamB';
  color: white;
  font-weight: 100;
  width: 90%;
  margin: auto;
  display: block;
  margin-bottom: 9px; }

@media (max-width: 479px) {
  .note-title {
    height: inherit; } }
/****BUTTONS BANNERS***************************************************/
.btn-title {
  color: white;
  display: block;
  width: 170px;
  margin: auto;
  margin-top: 37px;
  padding: 6px 9px;
  font-size: 16px;
  font-family: 'GothamB';
  border: 2.5px solid white; }
  .btn-title:visited {
    color: white; }
  .btn-title:hover {
    color: #05A0BC;
    background: white;
    cursor: pointer; }

/****TEXTS DESCRIPTION SECTION***********************************************/
.base-sub-title {
  font-size: 28px;
  font-family: 'GothamL';
  letter-spacing: 2px;
  color: #07A9C6;
  margin: auto;
  margin-top: 30px;
  max-width: 1300px;
  overflow: hidden;
  line-height: 43px;
  padding: 0px 8%; }

@media (min-width: 64.063em) {
  .base-sub-title {
    font-size: 35px; } }
.init-sub-title {
  font-size: 28px;
  font-family: 'Chronicle';
  text-decoration: underline;
  font-weight: normal; }

@media (min-width: 64.063em) {
  .init-sub-title {
    font-size: 35px; } }
.text-desc {
  font-size: 16px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
  font-family: 'GothamL';
  font-weight: normal;
  color: #404040;
  margin-bottom: 60px !important; }
  .text-desc p a {
    color: #07A9C6;
    text-decoration: underline; }
  .text-desc h2 {
    font-size: 29px;
    color: #333333;
    padding-bottom: 31px; }
  .text-desc h3 {
    font-size: 25px;
    color: #333333;
    padding-bottom: 3px; }
  .text-desc h4 {
    color: #05A9C6;
    font-size: 16px;
    font-family: 'GothamB';
    font-weight: 100;
    text-align: left;
    margin-top: 43px;
    letter-spacing: 1px; }
  .text-desc ul {
    text-align: left;
    margin-left: 15px;
    margin-bottom: 38px; }
    .text-desc ul li {
      padding-bottom: 13px;
      list-style-type: circle; }

@media (min-width: 64.063em) {
  .text-desc {
    width: 58%; } }
/****DIVISION***************************************************/
.sub-null {
  width: 85px;
  height: 25px;
  border-bottom: 3px solid #FE6A65;
  margin: auto; }

/****DIVISION BANNER***************************************************/
.icon-banner {
  height: 124px;
  background: linear-gradient(0deg, #FFF 56%, transparent 54%); }
  .icon-banner img {
    top: 50%; }

.icon-banner-back {
  text-align: center;
  width: 123px;
  margin: auto;
  margin-bottom: 0px !important; }
  .icon-banner-back img {
    width: 118px; }

.icon-banner2 {
  height: 124px;
  background: linear-gradient(0deg, #FFF 73%, transparent 54%); }

.icon-banner-back2 {
  text-align: center;
  width: 164px;
  margin: auto;
  position: relative;
  top: -45px !important;
  margin-bottom: 0px !important; }

.icon-banner-img {
  position: relative;
  top: -78px;
  text-align: center !important; }

/****what WE DO***************************************************/
.colum-we-do {
  width: 100% !important;
  color: #D3D7DC;
  font-family: 'GothamL';
  font-weight: 700;
  font-size: 13.5px;
  padding: 30px 15px 12px 15px !important; }
  .colum-we-do h3 {
    color: white;
    letter-spacing: 2px;
    font-size: 19px;
    font-family: 'GothamB';
    font-weight: 100;
    padding-bottom: 10px; }

@media (min-width: 64.063em) {
  .colum-we-do {
    width: 25% !important; } }
.row-we-do {
  text-align: center;
  padding: 0px 0px;
  padding-bottom: 62px;
  background-size: cover; }

@media (min-width: 64.063em) {
  .row-we-do {
    background-size: cover; } }
.row-we-do2 {
  text-align: center;
  width: 90%;
  margin: auto !important;
  padding: 0px 0px;
  max-width: 1300px;
  overflow: hidden; }

.img-we-do {
  width: 100%;
  height: 95px !important; }

.btn-we-do {
  color: white;
  display: block;
  width: 270px;
  margin: auto;
  margin-top: 37px;
  padding: 10px 9px;
  font-size: 16px;
  font-family: 'GothamB';
  border: 2.5px solid white; }
  .btn-we-do:visited, .btn-we-do:active, .btn-we-do:focus {
    color: white; }
  .btn-we-do:hover {
    color: #05A0BC;
    background: white;
    cursor: pointer; }

/****your CHALLENGES***************************************************/
.row-challenges0 {
  padding-bottom: 80px !important; }

.row-challenges {
  width: 86%;
  padding-bottom: 0px;
  margin: auto !important;
  max-width: 1300px; }

.colum-challenges {
  padding: 10px 6px 10px 6px !important;
  width: 99% !important; }
  .colum-challenges h3 {
    color: #04A9C6;
    font-size: 24px;
    font-family: 'GothamB';
    font-weight: 100;
    letter-spacing: 2px;
    padding-bottom: 22px; }
  .colum-challenges p {
    font-size: 17px;
    color: #585858;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 30px; }

@media (min-width: 64.063em) {
  .colum-challenges {
    width: 50% !important;
    padding: 10px 40px 10px 40px !important; } }
.img-challenges {
  height: 80px; }

/****our WORK***************************************************/
.title-our-work {
  background: #333;
  margin-bottom: 0px !important; }
  .title-our-work h2 {
    margin-top: 0px !important;
    color: white !important;
    padding: 47px 10px 44px 10px;
    font-size: 34px; }

.row-our-work-home {
  max-width: 1300px;
  margin: auto !important; }
  .row-our-work-home .work-home-block .vc_column-inner {
    padding-left: 0;
    padding-right: 0; }

.work-home-block-div0 {
  height: 326px;
  margin-bottom: 0px !important;
  overflow: hidden;
  background-size: cover; }
  .work-home-block-div0 img {
    height: 326px !important; }

.work-home-block-div1 {
  text-align: center !important;
  height: 326px;
  margin-bottom: 0px !important;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  background-size: cover; }
  .work-home-block-div1 figure {
    width: 100% !important;
    height: 100% !important;
    position: relative; }
  .work-home-block-div1 a {
    height: 100%;
    width: 100%; }
    .work-home-block-div1 a img {
      filter: brightness(0%) invert(100%);
      max-height: 60px;
      max-width: 80%;
      position: relative;
      top: 42%;
      width: auto; }
  .work-home-block-div1:hover {
    opacity: 0;
    transition: opacity .35s ease-in-out; }
    .work-home-block-div1:hover a {
      height: 100%; }

/****what our CLIENTS SAY********************************************/
.meta-slider-awards {
  width: 100%;
  text-align: center;
  padding: 0px 5%;
  margin: auto;
  margin-top: 69px !important;
  max-width: 1300px; }

.flex-direction-nav li a {
  width: 52px !important;
  height: 52px !important;
  margin: -85px -27px 0 !important;
  background: url("../../public/images/bg_direction_nav.png"); }

.home-slider1, .home-slider2 {
  padding-top: 43px; }

.home-slider1 {
  padding-bottom: 72px; }

.home-slider2 {
  display: none; }

#metaslider_181 ul,
#metaslider_3200 ul,
#metaslider_3204 ul,
#metaslider_3415 ul {
  width: 100%; }
#metaslider_181 li,
#metaslider_3200 li,
#metaslider_3204 li,
#metaslider_3415 li {
  display: block !important; }
#metaslider_181 img,
#metaslider_3200 img,
#metaslider_3204 img,
#metaslider_3415 img {
  width: auto;
  height: 43px !important;
  margin: auto !important; }
#metaslider_181 div.caption-wrap,
#metaslider_3200 div.caption-wrap,
#metaslider_3204 div.caption-wrap,
#metaslider_3415 div.caption-wrap {
  position: relative;
  top: 20px;
  background: none;
  color: #131313;
  width: 65%;
  margin: auto;
  padding-bottom: 30px;
  letter-spacing: 1px;
  font-size: 15px;
  font-family: 'GothamL';
  font-weight: normal; }
#metaslider_181 .flex-direction-nav a,
#metaslider_3200 .flex-direction-nav a,
#metaslider_3204 .flex-direction-nav a,
#metaslider_3415 .flex-direction-nav a {
  width: 52px !important;
  height: 52px !important;
  margin: -6% 2% 0 !important; }

.btn-slider {
  color: #05A0BC !important;
  display: block;
  width: 250px;
  margin: auto;
  margin-top: 37px;
  padding: 9px 9px !important;
  font-size: 16px;
  font-family: 'GothamB';
  border: 3px solid #05A0BC; }
  .btn-slider:visited {
    color: #05A0BC !important; }
  .btn-slider:hover {
    color: white !important;
    background: #05A0BC;
    cursor: pointer; }

@media (min-width: 64.063em) {
  .btn-slider {
    width: 300px; } }
/****TALK with US***************************************************/
.section-form {
  padding: 15px; }

.contact-form2 {
  background: white;
  margin: auto !important;
  width: 100%;
  max-width: 1300px;
  padding: 15px;
  margin-top: 0px !important;
  -webkit-box-shadow: 0px 0px 99px -19px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 99px -19px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 68px -19px rgba(0, 0, 0, 0.75); }

@media (min-width: 64.063em) {
  .contact-form2 {
    width: 92% !important;
    padding: 10px 40px 60px 40px !important;
    margin-bottom: 64px !important;
    margin-top: 52px !important; } }
.contact-title h2, .contact-title span {
  font-size: 28px;
  margin-top: 16px; }
.contact-title .contact-span1 {
  display: block;
  padding-top: 13px !important;
  width: 78% !important;
  font-family: 'GothamB';
  text-align: left;
  font-weight: 300;
  color: #04A9C6;
  font-size: 18px;
  letter-spacing: 2px; }
.contact-title .contact-span2 {
  display: block;
  padding-top: 13px !important;
  width: 20% !important;
  font-family: 'GothamB';
  text-align: left;
  font-weight: 300;
  color: #FE6A65;
  font-size: 14px;
  letter-spacing: 2px; }
.contact-title .contact-span1, .contact-title .contact-span2 {
  width: 100%;
  display: block; }

@media (min-width: 64.063em) {
  .contact-title h2, .contact-title span {
    margin-top: 36px; } }
@media (min-width: 64.063em) {
  .contact-title .contact-span2 {
    text-align: right; } }
@media (min-width: 64.063em) {
  .contact-title .contact-span1, .contact-title .contact-span2 {
    display: inline-block; } }
.btn-contact {
  color: #FE6A65 !important;
  display: block !important;
  width: 169px !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 14px 5px !important;
  font-size: 16px !important;
  font-family: "GothamL" !important;
  font-weight: normal;
  border: 2.5px solid white !important;
  border: 2px solid !important;
  border-color: #FE6A65 !important;
  border-radius: 0px !important;
  background: white !important;
  box-shadow: none !important; }
  .btn-contact:hover {
    color: white !important;
    background: #FE6A65 !important;
    cursor: pointer !important; }

.ninja-forms-all-fields-wrap {
  text-align: left; }
  .ninja-forms-all-fields-wrap div input {
    border-radius: 0px; }

#ninja_forms_field_8_div_wrap, #ninja_forms_field_9_div_wrap, #ninja_forms_field_11_div_wrap, #ninja_forms_field_13_div_wrap {
  width: 100% !important;
  display: inline-block; }

#ninja_forms_field_11_div_wrap, #ninja_forms_field_13_div_wrap {
  vertical-align: top; }

@media (min-width: 64.063em) {
  #ninja_forms_field_8_div_wrap, #ninja_forms_field_9_div_wrap, #ninja_forms_field_11_div_wrap, #ninja_forms_field_13_div_wrap {
    width: 24.6% !important;
    display: inline-block; } }
input#ninja_forms_field_8, input#ninja_forms_field_9 {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99%; }

select#ninja_forms_field_11, select#ninja_forms_field_13 {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99%; }
select#ninja_forms_field_11, select#ninja_forms_field_13 {
  -webkit-appearance: none !important;
  -moz-appearance: none;
  appearance: none;
  background: url(../../public/images/arrow-down-01-128-lightblue.png) #FFF;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position-y: 46%;
  background-position-x: 94%;
  background-position: 96% 49%;
  height: 58px;
  letter-spacing: 0.4px;
  padding: 9px;
  font-size: 17px;
  color: #A3A3A3;
  width: 99%;
  height: 45px !important;
  vertical-align: top;
  border-radius: 0px; }

@media (min-width: 64.063em) {
  input#ninja_forms_field_8, input#ninja_forms_field_9 {
    width: 91% !important; }

  select#ninja_forms_field_11, select#ninja_forms_field_13 {
    width: 91% !important; } }
#ninja_forms_field_2_div_wrap, #ninja_forms_field_14_div_wrap {
  width: 100% !important;
  display: inline-block; }

@media (min-width: 64.063em) {
  #ninja_forms_field_2_div_wrap, #ninja_forms_field_14_div_wrap {
    width: 48.3% !important;
    display: block; } }
input#ninja_forms_field_2, input#ninja_forms_field_14 {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99% !important;
  margin-top: 6px; }

.section-form .field-wrap.textarea-wrap {
  width: 99% !important;
  position: inherit; }

@media (min-width: 64.063em) {
  .section-form .field-wrap.textarea-wrap {
    font-family: 'GothamB';
    color: #04A9C6;
    font-size: 14px;
    letter-spacing: 2px;
    right: 2.9%;
    width: 47% !important;
    margin-bottom: 0px !important;
    overflow: hidden;
    position: absolute;
    top: 73px; } }
#ninja_forms_field_3_div_wrap label {
  color: #04A9C6; }

.section-form2 .field-wrap.textarea-wrap {
  width: 99% !important;
  position: inherit; }

@media (min-width: 64.063em) {
  .section-form2 .field-wrap.textarea-wrap {
    font-family: 'GothamB';
    color: #04A9C6;
    font-size: 14px;
    letter-spacing: 2px;
    right: 2.9%;
    width: 47% !important;
    margin-bottom: 0px !important;
    overflow: hidden;
    position: absolute;
    top: 73px; } }
.field-wrap.textarea-wrap textarea {
  width: 100% !important;
  padding: 9px;
  font-size: 14px;
  margin: 0px 0px 0px 0px;
  background: white;
  color: black;
  height: 89px; }

#nf_processing_1 input {
  display: none !important; }

.ninja-forms-field-error {
  display: none !important; }
  .ninja-forms-field-error p {
    color: red !important; }

#ninja_forms_form_1_response_msg p {
  color: red;
  padding-bottom: 0px !important;
  display: block;
  top: -12px;
  position: relative; }

.ninja-forms-req-symbol {
  display: none; }

/****our AWARDS***************************************************/
#metaslider_174 ul {
  width: 100%; }
#metaslider_174 li {
  display: block;
  width: 34%; }
#metaslider_174 img {
  width: auto;
  height: 200px;
  margin: auto !important; }
#metaslider_174 div.caption-wrap {
  position: relative;
  top: 4px;
  background: white;
  color: #333333;
  width: 78%;
  margin: auto;
  padding-bottom: 106px;
  letter-spacing: 2px; }

.slide-178 img {
  width: 138px !important;
  height: auto !important;
  padding-bottom: 31px !important; }

/****INSIGHTS SECTION**************************************************/
.insights-section h2 {
  font-size: 33px;
  font-family: 'GothamL';
  letter-spacing: 2px;
  color: #07A9C6;
  margin-top: 0px; }

/****INSIGHTS FILTER***************************************************/
.filter-section {
  padding-bottom: 62px; }
  .filter-section .index-inside {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    margin: auto; }
  .filter-section article.index-posts {
    box-shadow: 0px 10px 44px -10px rgba(0, 0, 0, 0.75);
    width: 84%;
    background: white;
    display: block;
    vertical-align: top;
    margin: 13px; }
    .filter-section article.index-posts a {
      color: #333333;
      display: flex;
      height: 100%;
      transition: all .2s ease; }
      .filter-section article.index-posts a:hover {
        text-decoration: none; }
        .filter-section article.index-posts a:hover .thumb {
          transform: scale(1.1); }
        .filter-section article.index-posts a:hover .sub-null2 {
          width: 100%; }
      .filter-section article.index-posts a .entry-header {
        display: flex;
        flex-direction: column; }
    .filter-section article.index-posts .thumb-container {
      overflow: hidden; }
    .filter-section article.index-posts .thumb {
      background-position: 50%;
      background-repeat: no-repeat;
      background-size: cover;
      transition: all .2s ease; }
    .filter-section article.index-posts .sub-null2 {
      transition: all .2s ease;
      flex: 1 1 auto; }
  .filter-section h3 {
    font-family: 'GothamB';
    font-size: 17px;
    text-align: left;
    font-weight: 100;
    line-height: 27px;
    margin-top: 9px;
    margin-bottom: 6px;
    text-transform: none; }
  .filter-section h6 p {
    color: #636363;
    font-family: 'GothamL';
    font-size: 14px;
    text-align: left;
    font-weight: normal;
    line-height: 20px;
    margin-top: 9px;
    margin-bottom: 11px;
    text-transform: none; }
  .filter-section hgroup {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin: 0 auto;
    width: 85%;
    text-align: center;
    padding-top: 7px;
    height: auto;
    overflow: hidden; }

@media (min-width: 64.063em) {
  .filter-section article.index-posts {
    margin: 20px;
    width: 30%; }
    .filter-section article.index-posts div.thumb {
      height: 243px; } }
@media (min-width: 64.063em) {
  .filter-section h3 {
    font-size: 32px;
    line-height: 40px; } }
div.container-filter {
  margin-bottom: 37px;
  margin-top: 45px; }
  div.container-filter hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
    margin-top: 56px;
    width: 88%; }

.show-text {
  font-family: 'GothamB';
  font-size: 15px;
  padding-right: 9px; }

select.categories-filter {
  border: 1px solid #C5C7C8;
  width: 267px;
  height: 43px;
  background: white;
  padding: 10px;
  font-family: 'GothamL';
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 0.4px;
  color: #868686; }
  select.categories-filter option {
    padding: 10px 10px; }
    select.categories-filter option:not(:checked) {
      margin: 0px; }

/****content FILTER***************************************************/
#inside hr {
  background-color: #ccc;
  border: 0;
  height: 2px;
  margin-bottom: 1.5em;
  margin-top: 56px;
  width: 88%; }

#inside2 .thumb {
  background-size: cover !important; }

.btn-filter {
  color: #05A0BC !important;
  display: block !important;
  width: 175px !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 6px 9px !important;
  font-size: 15px !important;
  font-family: 'GothamB' !important;
  border: 2px solid #05A0BC !important;
  text-transform: uppercase !important; }
  .btn-filter:visited {
    color: white; }
  .btn-filter:hover {
    color: white !important;
    background: #05A0BC !important;
    cursor: pointer !important; }

.category {
  text-align: left;
  font-size: 14px;
  font-family: 'GothamB';
  text-transform: uppercase;
  font-weight: 100;
  margin-top: 18px; }

#category12, #category33 {
  color: #FE6A64 !important; }

#category11 {
  color: #C391DF !important; }

#category9 {
  color: #FBB870 !important; }

#category10 {
  color: #84ABDA !important; }

#category13 {
  color: #7CC576 !important; }

.date {
  text-align: left;
  font-size: 14px;
  font-family: 'GothamL';
  text-transform: none;
  font-weight: normal;
  margin-top: 0px;
  color: #6F6F6F;
  margin-bottom: 20px; }

.sub-null2 {
  width: 85px;
  height: 0px;
  border-bottom: 3px solid #FE6A65;
  margin-bottom: 23px;
  margin-top: 23px; }

/****SOLUTIONS***************************************************/
.solutions-blocks {
  max-width: 1300px;
  margin: auto !important;
  float: none !important; }
  .solutions-blocks .row-solutions1 {
    background-size: 100% 50% !important;
    background-color: #F7F7F7;
    background-repeat: no-repeat; }

@media (min-width: 64.063em) {
  .solutions-blocks .row-solutions1 {
    background-size: 52% 100% !important; } }
.row-solutions2 {
  background-size: 100% 50% !important;
  background-color: #F7F7F7;
  background-repeat: no-repeat; }

@media (min-width: 64.063em) {
  .row-solutions2 {
    background-size: 52% 100% !important;
    background-position: right; } }
.col-solutions1 {
  padding-top: 0px !important;
  margin-top: 0px !important;
  padding-left: 12.6% !important;
  padding-right: 8% !important;
  width: 100% !important;
  float: left !important;
  background: #FFFFFF;
  text-align: left;
  height: auto;
  padding-bottom: 47px !important; }

@media (min-width: 64.063em) {
  .col-solutions1 {
    margin-top: 200px !important; } }
.img-sol-tip {
  width: 50px; }

.text-sol-tip {
  width: 78%;
  padding-left: 11px; }

.img-sol-tip, .text-sol-tip {
  display: inline-block;
  vertical-align: middle; }

.img-sol-tip4 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px; }

@media (min-width: 64.063em) {
  .img-sol-tip4 {
    width: 50px;
    margin-bottom: 0px;
    margin-bottom: 0px; } }
.text-sol-tip4 {
  width: 78%;
  padding-left: 11px; }

.img-sol-tip4 {
  display: inline-block;
  vertical-align: middle; }

.line-text-sol {
  width: 100%;
  margin-top: 10px; }

.col-solutions1 .img1, .col-solutions1 .img2, .col-solutions1 .img3, .col-solutions1 .img4, .col-solutions1 .img5, .col-solutions1 .img6 {
  width: 40px; }
.col-solutions1 p {
  font-size: 14.5px;
  font-family: 'GothamL';
  font-weight: normal;
  margin-bottom: 0; }
.col-solutions1 .base-sub-title {
  font-size: 27px;
  margin-top: 42px !important;
  margin-bottom: 15px;
  padding: 0px 8%; }
.col-solutions1 .init-sub-title {
  font-size: 27px; }
.col-solutions1 .col-solutions1 .base-sub-title {
  margin-top: 72px !important;
  padding: 0px 8%; }

@media (min-width: 64.063em) {
  .col-solutions1 {
    width: 50.4% !important;
    background-size: 100%;
    margin-top: 0px !important;
    padding-top: 29px !important;
    padding-bottom: 113px !important; } }
.col-solutions2 {
  margin-top: 0px !important;
  padding-top: 0px !important;
  padding-left: 8.6% !important;
  padding-right: 11% !important;
  width: 100% !important;
  float: right !important;
  background: #F7F7F7;
  text-align: left;
  height: auto;
  padding-bottom: 47px !important; }
  .col-solutions2 .img1 {
    margin-right: 39px;
    width: 40px; }
  .col-solutions2 .img2 {
    margin-right: 20px;
    width: 40px; }
  .col-solutions2 .img3 {
    margin-right: 26px;
    width: 40px; }
  .col-solutions2 .img4 {
    margin-right: 33px;
    width: 40px; }
  .col-solutions2 .img5 {
    margin-right: 19px;
    width: 40px; }
  .col-solutions2 p {
    font-size: 15px;
    font-family: 'GothamL';
    font-weight: normal;
    margin-bottom: 0;
    vertical-align: middle; }
  .col-solutions2 .base-sub-title {
    font-size: 27px;
    margin-top: 42px !important;
    margin-bottom: 15px;
    padding: 0px 8%; }
  .col-solutions2 .init-sub-title {
    font-size: 27px; }
  .col-solutions2 .col-solutions2 .base-sub-title {
    margin-top: 72px !important;
    padding: 0px 8%; }

@media (min-width: 64.063em) {
  .col-solutions2 {
    margin-top: 200px !important; } }
@media (min-width: 64.063em) {
  .col-solutions2 {
    width: 49.6% !important;
    background-size: 100%;
    margin-top: 0px !important;
    padding-top: 29px !important;
    padding-bottom: 113px !important; } }
.btn-solutions-more {
  color: #05A0BC !important;
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 37px;
  padding: 12px 9px !important;
  margin-left: 0px;
  text-align: center;
  font-size: 16px;
  font-family: 'GothamB';
  border: 3px solid #05A0BC;
  font-weight: 100;
  margin-bottom: 20px; }
  .btn-solutions-more:visited {
    color: #05A0BC !important; }
  .btn-solutions-more:hover {
    color: white !important;
    background: #05A0BC;
    cursor: pointer; }

/****WORK***************************************************/
.filter-section-work {
  /****INSIGHTS FILTER***************************************************/
  padding-bottom: 0px; }
  .filter-section-work article.index-posts {
    width: 100%;
    background-size: 100% 100% !important;
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    height: 325px;
    position: relative;
    margin-left: -5px; }
    .filter-section-work article.index-posts a div {
      height: 100% !important;
      width: 100%; }
      .filter-section-work article.index-posts a div img {
        filter: brightness(0%) invert(100%);
        position: relative;
        top: 39%;
        max-height: 60px;
        max-width: 80%;
        width: auto; }
      .filter-section-work article.index-posts a div:hover {
        opacity: 0;
        transition: opacity .35s ease-in-out; }
  .filter-section-work #main-content2 {
    margin-top: -7px;
    background: #222; }
  .filter-section-work div.container-filter2 {
    background: #333;
    margin-bottom: 0px;
    margin-top: 0px;
    display: inline-block;
    width: 90%; }
    .filter-section-work div.container-filter2 hr {
      background-color: #ccc;
      border: 0;
      height: 1px;
      margin-bottom: 1.5em;
      margin-top: 56px; }
    .filter-section-work div.container-filter2 select.categories-filter2 {
      -webkit-appearance: none !important;
      -moz-appearance: none;
      appearance: none;
      background: url(../../public/images/arrow-down-01-128-white.png) #333;
      background-size: 21px 21px;
      background-repeat: no-repeat;
      background-position-y: 46%;
      background-position-x: 94%;
      background-position: 90% 45%;
      float: right;
      border: 0px;
      border-right: 2px solid #49494B;
      border-left: 2px solid #49494B;
      color: white;
      width: 100% !important;
      height: 58px;
      /* background: #333; */
      padding: 16px;
      font-family: 'GothamL';
      font-weight: normal;
      font-size: 17px;
      letter-spacing: 0.4px; }
      .filter-section-work div.container-filter2 select.categories-filter2 option {
        padding: 10px 10px; }
      .filter-section-work div.container-filter2 select.categories-filter2:focus, .filter-section-work div.container-filter2 select.categories-filter2:active {
        border: 0px; }
      .filter-section-work div.container-filter2 select.categories-filter2 option:not(:checked) {
        margin: 0px; }
  .filter-section-work div.container-filter3 {
    margin-bottom: 0px;
    margin-top: 0px;
    display: inline-block;
    width: 100%;
    background: #333; }
    .filter-section-work div.container-filter3 hr {
      background-color: #ccc;
      border: 0;
      height: 1px;
      margin-bottom: 1.5em;
      margin-top: 56px; }
    .filter-section-work div.container-filter3 select.categories-filter2 {
      -webkit-appearance: none !important;
      -moz-appearance: none;
      appearance: none;
      background: url(../../public/images/arrow-down-01-128-white.png) #333;
      background-size: 21px 21px;
      background-repeat: no-repeat;
      background-position-y: 46%;
      background-position-x: 94%;
      background-position: 90% 45%;
      border: 0px;
      border-right: 2px solid #49494B;
      border-left: 2px solid #49494B;
      color: white;
      height: 58px;
      /* background: #333; */
      padding: 16px;
      font-family: 'GothamL';
      font-weight: normal;
      font-size: 17px;
      letter-spacing: 0.4px;
      float: none;
      width: 90% !important; }
      .filter-section-work div.container-filter3 select.categories-filter2 option {
        padding: 10px 10px; }
      .filter-section-work div.container-filter3 select.categories-filter2:focus {
        border: 0px; }
      .filter-section-work div.container-filter3 select.categories-filter2 option:not(:checked) {
        margin: 0px; }

@media (min-width: 768px) {
  .filter-section-work article.index-posts {
    width: 50%; } }
@media (min-width: 64.063em) {
  .filter-section-work article.index-posts {
    width: 25%; } }
@media (min-width: 64.063em) {
  .filter-section-work div.container-filter2 {
    width: 50%; } }
@media (min-width: 64.063em) {
  .filter-section-work div.container-filter2 select.categories-filter2 {
    width: 80% !important; } }
@media (min-width: 64.063em) {
  .filter-section-work div.container-filter3 {
    width: 50%; } }
@media (min-width: 64.063em) {
  .filter-section-work div.container-filter3 select.categories-filter2 {
    width: 50%;
    float: left;
    border-right: 2px solid #49494B; } }
.show-text {
  font-family: 'GothamB';
  font-size: 15px;
  padding-right: 9px; }

/****content FILTER***************************************************/
#main-content2 #inside hr {
  background-color: #ccc;
  border: 0;
  height: 2px;
  margin-bottom: 1.5em;
  margin-top: 56px;
  width: 88%; }

.btn-filter {
  color: #05A0BC !important;
  display: block !important;
  width: 175px !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 6px 9px !important;
  font-size: 15px !important;
  font-family: 'GothamB' !important;
  border: 2px solid #05A0BC !important;
  text-transform: uppercase !important; }
  .btn-filter:visited {
    color: white; }
  .btn-filter:hover {
    color: white !important;
    background: #05A0BC !important;
    cursor: pointer !important; }

.category {
  text-align: left;
  font-size: 14px;
  font-family: 'GothamB';
  text-transform: uppercase;
  font-weight: 100;
  margin-top: 8px; }

@media (min-width: 64.063em) {
  .category {
    margin-top: 18px; } }
#category12 {
  color: #FE6A64 !important; }

#category11 {
  color: #C391DF !important; }

#category9 {
  color: #FBB870 !important; }

#category10 {
  color: #84ABDA !important; }

#category13 {
  color: #7CC576 !important; }

.date {
  text-align: left;
  font-size: 14px;
  font-family: 'GothamL';
  text-transform: none;
  font-weight: normal;
  margin-top: 0px;
  color: #6F6F6F;
  margin-bottom: 20px; }

.text-desc3 {
  font-size: 19px !important;
  color: white !important;
  font-family: 'GothamL' !important;
  width: 60% !important;
  margin: auto !important;
  padding-top: 12px !important; }

@media (min-width: 64.063em) {
  .text-desc3 {
    font-size: 22px !important;
    width: 40% !important;
    padding-top: 29px !important; } }
/****STRATEGY***************************************************/
.row-strategic {
  width: 100%; }

.row-strategic1 {
  width: 92%;
  margin: auto !important;
  text-align: left;
  font-family: 'GothamL';
  padding-bottom: 30px;
  max-width: 1300px; }

.col-strategic1 {
  width: 95% !important;
  padding: 19px !important; }

@media (min-width: 64.063em) {
  .col-strategic1 {
    width: 49% !important; } }
.str-desc1, .str-desc4 {
  font-size: 27px;
  font-family: 'GothamB';
  font-weight: 100;
  letter-spacing: 0px;
  line-height: 33px;
  display: block; }

.str-desc2 {
  font-family: 'GothamL';
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 0.2px; }

.col-strategic2 {
  width: 99% !important;
  padding: 13px !important;
  float: none !important; }
  .col-strategic2 .img1 {
    margin-right: 39px;
    width: 40px; }
  .col-strategic2 .img2 {
    margin-right: 20px;
    width: 40px; }
  .col-strategic2 .img3 {
    margin-right: 26px;
    width: 40px; }
  .col-strategic2 .img4 {
    margin-right: 33px;
    width: 40px; }
  .col-strategic2 .img5, .col-strategic2 .img6 {
    margin-right: 19px;
    width: 40px; }
  .col-strategic2 p {
    font-size: 14.5px;
    font-family: 'GothamL';
    font-weight: normal; }
  .col-strategic2 .base-sub-title {
    font-size: 27px;
    margin-top: 42px !important;
    padding: 0px 8%; }
  .col-strategic2 .init-sub-title {
    font-size: 27px; }

@media (min-width: 64.063em) {
  .col-strategic2 {
    width: 41.5% !important;
    float: right !important;
    padding: 19px !important; } }
.str-desc3 {
  font-size: 18.5px;
  font-family: 'GothamB';
  font-weight: 100;
  display: block;
  letter-spacing: 1px; }

.row-strategic3 {
  background-size: cover;
  width: 100%;
  padding-top: 48px !important;
  margin: auto !important;
  color: white;
  text-align: center;
  font-family: 'GothamL';
  padding-bottom: 72px; }
  .row-strategic3 .row-strategic2 {
    width: 85%;
    display: block;
    margin: auto;
    float: none;
    max-width: 1300px; }
    .row-strategic3 .row-strategic2 h4 {
      font-size: 93px;
      color: white;
      font-family: sans-serif;
      padding-bottom: 10px !important;
      display: block;
      letter-spacing: -13px;
      margin-bottom: 36px;
      overflow: visible; }
  .row-strategic3 p {
    font-size: 24px;
    color: #F2F1F1;
    font-weight: normal;
    letter-spacing: 0.5px; }
  .row-strategic3 .autor-strategic {
    font-size: 15px;
    letter-spacing: 2px;
    padding-top: 21px;
    display: block; }

@media (min-width: 64.063em) {
  .row-strategic3 .row-strategic2 {
    width: 45%; } }
/****our PRINCIPLES & PROCESSES********************************************/
.row-processes {
  width: 100%;
  margin-bottom: 73px !important; }

.row-processes2 {
  width: 93.5% !important;
  margin: auto !important;
  margin-bottom: 0px !important;
  max-width: 1300px; }
  .row-processes2 .vc_col-sm-6 {
    margin-bottom: 73px !important; }

@media (min-width: 64.063em) {
  .row-processes2 {
    width: 74.5% !important;
    margin-bottom: 73px !important; } }
@media (min-width: 64.063em) {
  .row-processes2 .vc_col-sm-6 {
    margin-bottom: 0px !important; } }
.text-processes {
  width: 76%;
  text-align: left; }
  .text-processes h5 {
    color: #4E4E4E;
    font-size: 20px;
    font-family: 'GothamB';
    font-weight: 100;
    width: 98%;
    line-height: 27px;
    margin: auto; }
  .text-processes p {
    color: #676767;
    font-size: 16px;
    font-family: 'GothamL';
    font-weight: normal;
    width: 98%;
    line-height: 23px;
    margin: auto; }

.img-processes {
  width: 17%; }

.text-processes, .img-processes {
  display: inline-block;
  vertical-align: top; }

.our-solutions-strategic .base-sub-title {
  font-size: 28px;
  font-family: 'GothamL';
  letter-spacing: 2px;
  color: white;
  margin-top: 72px;
  padding: 0px 8%; }
.our-solutions-strategic .sub-null {
  width: 85px;
  height: 25px;
  border-bottom: 3px solid #82D4E2;
  margin: auto; }

@media (min-width: 64.063em) {
  .our-solutions-strategic .base-sub-title {
    font-size: 35px; } }
/****************************************************************/
#metaslider_571 {
  height: 456px; }
  #metaslider_571 ul {
    width: 100%;
    height: 456px; }
  #metaslider_571 li {
    display: block !important; }
  #metaslider_571 img {
    width: 0px !important;
    height: 0px !important;
    margin: 0% 0% 0% 0% !important; }
  #metaslider_571 div.caption-wrap {
    position: relative;
    top: 20px;
    left: 0%;
    background: none;
    text-align: center;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 14px;
    overflow: visible;
    width: 75%;
    margin: auto;
    padding-bottom: 30px; }
    #metaslider_571 div.caption-wrap .caption {
      overflow: visible; }
      #metaslider_571 div.caption-wrap .caption h5 {
        padding-top: 5px;
        letter-spacing: 1px;
        font-size: 14px;
        font-family: 'GothamB';
        font-weight: 100; }
      #metaslider_571 div.caption-wrap .caption h4 {
        overflow: visible;
        color: white;
        padding-bottom: 30px;
        letter-spacing: 1px;
        font-size: 23px;
        font-family: 'GothamL';
        font-weight: normal;
        display: block;
        width: 100%;
        margin-bottom: 63px;
        line-height: 30px; }
  #metaslider_571 .flex-viewport {
    height: 430px; }
  #metaslider_571 ol.flex-control-nav {
    bottom: 51px !important;
    width: 100%; }
    #metaslider_571 ol.flex-control-nav li {
      width: 25px !important;
      display: inline-block !important;
      left: 0; }
      #metaslider_571 ol.flex-control-nav li a {
        background: #50C3D6;
        width: 14px !important;
        height: 14px !important; }
        #metaslider_571 ol.flex-control-nav li a.flex-active {
          background: white !important; }
  #metaslider_571 .flex-direction-nav ol {
    bottom: 71px; }
    #metaslider_571 .flex-direction-nav ol li {
      bottom: 235px;
      line-height: 22px;
      display: inline-block;
      width: 100%;
      left: 0; }
  #metaslider_571 .flex-direction-nav a {
    width: 52px !important;
    height: 52px !important;
    margin: -67px -7px 0 !important;
    display: block;
    background: url("../../public/images/bg_direction_nav3.png");
    position: absolute;
    top: 50%;
    -webkit-transition: all .3s ease; }
  #metaslider_571 .flex-direction-nav .flex-next {
    background-position: 100% !important; }

@media (min-width: 64.063em) {
  #metaslider_571 img {
    width: 470px !important;
    height: 363px !important;
    margin: 0% 0% -10% 52% !important; } }
@media (min-width: 64.063em) {
  #metaslider_571 div.caption-wrap {
    position: relative;
    top: -249px;
    left: -23%;
    background: none;
    text-align: left;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 1px;
    font-size: 19px;
    overflow: visible;
    width: 37%;
    margin: auto;
    padding-bottom: 30px; } }
@media (min-width: 64.063em) {
  #metaslider_571 div.caption-wrap .caption h4 {
    font-size: 30px;
    overflow: visible;
    color: white;
    padding-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'GothamL';
    font-weight: normal;
    display: block;
    width: 339px;
    margin-bottom: 47px;
    line-height: 37px; } }
@media (min-width: 64.063em) {
  #metaslider_571 .flex-direction-nav a {
    margin: -67px 15px 0 !important; } }
/****************************************************************/
#metaslider_647 {
  height: 456px; }
  #metaslider_647 ul {
    width: 100%;
    height: 456px; }
  #metaslider_647 li {
    display: block !important; }
  #metaslider_647 img {
    width: 0px !important;
    height: 0px !important;
    margin: 0% 0% 0% 0% !important; }
  #metaslider_647 div.caption-wrap {
    position: relative;
    top: 20px;
    left: 0%;
    background: none;
    text-align: center;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 14px;
    overflow: visible;
    width: 75%;
    margin: auto;
    padding-bottom: 30px; }
    #metaslider_647 div.caption-wrap .caption {
      overflow: visible; }
      #metaslider_647 div.caption-wrap .caption h5 {
        padding-top: 5px;
        letter-spacing: 1px;
        font-size: 14px;
        font-family: 'GothamB';
        font-weight: 100; }
      #metaslider_647 div.caption-wrap .caption h4 {
        overflow: visible;
        color: white;
        padding-bottom: 30px;
        letter-spacing: 1px;
        font-size: 23px;
        font-family: 'GothamL';
        font-weight: normal;
        display: block;
        width: 100%;
        margin-bottom: 63px;
        line-height: 30px; }
  #metaslider_647 .flex-viewport {
    height: 430px; }
  #metaslider_647 ol.flex-control-nav {
    bottom: 51px !important;
    width: 100%; }
    #metaslider_647 ol.flex-control-nav li {
      width: 25px !important;
      display: inline-block !important;
      left: 0; }
      #metaslider_647 ol.flex-control-nav li a {
        background: #50C3D6;
        width: 14px !important;
        height: 14px !important; }
        #metaslider_647 ol.flex-control-nav li a.flex-active {
          background: white !important; }
  #metaslider_647 .flex-direction-nav ol {
    bottom: 71px; }

@media (min-width: 64.063em) {
  #metaslider_647 img {
    width: 470px !important;
    height: 363px !important;
    margin: 0% 0% -10% 52% !important; } }
@media (min-width: 64.063em) {
  #metaslider_647 div.caption-wrap {
    position: relative;
    top: -249px;
    left: -23%;
    background: none;
    text-align: left;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 1px;
    font-size: 19px;
    overflow: visible;
    width: 37%;
    margin: auto;
    padding-bottom: 30px; } }
@media (min-width: 64.063em) {
  #metaslider_647 div.caption-wrap .caption h4 {
    font-size: 30px;
    overflow: visible;
    color: white;
    padding-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'GothamL';
    font-weight: normal;
    display: block;
    width: 339px;
    margin-bottom: 47px;
    line-height: 37px; } }
#metaslider_826 .flex-direction-nav ol li {
  bottom: 235px;
  line-height: 22px;
  display: inline-block;
  width: 100%;
  left: 0; }

#metaslider_647 .flex-direction-nav a {
  width: 52px !important;
  height: 52px !important;
  margin: -67px -7px 0 !important;
  display: block;
  background: url("../../public/images/bg_direction_nav3.png");
  position: absolute;
  top: 50%;
  -webkit-transition: all .3s ease; }
#metaslider_647 .flex-direction-nav .flex-next {
  background-position: 100% !important; }

@media (min-width: 64.063em) {
  #metaslider_647 .flex-direction-nav a {
    margin: -67px 15px 0 !important; } }
/****************************************************************/
#metaslider_650 {
  height: 456px; }
  #metaslider_650 ul {
    width: 100%;
    height: 456px; }
  #metaslider_650 li {
    display: block !important; }
  #metaslider_650 img {
    width: 0px !important;
    height: 0px !important;
    margin: 0% 0% 0% 0% !important; }
  #metaslider_650 div.caption-wrap {
    position: relative;
    top: 20px;
    left: 0%;
    background: none;
    text-align: center;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 14px;
    overflow: visible;
    width: 75%;
    margin: auto;
    padding-bottom: 30px; }
    #metaslider_650 div.caption-wrap .caption {
      overflow: visible; }
      #metaslider_650 div.caption-wrap .caption h5 {
        padding-top: 5px;
        letter-spacing: 1px;
        font-size: 14px;
        font-family: 'GothamB';
        font-weight: 100; }
      #metaslider_650 div.caption-wrap .caption h4 {
        overflow: visible;
        color: white;
        padding-bottom: 30px;
        letter-spacing: 1px;
        font-size: 23px;
        font-family: 'GothamL';
        font-weight: normal;
        display: block;
        width: 100%;
        margin-bottom: 63px;
        line-height: 30px; }
  #metaslider_650 .flex-viewport {
    height: 430px; }
  #metaslider_650 ol.flex-control-nav {
    bottom: 51px !important;
    width: 100%; }
    #metaslider_650 ol.flex-control-nav li {
      width: 25px !important;
      display: inline-block !important;
      left: 0; }
      #metaslider_650 ol.flex-control-nav li a {
        background: #50C3D6;
        width: 14px !important;
        height: 14px !important; }
        #metaslider_650 ol.flex-control-nav li a.flex-active {
          background: white !important; }
  #metaslider_650 .flex-direction-nav ol {
    bottom: 71px; }
    #metaslider_650 .flex-direction-nav ol li {
      bottom: 235px;
      line-height: 22px;
      display: inline-block;
      width: 100%;
      left: 0; }
  #metaslider_650 .flex-direction-nav a {
    width: 52px !important;
    height: 52px !important;
    margin: -67px -7px 0 !important;
    display: block;
    background: url("../../public/images/bg_direction_nav3.png");
    position: absolute;
    top: 50%;
    -webkit-transition: all .3s ease; }
  #metaslider_650 .flex-direction-nav .flex-next {
    background-position: 100% !important; }

@media (min-width: 64.063em) {
  #metaslider_650 img {
    width: 470px !important;
    height: 363px !important;
    margin: 0% 0% -10% 52% !important; } }
@media (min-width: 64.063em) {
  #metaslider_650 div.caption-wrap {
    position: relative;
    top: -249px;
    left: -23%;
    background: none;
    text-align: left;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 1px;
    font-size: 19px;
    overflow: visible;
    width: 37%;
    margin: auto;
    padding-bottom: 30px; } }
@media (min-width: 64.063em) {
  #metaslider_650 div.caption-wrap .caption h4 {
    font-size: 30px;
    overflow: visible;
    color: white;
    padding-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'GothamL';
    font-weight: normal;
    display: block;
    width: 339px;
    margin-bottom: 47px;
    line-height: 37px; } }
@media (min-width: 64.063em) {
  #metaslider_650 .flex-direction-nav a {
    margin: -67px 15px 0 !important; } }
/****************************************************************/
#metaslider_826 {
  height: 456px; }
  #metaslider_826 ul {
    width: 100%;
    height: 456px; }
  #metaslider_826 li {
    display: block !important; }
  #metaslider_826 img {
    width: 0px !important;
    height: 0px !important;
    margin: 0% 0% 0% 0% !important; }
  #metaslider_826 div.caption-wrap {
    position: relative;
    top: 20px;
    left: 0%;
    background: none;
    text-align: center;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 14px;
    overflow: visible;
    width: 75%;
    margin: auto;
    padding-bottom: 30px; }
    #metaslider_826 div.caption-wrap .caption {
      overflow: visible; }
      #metaslider_826 div.caption-wrap .caption h5 {
        padding-top: 5px;
        letter-spacing: 1px;
        font-size: 14px;
        font-family: 'GothamB';
        font-weight: 100; }
      #metaslider_826 div.caption-wrap .caption h4 {
        overflow: visible;
        color: white;
        padding-bottom: 30px;
        letter-spacing: 1px;
        font-size: 23px;
        font-family: 'GothamL';
        font-weight: normal;
        display: block;
        height: auto;
        width: 100%;
        margin-bottom: 63px;
        line-height: 30px; }
  #metaslider_826 .flex-viewport {
    height: 430px; }
  #metaslider_826 ol.flex-control-nav {
    bottom: 51px !important;
    width: 100%; }
    #metaslider_826 ol.flex-control-nav li {
      width: 25px !important;
      display: inline-block !important;
      left: 0; }
      #metaslider_826 ol.flex-control-nav li a {
        background: #50C3D6;
        width: 14px !important;
        height: 14px !important; }
        #metaslider_826 ol.flex-control-nav li a.flex-active {
          background: white !important; }
  #metaslider_826 .flex-direction-nav ol {
    bottom: 71px; }
    #metaslider_826 .flex-direction-nav ol li {
      bottom: 235px;
      line-height: 22px;
      display: inline-block;
      width: 100%;
      left: 0; }
  #metaslider_826 .flex-direction-nav a {
    width: 52px !important;
    height: 52px !important;
    margin: -67px -7px 0 !important;
    display: block;
    background: url("../../public/images/bg_direction_nav3.png");
    position: absolute;
    top: 50%;
    -webkit-transition: all .3s ease; }
  #metaslider_826 .flex-direction-nav .flex-next {
    background-position: 100% !important; }

@media (min-width: 64.063em) {
  #metaslider_826 img {
    width: 470px !important;
    height: 363px !important;
    margin: 0% 0% -10% 52% !important; } }
@media (min-width: 64.063em) {
  #metaslider_826 div.caption-wrap {
    position: relative;
    top: -249px;
    left: -23%;
    background: none;
    text-align: left;
    color: white;
    font-family: 'GothamL';
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 1px;
    font-size: 19px;
    overflow: visible;
    width: 37%;
    margin: auto;
    padding-bottom: 30px; } }
@media (min-width: 64.063em) {
  #metaslider_826 div.caption-wrap .caption h4 {
    font-size: 30px;
    overflow: visible;
    color: white;
    padding-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'GothamL';
    font-weight: normal;
    display: block;
    width: 380px;
    margin-bottom: 0px;
    line-height: 37px; } }
@media (min-width: 64.063em) {
  #metaslider_826 .flex-direction-nav a {
    margin: -67px 15px 0 !important; } }
/****our WORK***************************************************/
.row-innovators {
  padding-bottom: 72px !important; }

.row-sub-innovators {
  margin: auto !important;
  width: 88%;
  max-width: 1170px;
  text-align: center;
  margin-bottom: 0px !important; }
  .row-sub-innovators .col-sub-innovators div.vc_column-inner, .row-sub-innovators div.vc_column-inner {
    padding-left: 0px;
    padding-right: 0px; }

.col-sub-innovators {
  margin-bottom: 0px !important;
  overflow: hidden; }

.col-sub-innovators-img {
  margin-bottom: 0px !important; }

.col-sub-innovators-text {
  background-color: rgba(51, 71, 118, 0.8);
  text-align: center !important;
  height: 100%;
  margin-bottom: 0px !important;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  color: white;
  padding: 10px;
  padding-top: 13%;
  padding-left: 5%;
  padding-right: 5%;
  font-family: 'GothamL';
  color: white;
  font-size: 17.4px;
  letter-spacing: 0px;
  font-weight: 100; }
  .col-sub-innovators-text h2 {
    font-family: 'GothamL';
    font-size: 24px;
    font-weight: 300; }
  .col-sub-innovators-text h4 {
    font-family: 'GothamL';
    color: white;
    font-size: 14.5px;
    letter-spacing: 2px;
    font-weight: 800; }
  .col-sub-innovators-text figure {
    width: 100% !important;
    height: 100% !important;
    position: relative; }
  .col-sub-innovators-text a {
    width: 70%; }
  .col-sub-innovators-text.hover {
    opacity: 1;
    transition: opacity .35s ease-in-out; }

@media (min-width: 64.063em) {
  .col-sub-innovators-text {
    padding-top: 28%;
    padding-left: 40px;
    padding-right: 40px; } }
@media (min-width: 64.063em) {
  .col-sub-innovators-text h2 {
    font-size: 30px; } }
/**********************************/
.row-strategic6 {
  background-size: cover;
  width: 100%;
  padding-top: 48px !important;
  margin: auto !important;
  text-align: left;
  font-family: 'GothamL';
  padding-bottom: 72px; }
  .row-strategic6 .row-strategic2 {
    width: 100%;
    margin: auto !important;
    max-width: 1300px;
    float: none; }
  .row-strategic6 .row-strategic23 {
    width: 90%;
    display: block;
    float: inherit;
    margin: auto !important;
    margin-right: 12.1%; }
  .row-strategic6 .row-strategic2 h4 {
    font-size: 93px;
    color: #333333;
    font-family: sans-serif;
    padding-bottom: 10px !important;
    display: block;
    letter-spacing: -13px;
    margin-bottom: 36px;
    overflow: visible; }
  .row-strategic6 p {
    font-size: 24px;
    color: #333333;
    font-weight: normal;
    letter-spacing: 0.5px; }
  .row-strategic6 .autor-strategic {
    font-size: 15px;
    letter-spacing: 2px;
    padding-top: 21px;
    display: block; }

@media (min-width: 64.063em) {
  .row-strategic6 .row-strategic23 {
    width: 45%;
    float: right; } }
.btn-solutions-more {
  color: #05A0BC !important;
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 37px;
  padding: 12px 9px !important;
  margin-left: 0px;
  text-align: center;
  font-size: 16px;
  font-family: 'GothamB';
  border: 3px solid #05A0BC;
  font-weight: 100; }
  .btn-solutions-more:visited {
    color: #05A0BC !important; }
  .btn-solutions-more:hover {
    color: white !important;
    background: #05A0BC;
    cursor: pointer; }

.section-form2 {
  background: linear-gradient(0deg, #04A9C6 21%, #FFF 21%); }

.connect-contact {
  text-align: center;
  color: white;
  font-family: 'GothamL';
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 2px;
  padding: 0px 5.5%;
  padding-bottom: 0px; }
  .connect-contact p {
    margin-bottom: 10px; }
  .connect-contact .note-contact {
    font-size: 13px;
    font-style: italic;
    font-family: 'GothamB';
    color: white;
    font-weight: 100;
    width: 90%;
    margin: auto;
    display: block;
    margin-bottom: 35px !important; }
    .connect-contact .note-contact a {
      color: white;
      text-decoration: none; }

@media (min-width: 64.063em) {
  .connect-contact {
    padding-bottom: 85px; } }
@media (min-width: 64.063em) {
  .connect-contact .note-contact {
    font-size: 20px;
    font-style: italic;
    font-family: 'GothamB';
    color: white;
    font-weight: 100;
    width: 90%;
    margin: auto;
    display: block;
    margin-bottom: 0px !important; } }
.img-connect {
  text-align: center;
  height: 47px;
  margin-bottom: 28px !important; }

.row-connect {
  padding-top: 35px;
  max-width: 1300px;
  margin: auto !important; }

.maps-connect {
  padding: 0px 3.5%;
  padding-top: 2px;
  padding-bottom: 75px;
  max-width: 1300px;
  margin: auto !important; }

.img-map-connect1, .img-map-connect2, .img-map-connect3, .img-map-connect4 {
  text-align: center !important;
  height: 253px;
  margin-bottom: 8px !important; }

.img-map-connect1 figure, .img-map-connect2 figure, .img-map-connect3 figure, .img-map-connect4 figure {
  position: relative;
  top: 20%;
  width: 100%; }

.img-map-connect1 figure div, .img-map-connect2 figure div, .img-map-connect3 figure div, .img-map-connect4 figure div {
  width: 100%; }

.img-map-connect1 figure div img, .img-map-connect2 figure div img, .img-map-connect3 figure div img, .img-map-connect4 figure div img {
  display: block;
  margin: auto;
  position: relative; }

.img-map-connect1 img {
  width: 150px;
  top: -22px !important; }

.img-map-connect2 img {
  width: 160px;
  top: 50px !important; }

.img-map-connect3 img {
  width: 102px;
  top: -18px !important; }

.img-map-connect4 img {
  width: 179px;
  top: -6px !important; }

@media (min-width: 64.063em) {
  .img-map-connect1 img {
    width: 186px;
    top: -22px !important; }

  .img-map-connect2 img {
    width: 258px;
    top: 50px !important; }

  .img-map-connect3 img {
    width: 126px;
    top: -18px !important; }

  .img-map-connect4 img {
    width: 224px;
    top: -6px !important; } }
.title-maps {
  color: #333333;
  font-size: 18px;
  font-family: 'GothamB';
  font-weight: 100;
  width: 90%;
  margin: auto;
  margin-bottom: 0px;
  padding-bottom: 40px; }
  .title-maps a {
    color: #07A9C6;
    text-decoration: underline; }
    .title-maps a:hover, .title-maps a:visited {
      color: #07A9C6;
      text-decoration: underline; }
  .title-maps img {
    padding-right: 10px;
    width: 40px; }
  .title-maps + p {
    color: #949494;
    font-size: 16px;
    font-family: 'GothamL';
    font-weight: normal;
    width: 85%;
    line-height: 20px;
    margin: auto; }

@media (min-width: 64.063em) {
  .title-maps {
    color: #333333;
    font-size: 25px;
    font-family: 'GothamB';
    font-weight: 100;
    width: 90%;
    margin: auto;
    margin-bottom: 0px;
    padding-bottom: 40px; } }
@media (min-width: 64.063em) {
  .title-maps img {
    padding-right: 10px;
    width: 48px; } }
@media (min-width: 64.063em) {
  .text-maps {
    color: #949494;
    font-size: 18px;
    font-family: 'GothamL';
    font-weight: normal;
    width: 85%;
    line-height: 26px;
    margin: auto; } }
.video-image figure, .video-image div, .video-image img {
  width: 100%; }

ul.sub-menu {
  display: none;
  position: initial;
  background: #F5F5F5;
  width: 100%;
  margin-top: 10px !important; }
  ul.sub-menu li {
    padding: 10px; }
    ul.sub-menu li a {
      font-size: 14px;
      color: #4B608B;
      text-align: center;
      border-bottom: 0px; }
      ul.sub-menu li a:hover {
        color: #5cd1e8 !important; }

li#menu-item-30 {
  position: relative; }

.showsubmenu {
  display: block; }

.menu-principal-menu-container li#menu-item-30 a {
  position: relative; }

aside#nav_menu-2 ul li#menu-item-2741 a {
  color: #04a9c6; }

p#arrow-dropdown {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  margin: 0px;
  left: 57px;
  top: 6px;
  color: #05a9c6;
  cursor: pointer; }

@media (min-width: 64.063em) {
  li#menu-item-30:hover ul.sub-menu {
    display: block; }

  .menu-principal-menu-container li {
    position: relative; }

  nav#navprin {
    overflow: initial; }

  ul.sub-menu {
    position: absolute;
    top: 42px;
    z-index: 1000;
    background: #253f44;
    display: none;
    border-top: 1.9px solid #4FBBD1;
    width: auto;
    left: 0px; }
    ul.sub-menu li {
      width: 100%;
      margin: 0px;
      background: none;
      padding: 6px 0px; }
      ul.sub-menu li a {
        font-size: 14px;
        color: #05a9c6 !important;
        text-align: center;
        width: 100%;
        display: block;
        padding: 6px 10px;
        border-bottom: 0px; }
        ul.sub-menu li a:hover {
          color: #5cd1e8 !important; }

  p#arrow-dropdown {
    display: none; } }
.btn-title2 {
  color: white;
  display: block;
  width: 270px;
  margin: auto;
  margin-top: 37px;
  padding: 10px 9px;
  font-size: 16px;
  font-family: 'GothamB';
  border: 2.5px solid white; }
  .btn-title2:hover {
    color: #05A0BC;
    background: white;
    cursor: pointer; }
  .btn-title2:visited {
    color: white; }

.site-header {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0px;
  padding-top: 0px;
  top: 0;
  z-index: 10;
  position: fixed;
  -webkit-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 40px -16px rgba(0, 0, 0, 0.75); }

@media (min-width: 64.063em) {
  .site-header {
    background: white;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-top: 0px;
    top: 0;
    z-index: 10;
    position: inherit !important;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 0px 0px transparent;
    box-shadow: 0px 0px 0px 0px transparent; } }
/***CAREERS***************************************************/
.row-careers {
  width: 100%;
  margin: auto !important;
  padding-top: 59px !important;
  padding-left: 0% !important;
  padding-right: 0% !important;
  padding-bottom: 10px !important; }

@media (min-width: 64.063em) {
  .row-careers {
    padding-left: 18% !important;
    padding-right: 18% !important; } }
.row-careers1, .row-careers2 {
  background-size: 0 !important;
  background-color: white;
  background-repeat: no-repeat; }

@media (min-width: 64.063em) {
  .row-careers1 {
    background-size: 51% 100% !important; } }
@media (min-width: 64.063em) {
  .row-careers2 {
    background-size: 50% 100% !important;
    background-position: right; } }
.content-careers0 {
  max-width: 1300px;
  margin: auto !important;
  float: none !important; }

.col-careers1 {
  padding-top: 0px !important;
  margin-top: 20px !important;
  padding-left: 3% !important;
  padding-right: 3% !important;
  width: 100% !important;
  float: left !important;
  background: #FFFFFF;
  text-align: center;
  height: auto;
  padding-bottom: 50px !important; }
  .col-careers1 h3 {
    padding-top: 6px !important;
    width: 100% !important;
    font-size: 25px;
    padding-bottom: 8px;
    font-family: 'GothamB';
    font-weight: 100; }
  .col-careers1 .img1 {
    width: 53px; }
  .col-careers1 p {
    padding-top: 20px;
    font-size: 13px;
    font-family: 'GothamL';
    font-weight: normal;
    color: #616161; }
  .col-careers1 .base-sub-title {
    font-size: 27px;
    margin-top: 42px !important;
    padding: 0px 8%; }
  .col-careers1 .init-sub-title {
    font-size: 27px; }
  .col-careers1 .col-careers1 .base-sub-title {
    margin-top: 72px !important;
    padding: 0px 8%; }

@media (min-width: 64.063em) {
  .col-careers1 {
    width: 50.4% !important;
    background-size: 100%;
    margin-top: 0px !important;
    padding-top: 29px !important;
    padding-bottom: 50px !important; } }
.col-careers2 {
  margin-top: 0px !important; }
  .col-careers2 h3 {
    padding-top: 6px !important;
    width: 100% !important;
    font-size: 25px;
    padding-bottom: 8px;
    font-family: 'GothamB';
    font-weight: 100; }
  .col-careers2 .img1 {
    width: 53px; }
  .col-careers2 p {
    padding-top: 20px;
    font-size: 13px;
    font-family: 'GothamL';
    font-weight: normal;
    color: #616161; }
  .col-careers2 .base-sub-title {
    font-size: 27px;
    margin-top: 42px !important;
    padding: 0px 8%; }
  .col-careers2 .init-sub-title {
    font-size: 27px; }
  .col-careers2 .col-careers2 .base-sub-title {
    margin-top: 72px !important;
    padding: 0px 8%; }

@media (min-width: 64.063em) {
  .col-careers2 {
    margin-top: 20px !important;
    padding-top: 0px !important;
    padding-left: 3% !important;
    padding-right: 3% !important;
    width: 100% !important;
    float: right !important;
    background: white;
    text-align: center;
    height: auto;
    padding-bottom: 47px !important; } }
@media (min-width: 64.063em) {
  .col-careers2 {
    width: 49.6% !important;
    background-size: 100%;
    margin-top: 0px !important;
    padding-top: 29px !important;
    padding-bottom: 50px !important; } }
.btn-careers-more {
  color: #05A0BC !important;
  display: block;
  width: 77% !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 12px 9px !important;
  margin-left: 0px;
  text-align: center;
  font-size: 16px;
  font-family: 'GothamB';
  border: 3px solid #05A0BC;
  font-weight: 100; }
  .btn-careers-more:visited {
    color: #05A0BC !important; }
  .btn-careers-more:hover {
    color: white !important;
    background: #05A0BC;
    cursor: pointer; }

.row-careers-steps0 .text-desc {
  margin-bottom: 20px !important;
  color: black; }

.row-careers-step {
  max-width: 1300px;
  width: 85%;
  text-align: left;
  margin: auto;
  margin-bottom: 21px !important; }
  .row-careers-step p {
    font-size: 18px;
    font-family: 'GothamL';
    letter-spacing: 0px;
    font-weight: 700; }
  .row-careers-step img {
    width: 46px;
    margin-right: 9px; }

@media (min-width: 64.063em) {
  .row-careers-step {
    width: 53%; } }
@media (min-width: 64.063em) {
  .row-careers-step img {
    width: 73px;
    margin-right: 32px; } }
.row-careers-steps0 {
  padding-bottom: 50px !important; }

.work-case-img-banner {
  display: none;
  overflow: hidden;
  height: 400px; }
  .work-case-img-banner .vc_single_image-wrapper {
    width: 100%;
    height: 100%; }
  .work-case-img-banner img {
    width: auto !important;
    max-width: 90% !important;
    height: 100% !important; }

@media (min-width: 64.063em) {
  .work-case-img-banner {
    display: inline-block;
    width: 46%; } }
.work-case-text-banner {
  display: inline-block;
  width: 80%; }
  .work-case-text-banner .wpb_wrapper {
    margin-top: 117px; }

@media (min-width: 64.063em) {
  .work-case-text-banner {
    width: 44%; } }
.work-case-img-banner, .work-case-text-banner {
  vertical-align: top; }

.row-work-case-solution1, .row-work-case-solution2 {
  max-width: 1300px;
  margin: auto !important;
  float: none !important; }

@media (min-width: 64.063em) {
  .row-work-case-solution1 .text-desc {
    width: 65%;
    margin-left: 30px;
    text-align: left; } }
.col-work-case-solution1 {
  display: none;
  width: 87% !important;
  margin: auto; }

@media (min-width: 64.063em) {
  .col-work-case-solution1 {
    display: inline-block;
    width: 34% !important;
    margin-left: 16%; } }
.col-work-case-solution2 {
  width: 100% !important;
  margin: auto;
  margin-top: 42px !important; }

@media (min-width: 64.063em) {
  .col-work-case-solution2 {
    width: 50% !important; } }
div.row-work-case-solution2 {
  width: 100% !important;
  margin-top: 9px !important;
  padding-bottom: 100px !important; }

@media (min-width: 64.063em) {
  div.row-work-case-solution2 {
    text-align: right !important;
    width: 100% !important;
    margin-top: 69px !important;
    padding-bottom: 100px !important; } }
.col-work-case-solution3 {
  width: 100% !important;
  margin-top: 2px !important; }

@media (min-width: 64.063em) {
  .col-work-case-solution3 {
    width: 50% !important;
    margin-top: 42px !important; } }
.col-work-case-solution4 {
  display: none; }

@media (min-width: 64.063em) {
  .col-work-case-solution4 {
    display: inline-block;
    width: 33% !important; } }
@media (min-width: 64.063em) {
  .col-work-case-solution3 .text-desc {
    width: 65%;
    margin-right: 30px; } }
.row-results {
  width: 78%;
  margin: auto !important;
  padding-bottom: 30px;
  max-width: 1300px;
  float: none !important; }
  .row-results h3 {
    font-size: 25px;
    font-family: 'GothamL';
    font-weight: 900; }

.col-results-img {
  height: 50px; }

.row-results .text-desc {
  width: 75%;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 56px !important; }

.row-recognition {
  max-width: 1300px;
  margin: auto !important;
  float: none !important;
  margin-bottom: 44px !important;
  padding-top: 39px !important; }

.col-recognition1 {
  width: 100% !important; }
  .col-recognition1 .text-desc {
    width: 68%;
    text-align: left;
    margin-left: 24%; }

@media (min-width: 64.063em) {
  .col-recognition1 {
    width: 55% !important; } }
.col-recognition2 {
  width: 100% !important;
  position: relative;
  top: -43px; }
  .col-recognition2 .recognition-img {
    width: 44% !important;
    display: inline-block;
    text-align: center !important; }

@media (min-width: 64.063em) {
  .col-recognition2 {
    width: 44% !important;
    position: relative;
    top: -43px; } }
@media (min-width: 64.063em) {
  .col-recognition2 .recognition-img {
    text-align: left !important; } }
.recognition-img h2 {
  font-size: 14px;
  color: #424242;
  position: relative;
  left: -5px;
  top: 215px; }

.case-solutions-img {
  width: 100% !important; }
  .case-solutions-img figure, .case-solutions-img div, .case-solutions-img img {
    width: 100% !important; }

.row-jobs-apply {
  border-bottom: 3px solid #EAEAEA;
  padding-bottom: 50px;
  padding: 20px 0px; }
  .row-jobs-apply .str-desc1 {
    width: 90%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding-left: 7%;
    margin-top: 17px !important; }
    .row-jobs-apply .str-desc1 img {
      margin-right: 24px; }
  .row-jobs-apply .str-desc4 {
    width: 90%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding-left: 0%;
    margin-top: 0px !important; }

@media (min-width: 64.063em) {
  .row-jobs-apply {
    width: 100%;
    padding: 20px 0px; } }
@media (min-width: 64.063em) {
  .row-jobs-apply .str-desc1 {
    width: 52%;
    margin-top: 0px !important; } }
@media (min-width: 64.063em) {
  .row-jobs-apply .str-desc4 {
    text-align: left;
    width: 79%;
    margin-top: 0px !important; } }
.btn-job-back {
  width: 80%;
  font-size: 15px;
  margin-bottom: 0px;
  display: inline-block;
  font-family: 'GothamL';
  font-weight: 900;
  color: #00B4D1;
  vertical-align: middle;
  height: 47px;
  text-align: left;
  padding-left: 3px;
  padding-top: 10px; }
  .btn-job-back a:visited {
    color: #00B4D1; }

@media (min-width: 64.063em) {
  .btn-job-back {
    width: 10%; } }
.btn-job-apply {
  width: 80%;
  display: inline-block;
  vertical-align: top;
  padding-top: 9px !important; }
  .btn-job-apply a {
    width: 168px;
    margin: auto !important;
    margin-top: 0px !important; }

@media (min-width: 64.063em) {
  .btn-job-apply {
    width: 30%; } }
/*# sourceMappingURL=app.css.map */
.content-article {
  width: 84% !important;
  float: none !important;
  margin: auto !important; }
  .content-article .category {
    text-align: center; }
  .content-article h2 {
    text-align: center;
    font-weight: 100;
    font-family: 'GothamB';
    font-size: 25px;
    padding-bottom: 9px; }
  .content-article .date {
    text-align: center;
    font-size: 17px;
    margin-bottom: 8px; }
  .content-article .text-desc {
    margin-bottom: 0px !important;
    width: 100% !important;
    text-align: left; }
  .content-article .sub-null {
    margin-bottom: 32px !important; }
  .content-article .img-desc-text {
    font-style: italic;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #909090;
    font-family: 'GothamL'; }
  .content-article .row-strategic2 {
    width: 74%; }
  .content-article .row-strategic3 {
    padding-bottom: 64px; }
  .content-article .str-desc3 {
    text-align: left;
    margin-top: 47px; }
  .content-article .wp-caption-text {
    text-align: left;
    font-size: 14px;
    font-style: italic; }
  .content-article figure.alignleft {
    margin-left: 0px !important; }

@media (min-width: 64.063em) {
  .content-article {
    width: 58% !important; } }
@media (min-width: 64.063em) {
  .content-article h2 {
    font-size: 34px; } }
.categories-content {
  width: 58% !important;
  border-top: 2px solid #E8E8E8;
  margin: auto !important;
  float: none !important; }
  .categories-content h5 {
    font-family: 'GothamL';
    font-size: 14px;
    margin-top: 32px;
    color: #444444; }
  .categories-content .wpb_text_column {
    margin-bottom: 12px !important; }
  .categories-content .show-categories {
    margin-bottom: 12px !important; }
    .categories-content .show-categories a {
      border: 2px solid #0AB4D3;
      padding: 8px 18px 8px;
      margin: 14px 8px 10px 8px !important;
      display: inline-block;
      color: #0AB4D3;
      font-weight: 700; }

.row-categories-list {
  padding-bottom: 29px; }

.row-share-this {
  color: white;
  text-align: center;
  padding-bottom: 40px !important; }
  .row-share-this h5 {
    margin-top: 40px;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 100; }
  .row-share-this .btn-title {
    color: white;
    display: block;
    width: 261px;
    margin: auto;
    margin-top: 52px;
    padding: 6px 9px;
    font-size: 18px;
    font-family: 'GothamL';
    border: 2.5px solid white;
    font-weight: 900; }
    .row-share-this .btn-title:hover {
      color: #0AB4D3; }

.addtoany_shortcode a {
  height: 50px;
  width: 50px;
  padding: 0px !important;
  margin: 0px 6px; }
  .addtoany_shortcode a span {
    height: 50px;
    width: 50px; }

@media (min-width: 64.063em) {
  .addtoany_shortcode a {
    height: 78px;
    width: 78px;
    margin: 0px 26px; } }
.a2a_s_facebook {
  background: url(../../public/images/icon-78-facebook.png) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important; }

.a2a_s_twitter {
  background: url(../../public/images/icon-78-twitter.png) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important; }

.a2a_s_linkedin {
  background: url(../../public/images/icon-78-linkedin.png) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important; }

.a2a_s_pinterest {
  background: url(../../public/images/icon-78-pinterest.png) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important; }

.a2a_s_reddit {
  background: url(../../public/images/icon-78-reddit.png) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important; }

.filter-section2 {
  padding-bottom: 62px; }
  .filter-section2 article.index-posts {
    width: 84%;
    background: white;
    -webkit-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
    display: inline-block;
    vertical-align: top;
    margin: 13px;
    height: 544px; }
  .filter-section2 h3 {
    font-family: 'GothamB';
    font-size: 17px;
    text-align: left;
    font-weight: 100;
    line-height: 27px;
    margin-top: 9px;
    margin-bottom: 6px;
    text-transform: none; }
    .filter-section2 h3 a {
      color: #333333;
      cursor: pointer; }
      .filter-section2 h3 a:visited, .filter-section2 h3 a:focus, .filter-section2 h3 a:active {
        color: #333333;
        cursor: pointer; }
      .filter-section2 h3 a:hover {
        color: #4B608B;
        text-align: center;
        text-decoration: none; }
  .filter-section2 h6 p {
    color: #636363;
    font-family: 'GothamL';
    font-size: 14px;
    text-align: left;
    font-weight: normal;
    line-height: 20px;
    margin-top: 9px;
    margin-bottom: 11px;
    text-transform: none; }
  .filter-section2 hgroup {
    width: 85%;
    margin: 0px auto;
    text-align: center;
    padding-bottom: 21px;
    padding-top: 7px;
    height: auto;
    overflow: hidden; }
  .filter-section2 h2 {
    text-align: left;
    padding-left: 60px;
    font-size: 23px;
    color: #616161;
    margin-top: 51px; }
  .filter-section2 .init-sub-title {
    font-size: 25px; }

@media (min-width: 64.063em) {
  .filter-section2 article.index-posts {
    width: 28%; } }
@media (min-width: 64.063em) {
  .filter-section2 h3 {
    font-size: 23px; } }
#emodal-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important; }

.emodal.responsive {
  left: 5% !important;
  margin: auto !important;
  width: 87%;
  height: auto;
  padding-bottom: 20px !important; }

@media (min-width: 64.063em) {
  .emodal.responsive {
    left: 50% !important;
    margin-left: -26% !important;
    width: 49%;
    height: auto;
    padding-bottom: 20px !important; } }
@media (min-width: 64.063em) and (min-width: 85.375em) {
  .emodal.responsive {
    width: 750px;
    left: 50% !important;
    margin-left: -375px !important;
    height: auto;
    padding-bottom: 20px !important; } }
#emodal-close2 {
  color: #FE6A65 !important;
  display: block !important;
  width: 169px !important;
  margin: auto !important;
  margin-top: 10px !important;
  padding: 14px 5px !important;
  font-size: 16px !important;
  font-family: "GothamL" !important;
  font-weight: normal;
  border: 2.5px solid white !important;
  border: 2px solid !important;
  border-color: #FE6A65 !important;
  border-radius: 0px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-align: center !important;
  margin-bottom: 11px !important; }

.col-sub-innovators-img .vc_figure, .col-sub-innovators-img .vc_single_image-wrapper, .col-sub-innovators-img img {
  width: 100% !important; }

.emodal-content .base-sub-title {
  font-size: 25px !important;
  width: 90%;
  padding: 0px 8%; }
.emodal-content h2 {
  margin-top: 10px !important; }
.emodal-content p {
  font-family: 'GothamL' !important;
  margin-bottom: 0px !important; }
  .emodal-content p.p1 {
    padding: 0px 28px;
    text-align: justify; }

.row-apply-job {
  background-color: #f5f5f5 !important;
  border-top: 4px solid #E6E6E6;
  color: #717171;
  padding-top: 34px !important;
  font-size: 18px;
  font-family: 'GothamL';
  font-weight: 700;
  padding-left: 6%;
  padding-right: 6%; }
  .row-apply-job .text-desc {
    width: 100% !important;
    margin-bottom: 11px !important; }
    .row-apply-job .text-desc h4 {
      text-align: left;
      padding-left: 0px;
      margin-top: 1px; }

@media (min-width: 64.063em) {
  .row-apply-job {
    padding-left: 19%;
    padding-right: 19%; } }
.wpcf7 {
  width: 100%; }

@media (min-width: 64.063em) {
  .wpcf7 {
    width: 625px;
    margin: auto !important; } }
.form-apply-job span.your-name, .form-apply-job span.your-last {
  width: 100% !important;
  display: inline-block;
  padding-left: 0px;
  padding-top: 25px; }
.form-apply-job span.your-name span.wpcf7-not-valid-tip, .form-apply-job span.your-last span.wpcf7-not-valid-tip, .form-apply-job span.your-email span.wpcf7-not-valid-tip {
  float: left;
  position: relative;
  top: 11px;
  left: 10px;
  font-size: 16px; }
.form-apply-job div.wpcf7-response-output.wpcf7-validation-errors {
  position: relative !important;
  top: -226px !important;
  width: 100% !important;
  margin: auto !important;
  border: 0px solid red !important;
  color: red !important;
  font-size: 14px;
  line-height: 20px; }

@media (min-width: 64.063em) {
  .form-apply-job span.your-name, .form-apply-job span.your-last {
    width: 50% !important;
    display: inline-block;
    text-align: center;
    padding-top: 0px; } }
@media (min-width: 64.063em) {
  .form-apply-job div.wpcf7-response-output.wpcf7-validation-errors {
    top: -177px !important;
    font-size: 16px; } }
input.last-input, input.name-input {
  margin: auto;
  padding: 9px !important;
  font-size: 17px !important;
  background: white !important;
  color: #A3A3A3 !important;
  width: 100% !important;
  font-family: 'GothamL' !important; }

@media (min-width: 64.063em) {
  input.last-input, input.name-input {
    margin: auto;
    padding: 9px !important;
    font-size: 17px !important;
    background: white !important;
    color: #A3A3A3 !important;
    width: 94% !important;
    font-family: 'GothamL' !important; } }
.form-apply-job span.your-email {
  width: 100% !important;
  display: inline-block;
  padding-left: 0px; }

@media (min-width: 64.063em) {
  .form-apply-job span.your-email {
    width: 100% !important;
    display: inline-block;
    text-align: center; } }
input.email-input {
  padding: 9px !important;
  font-size: 17px !important;
  background: white !important;
  color: #A3A3A3 !important;
  width: 100% !important;
  font-family: 'GothamL' !important;
  margin-top: 23px !important; }

@media (min-width: 64.063em) {
  input.email-input {
    width: 97% !important; } }
#ninja_forms_field_23_div_wrap, #ninja_forms_field_22_div_wrap {
  width: 100% !important;
  display: inline-block; }

@media (min-width: 64.063em) {
  #ninja_forms_field_23_div_wrap, #ninja_forms_field_22_div_wrap {
    width: 49% !important;
    display: inline-block;
    text-align: left;
    padding-left: 10px; } }
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  position: absolute;
  z-index: -1; }

input#uploadFile2 {
  font-size: 14px;
  width: 98.5%;
  text-align: center;
  margin-left: -5px; }
input#uploadFile1 {
  font-size: 14px;
  width: 98%;
  text-align: center;
  margin-left: -1px; }

#ninja_forms_field_23_div_wrap label {
  cursor: pointer;
  background-color: #E6F1F3 !important;
  font-size: 16px;
  font-weight: 700;
  color: #05A9C6;
  width: 98%;
  display: inline-block;
  top: -23px;
  position: relative;
  text-align: center;
  margin: auto;
  padding-bottom: 14px;
  padding-top: 14px;
  border: 1.7px solid;
  margin-left: -1px; }

#ninja_forms_field_22_div_wrap label {
  cursor: pointer;
  background-color: #E6F1F3 !important;
  font-size: 16px;
  font-weight: 700;
  color: #05A9C6;
  width: 98.5%;
  display: inline-block;
  top: -23px;
  position: relative;
  text-align: center;
  margin: auto;
  padding-bottom: 14px;
  padding-top: 14px;
  border: 1.7px solid;
  margin-left: -5px; }

#ninja_forms_field_24_label {
  font-family: 'GothamB';
  color: #05A9C6;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 10px;
  padding-left: 10px;
  padding-bottom: 6px; }

#ninja_forms_field_24_div_wrap {
  padding-left: 10px;
  width: 97% !important; }

.form-apply-job textarea.wpcf7-textarea {
  height: 141px !important;
  width: 97% !important; }
.form-apply-job input.wpcf7-submit {
  color: #05A0BC !important;
  display: block !important;
  width: 85% !important;
  margin: auto !important;
  margin-top: 100px !important;
  padding: 12px 9px !important;
  margin-bottom: 22px !important;
  font-size: 16px !important;
  font-family: 'GothamB' !important;
  border: 3px solid #05A0BC !important;
  font-weight: 100 !important;
  background: transparent !important;
  box-shadow: none !important; }
  .form-apply-job input.wpcf7-submit:visited {
    color: white !important;
    background: #05A0BC !important;
    box-shadow: none !important; }
  .form-apply-job input.wpcf7-submit:hover {
    color: white !important;
    background: #05A0BC !important;
    cursor: pointer; }

@media (min-width: 64.063em) {
  .form-apply-job input.wpcf7-submit {
    width: 55% !important;
    margin-top: 60px !important; } }
.row-text-research1 {
  display: none; }

#ninja_forms_field_23_div_wrap span.file, #ninja_forms_field_22_div_wrap span.file2 {
  display: block;
  position: relative;
  top: -5px;
  left: 6px;
  overflow: hidden;
  width: 90%;
  height: 0.1px; }

/*
#ninja_forms_form_5_all_fields_wrap {
      width: 71%;
    text-align: center;
    margin: auto;

}



input#ninja_forms_field_18,
input#ninja_forms_field_19 {



}
  @media (min-width: 64.063em) {
      input#ninja_forms_field_18,
      input#ninja_forms_field_19 {
        width: 94% !important;

}

}
#ninja_forms_field_20_div_wrap {
text-align: left;
    padding-left: 0.5%;
    padding-left: 5px;

}

input#ninja_forms_field_20 {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 96.3% !important;
  font-family: 'GothamL' !important;

}





#ninja_forms_field_17 {
      color: #05A0BC !important;
    display: block !important;
    width: 55% !important;
    margin: auto !important;
    margin-top: 37px !important;
    padding: 12px 9px !important;
    margin-bottom: 50px !important;
    font-size: 16px !important;
    font-family: 'GothamB' !important;
    border: 3px solid #05A0BC !important;
    font-weight: 100 !important;
    background: none;
    box-shadow: none;

}
#ninja_forms_field_17:hover {
    color: white !important;
    background: #05A0BC !important;
    box-shadow: none !important;

}



div#ninja_forms_form_5_response_msg {
  padding-bottom: 200px !important;

}*/
.filters-work-section {
  max-width: 1300px;
  float: none !important;
  margin: auto !important; }

.emodal {
  padding: 0px !important; }

.emodal-content img {
  width: 100% !important;
  position: relative;
  top: -17px; }
.emodal-content .text-modal {
  padding: 6px 25px;
  text-align: justify; }

@media (min-width: 64.063em) {
  .emodal-content .text-modal {
    padding: 6px 50px;
    text-align: justify; } }
.emodal > .emodal-close {
  text-decoration: none;
  text-align: center;
  line-height: 1;
  position: absolute;
  font-weight: bold;
  cursor: pointer;
  min-width: 1em;
  font-size: 0px !important;
  width: 17px;
  height: 17px;
  background-color: transparent !important;
  background: url(../../public/images/X.png);
  background-size: 100% 100%;
  margin: 16px; }

.sub-menu-right {
  text-align: right;
  padding-right: 5%; }

.sub-menu-left {
  text-align: left;
  padding-left: 5%; }

.sub-menu-right, .sub-menu-left {
  width: 49% !important;
  display: inline-block !important;
  vertical-align: middle !important;
  letter-spacing: 0px;
  font-family: 'GothamL'; }

.sub-menu-right a, .sub-menu-left a {
  padding-bottom: 11px;
  border-bottom: 2.9px solid #4FBBD1;
  color: #4FBBD1 !important;
  outline: none;
  border-bottom: 0px;
  font-weight: normal; }

.row-sub-menu {
  position: absolute;
  z-index: 9;
  width: 100%;
  top: -59px; }

@media (min-width: 64.063em) {
  .row-sub-menu {
    top: -30px; } }
/*********************/
div.pagination {
  font-family: 'GothamL';
  font-size: 17px;
  font-weight: normal;
  color: #696969; }
  div.pagination span {
    color: #2F83DE;
    padding: 4px 5px;
    border-bottom: 2px solid #2F83DE;
    margin: 9px; }
  div.pagination a {
    padding: 4px 5px;
    margin: 9px;
    color: #696969;
    text-decoration: inherit; }
    div.pagination a:visited {
      padding: 4px 5px;
      margin: 9px;
      color: #696969;
      text-decoration: inherit; }
    div.pagination a:hover {
      color: #696969;
      padding: 4px 5px;
      border-bottom: 2px solid #696969;
      margin: 9px; }

.footer1 {
  font-size: 15px;
  letter-spacing: 0.6px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #CECECE;
  text-transform: capitalize;
  font-family: sans-serif; }

.footer2 {
  font-size: 18px;
  letter-spacing: 0.9px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #CECECE;
  line-height: 1.5;
  font-family: sans-serif; }

.hidden-cont {
  display: none !important; }
  .hidden-cont .wpb_wrapper {
    display: none !important; }

body {
  background: #FFFFFF; }

#page.site {
  width: 100%;
  text-align: center;
  margin: 0 auto; }

.site-header {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0px;
  padding-top: 0px;
  top: 0;
  z-index: 10;
  position: fixed;
  -webkit-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 40px -16px rgba(0, 0, 0, 0.75); }

#menuprin {
  width: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: left;
  background: white;
  max-width: 1300px;
  margin: auto; }

.menu_bar {
  width: 20%;
  text-align: center; }
  .menu_bar .bt-menu {
    color: #3E3E3E;
    text-align: center;
    text-decoration: none; }
    .menu_bar .bt-menu a {
      font-size: 18px;
      cursor: pointer; }
      .menu_bar .bt-menu a:visited, .menu_bar .bt-menu a:hover, .menu_bar .bt-menu a:focus, .menu_bar .bt-menu a:active {
        color: #4B608B;
        text-align: center;
        text-decoration: none; }

@media (min-width: 64.063em) {
  .menu_bar {
    display: none !important; } }
.site-branding {
  width: 56%;
  margin: 0px auto;
  text-align: center;
  display: inline-block;
  vertical-align: middle; }
  .site-branding img {
    width: 115px;
    text-align: center; }

@media (min-width: 64.063em) {
  .site-branding img {
    width: 200px; } }
@media (min-width: 64.063em) {
  .site-branding {
    width: 24%;
    display: inline-block;
    vertical-align: middle;
    float: none; } }
.menu_bar {
  display: inline-block;
  vertical-align: middle; }

nav#navprin {
  width: 250px;
  text-align: center;
  height: 100%;
  background: white;
  margin: 0px;
  position: fixed;
  z-index: 10;
  top: 79px;
  left: -100%;
  -webkit-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 44px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 3px 27px 44px -16px rgba(0, 0, 0, 0.75); }

@media (min-width: 64.063em) {
  nav#navprin {
    width: 74%;
    text-align: center;
    height: auto;
    margin: 0px;
    position: inherit;
    z-index: 0;
    top: auto;
    display: inline-block;
    vertical-align: middle;
    float: none;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 0px 0px transparent;
    box-shadow: 0px 0px 0px 0px transparent; } }
.search {
  padding-bottom: 10px;
  padding-top: 27px; }
  .search img {
    width: 23px; }

@media (min-width: 64.063em) {
  .search {
    display: none; } }
.menu-principal-menu-container ul {
  margin: 0px; }
.menu-principal-menu-container li {
  margin-bottom: 0px;
  padding-top: 8px;
  padding-bottom: 15px;
  text-align: center; }
  .menu-principal-menu-container li a {
    font-size: 17px;
    outline: none !important;
    font-family: 'GothamL';
    font-weight: normal; }
.menu-principal-menu-container .phone a {
  color: #04a9c6; }
  .menu-principal-menu-container .phone a:visited, .menu-principal-menu-container .phone a:focus, .menu-principal-menu-container .phone a:active {
    color: #04a9c6; }
.menu-principal-menu-container li a:hover {
  color: #4FBBD1 !important; }
.menu-principal-menu-container li a:visited, .menu-principal-menu-container li a:hover, .menu-principal-menu-container li a:focus, .menu-principal-menu-container li a:active {
  color: #4B608B;
  text-align: center;
  text-decoration: none;
  outline: none; }

@media (min-width: 64.063em) and (max-width: 1200px) {
  .menu-principal-menu-container li a {
    font-size: 14px; } }
@media (min-width: 64.063em) {
  .menu-principal-menu-container li {
    width: auto;
    /* max-width: 140px; */
    text-align: center;
    margin: 0 auto;
    /* background: #FFFFFF; */
    z-index: 1000;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
    vertical-align: middle;
    float: none;
    margin: 0px 11px 0px 11px; } }
@media (min-width: 85.375em) {
  .menu-principal-menu-container li {
    margin: 0px 13px 0px 13px; } }
@media (min-width: 64.063em) {
  .menu-principal-menu-container {
    display: inline-block;
    vertical-align: middle;
    float: none; } }
.icon-nav img {
  width: 42px;
  padding-left: 0px;
  vertical-align: super;
  margin-top: 8px; }

@media (min-width: 64.063em) {
  .icon-nav {
    display: inline-block;
    vertical-align: middle;
    float: none; }
    .icon-nav img {
      width: 61px;
      padding-left: 19px;
      vertical-align: super;
      margin-top: 0px; } }
.page_item a {
  padding-bottom: 11px;
  border-bottom: 2.9px solid #4FBBD1;
  color: #4FBBD1 !important;
  outline: none; }

footer#colophon.site-footer {
  width: 100%;
  background: #1B1B1B url("../../public/images/footer.jpg");
  background-size: cover;
  padding: 60px 0px 0px 0px; }

div.site-info {
  width: 100%;
  padding-top: 28px;
  padding-bottom: 28px;
  max-width: 1300px;
  margin: auto; }
  div.site-info aside {
    margin-bottom: 0px;
    width: 99%; }
    div.site-info aside.widget.widget_text {
      vertical-align: middle;
      display: inline-block; }
      div.site-info aside.widget.widget_text p {
        margin-top: 10px;
        margin-bottom: 10px;
        color: #CECECE; }
        div.site-info aside.widget.widget_text p.footer1 {
          font-size: 15px;
          letter-spacing: 0.6px; }
        div.site-info aside.widget.widget_text p.footer2 {
          font-size: 18px;
          letter-spacing: 0.9px; }
          div.site-info aside.widget.widget_text p.footer2 a {
            color: #CECECE; }
            div.site-info aside.widget.widget_text p.footer2 a:hover {
              color: #CECECE; }
      div.site-info aside.widget.widget_text img {
        margin: 0px 10px;
        opacity: 0.7; }
        div.site-info aside.widget.widget_text img:hover {
          opacity: 1; }

@media (min-width: 64.063em) {
  div.site-info aside#text-2 {
    width: 38%; } }
@media (min-width: 64.063em) {
  div.site-info aside#text-3 {
    width: 29%; } }
@media (min-width: 64.063em) {
  div.site-info aside#text-4 {
    width: 32%; } }
.widget {
  margin: 0 0 0em; }

/* 404 Page */
.not-found-note-section {
  padding: 80px 10px;
  background-color: #fff; }

.not-found-note {
  position: relative;
  max-width: 375px;
  margin: 0 auto; }

div.site-info-1, div.site-info-2, div.site-info-3 {
  width: 100%;
  max-width: 100%;
  padding: 0px;
  margin: 0px; }
div.site-info-1 {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  margin: 0px;
  padding: 0px 4%; }
div.site-info-2 {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  margin: 0px;
  padding: 0px 4%; }
  div.site-info-2 ul.menu-menu-footer .page_item a {
    color: white; }
  div.site-info-2 aside#nav_menu-2 ul li a, div.site-info-2 aside#nav_menu-2 ul li.page_item a {
    color: white !important; }
div.site-info-1 {
  text-align: left; }
  div.site-info-1 p.footer-dir {
    color: white;
    font-family: 'GothamB';
    margin-bottom: 6px;
    width: 49%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-right: 20px; }
    div.site-info-1 p.footer-dir a {
      color: white; }
      div.site-info-1 p.footer-dir a:visited {
        color: white; }
      div.site-info-1 p.footer-dir a:hover {
        color: #0a94ac; }
  div.site-info-1 p span.footer-dir-desc {
    color: white;
    font-family: 'GothamL';
    margin: 0px;
    font-size: 15px;
    display: block;
    width: 100%; }
  div.site-info-1 p.footer-telf {
    text-align: left; }
    div.site-info-1 p.footer-telf a {
      text-decoration: none;
      color: #04a9c6;
      font-family: 'GothamL';
      margin: 0px;
      font-size: 15px; }
      div.site-info-1 p.footer-telf a img {
        margin-right: 10px; }
  div.site-info-1 aside#text-5 ul {
    margin-left: 0; }
    div.site-info-1 aside#text-5 ul li {
      display: inline-block;
      margin-right: 10px; }
  div.site-info-1 aside#text-5 a {
    color: #777777;
    font-size: 40px; }
    div.site-info-1 aside#text-5 a:hover {
      color: #0a94ac; }
  div.site-info-1 a.logo {
    width: 186px;
    filter: grayscale(100%);
    margin-left: 39px; }
div.site-info-3 {
  background: black;
  width: 100%; }
  div.site-info-3 aside#text-8 {
    margin: 0px; }
  div.site-info-3 p {
    margin: 0px;
    padding: 20px; }
div.site-info-2 aside#nav_menu-2 {
  margin-top: 19px;
  text-align: left;
  width: 80%;
  float: right; }
  div.site-info-2 aside#nav_menu-2 ul {
    margin: 0px;
    list-style: none;
    column-count: 2; }
    div.site-info-2 aside#nav_menu-2 ul li a {
      color: white;
      padding: 4px 0px;
      display: block;
      font-family: 'GothamB';
      border-bottom: 0px solid; }
      div.site-info-2 aside#nav_menu-2 ul li a:visited {
        color: white;
        padding: 4px 0px;
        display: block;
        font-family: 'GothamB';
        border-bottom: 0px solid; }
      div.site-info-2 aside#nav_menu-2 ul li a:hover {
        color: #0a94ac !important;
        border-bottom: 0px solid; }
    div.site-info-2 aside#nav_menu-2 ul.sub-menu {
      position: initial;
      background: none;
      display: initial;
      border-top: 0px;
      width: 46%;
      left: 0px;
      margin-top: 0px !important; }
      div.site-info-2 aside#nav_menu-2 ul.sub-menu li {
        width: 100% !important;
        display: block !important;
        padding: 0px;
        margin: 0px; }
        div.site-info-2 aside#nav_menu-2 ul.sub-menu li a {
          width: 100%;
          display: block;
          padding: 0px;
          text-align: left;
          padding-left: 15px; }
div.site-info-1 aside#text-6 {
  margin-top: 20px; }

@media (max-width: 710px) {
  div.site-info-1 {
    width: 100%; }
  div.site-info-2 {
    width: 100%; }
    div.site-info-2 aside#nav_menu-2 {
      width: 100%; } }
@media (min-width: 64.063em) {
  .not-found-note {
    max-width: 500px; } }
.not-found-note-helper {
  position: relative;
  padding: 25px 20px 20px 50px;
  background-image: url("../../public/images/post-it.png");
  background-size: 100% 100%;
  background-repeat: no-repeat; }

@media (min-width: 64.063em) {
  .not-found-note-helper {
    padding: 45px 30px 60px 50px; } }
.not-found-note-title {
  font-size: 26px;
  font-family: 'Noteworthy';
  color: #000; }

@media (min-width: 64.063em) {
  .not-found-note-title {
    font-size: 40px; } }
.not-found-note-paragraph-wrapper {
  margin-bottom: 10px; }

@media (min-width: 64.063em) {
  .not-found-note-paragraph-wrapper {
    margin-bottom: 30px; } }
.not-found-note-paragraph {
  color: #000;
  margin: 10px auto;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Noteworthy'; }

@media (min-width: 64.063em) {
  .not-found-note-paragraph {
    font-size: 18px; } }
.not-found-note-image-wrapper {
  text-align: right; }

.not-found-note-image {
  width: 160px; }

@media (min-width: 64.063em) {
  .not-found-note-image {
    width: 200px; } }
/*# sourceMappingURL=app.css.map */
/****TALK with US***************************************************/
.w2linput.submit {
  color: #FE6A65 !important;
  display: block !important;
  width: 169px !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 14px 5px !important;
  font-size: 16px !important;
  font-family: "GothamL" !important;
  font-weight: normal;
  border: 2.5px solid white !important;
  border: 2px solid !important;
  border-color: #FE6A65 !important;
  border-radius: 0px !important;
  background: white !important;
  box-shadow: none !important; }
  .w2linput.submit:hover {
    color: white !important;
    background: #FE6A65 !important;
    cursor: pointer !important; }

div.sf_field_first_name, div.sf_field_last_name, div.sf_field_00N6100000Bn98m, div.sf_field_state {
  width: 100% !important;
  display: inline-block;
  margin-bottom: 20px; }
div.sf_field_00N6100000Bn98m, div.sf_field_state {
  vertical-align: top; }

@media (min-width: 64.063em) {
  div.sf_field_first_name, div.sf_field_last_name, div.sf_field_00N6100000Bn98m, div.sf_field_state {
    width: 24.6% !important;
    display: inline-block;
    margin-bottom: 0px; } }
input#sf_first_name, input#sf_last_name {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99%;
  margin: 0px; }

select#sf_00N6100000Bn98m, select#sf_state, select#sf_00N6100000HWVWT {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99%;
  margin: 0px; }
select#sf_00N6100000Bn98m, select#sf_state, select#sf_00N6100000HWVWT {
  -webkit-appearance: none !important;
  -moz-appearance: none;
  appearance: none;
  background: url(../../public/images/arrow-down-01-128-lightblue.png) #FFF;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position-y: 46%;
  background-position-x: 94%;
  background-position: 96% 49%;
  height: 58px;
  letter-spacing: 0.4px;
  padding: 9px;
  font-size: 17px;
  color: #A3A3A3;
  width: 99%;
  height: 45px !important;
  vertical-align: top;
  border-radius: 0px;
  padding-right: 30px !important; }

@media (min-width: 64.063em) {
  input#sf_first_name, input#sf_last_name {
    width: 91% !important; }

  select#sf_00N6100000Bn98m, select#sf_state, select#sf_00N6100000HWVWT {
    width: 91% !important; } }
div.sf_field_email, div.sf_field_phone, div.sf_field_phone, div.sf_field_company {
  width: 100% !important;
  display: inline-block; }

@media (min-width: 64.063em) {
  div.sf_field_email, div.sf_field_phone, div.sf_field_phone, div.sf_field_company {
    width: 48.3% !important;
    display: block; } }
input#sf_email, input#sf_phone, input#sf_company {
  padding: 9px;
  font-size: 17px;
  background: white;
  color: #A3A3A3;
  width: 99% !important;
  margin-top: 19px; }

@media (min-width: 64.063em) {
  input#sf_email, input#sf_phone, input#sf_company {
    width: 97% !important; } }
div.sf_field_description {
  width: 99% !important;
  position: inherit;
  height: auto; }
  div.sf_field_description::before {
    content: "HOW CAN WE HELP YOU *";
    font-family: 'GothamB';
    color: #04A9C6;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    font-weight: bold;
    top: 0px;
    left: 0px; }
  div.sf_field_description span.error_message {
    position: relative;
    top: 0px;
    left: 0px; }

@media (min-width: 64.063em) {
  div.sf_field_description::before {
    top: -124px;
    left: 50%; } }
@media (min-width: 64.063em) {
  div.sf_field_description span.error_message {
    top: -20px;
    left: 50%; } }
textarea#sf_description.w2linput.textarea {
  padding: 9px; }

@media (min-width: 64.063em) {
  div.sf_field_description {
    position: relative;
    height: 1px; }

  textarea#sf_description.w2linput.textarea {
    font-size: 17px;
    letter-spacing: 0px;
    right: 2.77%;
    width: 47.42% !important;
    margin-bottom: 0px !important;
    overflow: hidden;
    position: absolute;
    top: -99px;
    resize: none;
    height: 83px;
    padding: 9px; } }
div.sf_field_description label {
  color: #04A9C6; }
div.form-apply-job {
  margin-bottom: 0px !important; }
div.error-job {
  margin: auto;
  width: 48%;
  border: 2px solid red;
  margin-top: -63px;
  margin-bottom: 50px; }

/****our AWARDS***************************************************/
/***** from of salesforce *******/
.form-salesforce-colm1 {
  vertical-align: middle;
  width: 36%;
  display: inline-block;
  padding-top: 13px !important;
  width: 64% !important;
  font-family: 'GothamB';
  text-align: left;
  font-weight: 300;
  color: #04A9C6;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  padding-top: 13px !important;
  width: 59% !important;
  font-family: 'GothamB';
  text-align: left;
  font-weight: 300;
  color: #04A9C6;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  padding: 0px 5% !important; }
  .form-salesforce-colm1 p {
    width: 100%;
    max-width: 500px;
    margin: auto;
    color: #a0a0a0;
    width: 100%;
    margin-bottom: 0px; }
    .form-salesforce-colm1 p span.contact-span1 {
      text-transform: uppercase;
      font-size: 29px;
      margin-bottom: 21px;
      display: block;
      color: #04A9C6; }

.form-salesforce-colm2 {
  width: 39%;
  display: inline-block;
  vertical-align: middle;
  max-width: 380px;
  text-align: center; }
  .form-salesforce-colm2 p span.contact-span1 {
    display: block;
    padding-top: 13px !important;
    width: 100% !important;
    font-family: 'GothamB';
    text-align: center;
    font-weight: 300;
    color: #ababab;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 18px; }
  .form-salesforce-colm2 div.sf_field_first_name, .form-salesforce-colm2 div.sf_field_last_name, .form-salesforce-colm2 div.sf_field_email, .form-salesforce-colm2 div.sf_field_00N6100000Bn98m, .form-salesforce-colm2 div.sf_field_state, .form-salesforce-colm2 div.sf_field_00N6100000HWVWT, .form-salesforce-colm2 div.sf_field_phone, .form-salesforce-colm2 div.sf_field_company {
    width: 100% !important;
    display: inline-block;
    margin: 0px 0px 20px 0px !important; }

@media (max-width: 895px) {
  .form-salesforce-colm1, .form-salesforce-colm2 {
    width: 90% !important;
    display: block;
    max-width: 100%;
    text-align: center;
    margin: auto; } }
/* ---------- NOT NEEDED? ----------
.form-salesforce-colm2 div.sf_field_first_name,
.form-salesforce-colm2 div.sf_field_last_name,
.form-salesforce-colm2 div.sf_field_00N6100000Bn98m,
.form-salesforce-colm2 div.sf_field_state {
  width: 77%;
  margin: auto;
}
------------------------------------ */
input#sf_first_name, input#sf_last_name, input#sf_email, input#sf_phone, input#sf_company {
  width: 100% !important;
  margin: 0px; }

select#sf_00N6100000Bn98m, select#sf_state, select#sf_00N6100000HWVWT {
  width: 100% !important;
  margin: 0px; }

.form-salesforce-colm2 div.sf_field_state, .form-salesforce-colm2 div.sf_field_00N6100000HWVWT {
  margin-top: 8px !important; }

.salesforce_w2l_lead .w2linput.submit {
  margin-top: 13px !important; }

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 35px;
  border: 1px solid #888;
  color: grey;
  font-weight: bold;
  font-family: GothamL;
  width: 500px;
  /* Could be more or less, depending on screen size */ }
  .modal-content div.sf_field_first_name {
    width: 100% !important; }

div.sf_field_last_name, div.sf_field_email {
  width: 100% !important; }

.modal-content input#sf_first_name {
  width: 100% !important; }

input#sf_last_name, input#sf_email, input#sf_phone, input#sf_company {
  width: 100% !important; }

.download-pdf-button .vc_btn3.vc_btn3-color-danger {
  box-shadow: none !important;
  background-color: #FB544F !important; }

.solution-child-button.download-pdf-button .vc_btn3.vc_btn3-color-danger {
  margin-bottom: 50px; }

.sf_field span {
  color: red;
  font-size: 13px; }

.cancel-button {
  color: grey;
  border-bottom: 2px solid grey;
  font-size: 18px;
  width: 62px;
  margin: 0 auto; }

.solution-button {
  margin-top: 20px; }

.modal .sf_field_first_name {
  margin-bottom: 18px;
  margin-top: 20px; }

.modal-form-description {
  font-size: 18px; }

.solutions-pdf-button button.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-square.vc_btn3-style-classic.vc_btn3-icon-left.vc_btn3-color-danger {
  padding: 18px 58px !important; }
.solutions-pdf-button .vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
  left: 40px; }

@media (max-width: 768px) {
  .modal-content {
    width: 100%; }

  .modal {
    top: 33px; } }
#hidden-button {
  padding: 10px 38px; }

.vc_row p.hidden-button-container {
  margin-top: 30px !important; }

.entry-content2 {
  padding-bottom: 20px; }

#sf_form_salesforce_w2l_lead_8 .w2linput.submit,
#sf_form_salesforce_w2l_lead_9 .w2linput.submit,
#sf_form_salesforce_w2l_lead_10 .w2linput.submit {
  color: #fff !important;
  display: block !important;
  width: 169px !important;
  margin: auto !important;
  margin-top: 37px !important;
  padding: 14px 5px !important;
  font-size: 16px !important;
  font-family: "GothamL" !important;
  font-weight: normal;
  border: none !important;
  border-radius: 0px !important;
  background: #06a9c6 !important;
  box-shadow: none !important; }
  #sf_form_salesforce_w2l_lead_8 .w2linput.submit:hover,
  #sf_form_salesforce_w2l_lead_9 .w2linput.submit:hover,
  #sf_form_salesforce_w2l_lead_10 .w2linput.submit:hover {
    color: white !important;
    background: #FE6A65 !important;
    cursor: pointer !important; }

.landing-page #navprin {
  display: none; }
.landing-page .bt-menu {
  display: none; }

iframe.youtube-player {
  height: 100% !important;
  width: 100% !important; }

.bctt-click-to-tweet {
  border-bottom: 1px solid #ccc;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 1px solid #ccc;
  margin-bottom: 1.75em; }
  .bctt-click-to-tweet .bctt-ctt-text {
    display: block;
    padding-left: 25px; }
    .bctt-click-to-tweet .bctt-ctt-text:before {
      color: #05A9C6;
      content: "\f099";
      display: block;
      font-family: FontAwesome;
      font-size: 24px;
      left: 10px;
      padding-right: 3px;
      position: absolute;
      text-decoration: none;
      top: 50%;
      transform: translate(0, -50%); }
    .bctt-click-to-tweet .bctt-ctt-text a {
      color: #333 !important;
      font-family: GothamL !important;
      font-size: 16px;
      font-weight: normal; }
      .bctt-click-to-tweet .bctt-ctt-text a:after {
        color: #05A9C6;
        content: "Tweet This";
        text-decoration: underline; }
      .bctt-click-to-tweet .bctt-ctt-text a:hover {
        color: #AAA !important; }
  .bctt-click-to-tweet .bctt-ctt-btn {
    background: none;
    color: #05A9C6 !important;
    display: none;
    font-family: 'GothamB' !important;
    font-size: 14px;
    font-weight: 100;
    margin: 0px;
    padding: 0;
    text-transform: uppercase; }

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