@charset "UTF-8";
/* @file
 * This file is a custom file that loads all files. Each non-base layer
 * can be disabled.
 *
 * Do not name this file "STARTER.scss". This file should be named
 * THEMENAME.scss. If you used the drush command to generate this subtheme,
 * it should be named for you.
 *
 * This application file (THEMENAME.scss) is where all the partials are
 * imported.
 *
 * Theme styles are categorized using SMACSS standards. They utilize
 * categorization of styles into various categories. Those categories are the
 * following:
 *
 * - Base: CSS reset/normalize plus HTML element styling.
 * - Layout: Macro arrangement of a web page, including any grid systems.
 * - Modules: Dictate minor layout modules or reusable elements.
 * - States: Describe the appearance of a module in various states.
 * - Theme: Specific customizations for your subtheme.
 * For more information about this new Drupal css file standard, please review
 * the following:
 * - https://drupal.org/node/1887922
 * - http://smacss.com/
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@import url("//fonts.googleapis.com/css?family=Medula+One|Open+Sans:300,400,600,700,800|Roboto+Condensed");
@import url("https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i&display=swap&subset=latin-ext");
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;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* 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,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  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;
}

/**
 * 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.
 */
button,
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"],
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,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 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.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 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).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * 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).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 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;
}

meta.foundation-version {
  font-family: "/5.5.0/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em;
}

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
  width: 40.063em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
  width: 64.063em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em;
}

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
  width: 90.063em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html, body {
  height: 100%;
}

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

html, body {
  font-size: 100%;
}

body {
  background: #fff;
  color: #222;
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto;
}

a:hover {
  cursor: pointer;
}

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

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none !important;
  visibility: hidden;
}

.invisible {
  visibility: hidden;
}

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

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

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.inline-list {
  margin: 0 auto 1.0625rem auto;
  margin-left: -1.375rem;
  margin-right: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.inline-list > li {
  list-style: none;
  float: left;
  margin-left: 1.375rem;
  display: block;
}

.inline-list > li > * {
  display: block;
}

@font-face {
  font-family: 'fontello';
  src: url("../fonts/icons/fontello.eot?92314152");
  src: url("../fonts/icons/fontello.eot?92314152#iefix") format("embedded-opentype"), url("../fonts/icons/fontello.woff2?92314152") format("woff2"), url("../fonts/icons/fontello.woff?92314152") format("woff"), url("../fonts/icons/fontello.ttf?92314152") format("truetype"), url("../fonts/icons/fontello.svg?92314152#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?92314152#fontello') format('svg');
  }
}
*/
/*[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  !* opacity: .8; *!
 
  !* For safety - reset parent styles, that can break glyph codes*!
  font-variant: normal;
  text-transform: none;
 
  !* fix buttons height, for twitter bootstrap *!
  line-height: 1em;
 
  !* Animation center compensation - margins should be symmetric *!
  !* remove if not needed *!
  margin-left: .2em;
 
  !* you can be more comfortable with increased icons size *!
  !* font-size: 120%; *!
 
  !* Font smoothing. That was taken from TWBS *!
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  !* Uncomment for 3D effect *!
  !* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); *!
}*/
.icon-people---simple-line-icons:before {
  content: '\e809';
}

/* '' */
.icon-arrow-right---simple-line-icons-copy-2:before {
  content: '\e80a';
}

/* '' */
.icon-arrow-right---simple-line-icons:before {
  content: '\e80b';
}

/* '' */
.icon-google-plus---fontawesome:before {
  content: '\e80c';
}

/* '' */
.icon-arrow-down---simple-line-icons:before {
  content: '\e80d';
}

/* '' */
.icon-twitter---fontawesome:before {
  content: '\e80e';
}

/* '' */
.icon-screen-smartphone---simple-line-icons:before {
  content: '\e80f';
}

/* '' */
.icon-facebook---fontawesome:before {
  content: '\e811';
}

/* '' */
.icon-linkedin:before {
  content: '\f0e1';
}

a {
  color: #00A5D3;
  text-decoration: none;
}

a:hover {
  color: #E26329;
  text-decoration: underline;
}

#footer p {
  margin: 0px;
}

h1,
h2,
h3,
h4,
.figure-horizontal .figure-title-text,
.circle-why-bedsonline .video-title .video-title-text,
h5,
h6 {
  line-height: 1.3em;
}

@media only screen and (max-width: 600px) {
  h1,
  h2,
  h3,
  h4,
  .figure-horizontal .figure-title-text,
  .circle-why-bedsonline .video-title .video-title-text,
  h5,
  h6 {
    line-height: 1.5;
    font-size: 16px;
    line-height: 24px;
    font-size: 1.6rem;
    line-height: 2.4rem;
    word-wrap: break-word;
    -webkit-text-size-adjust: none;
  }
}

h1 {
  font-size: 64px;
  line-height: 54px;
  margin-bottom: 15px;
  padding: 0;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
}

h1 .span_p {
  font-family: "Lato", Arial, sans-serif;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 52px;
    line-height: 44px;
  }
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 45px;
    line-height: 38px;
  }
}

.i18n-zh-cn h1 {
  line-height: 52px;
  font-size: 44px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1024px) {
  .i18n-zh-cn h1 {
    line-height: 44px;
    font-size: 38px;
  }
}

@media only screen and (max-width: 600px) {
  .i18n-zh-cn h1 {
    line-height: 36px;
    font-size: 30px;
  }
}

h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 200;
  margin-bottom: 15px;
  margin-top: 25px;
}

.i18n-zh-cn h2 {
  font-weight: 400;
  letter-spacing: 0;
}

.i18n-zh-cn h2 .span_p {
  letter-spacing: 0.48px;
}

.title h2 {
  letter-spacing: 0;
}

h2.title-section {
  color: #E26329;
  position: relative;
  overflow: hidden;
}

h2.title-section:after, h2.title-section:before {
  background: #E26329;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: baseline;
  width: 150px;
}

h2.title-section:after {
  left: 0.5em;
  margin-right: -100%;
}

h2.title-section:before {
  right: 0.5em;
  margin-left: -100%;
}

.logos-home h2.title-section:before, .logos-home h2.title-section:after {
  background: #00A5D3;
}

h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 100;
  margin-bottom: 0.75em;
  margin-top: 50px;
}

.node-resource h3 {
  color: #E26329;
}


h4,
.figure-horizontal .figure-title-text,
.circle-why-bedsonline .video-title .video-title-text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 0.75em;
}

h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 0.75em;
}

h6 {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
}

p {
  margin: 0 0 1em 0;
  font-size: 16px;
  line-height: 24px;
}

.field-type-text-with-summary {
  font-size: 16px;
  line-height: 24px;
}

abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

pre,
code,
kbd,
samp,
tt {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  font-size: 1.3rem;
  line-height: 1.95rem;
  line-height: 1.5em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  background-color: #efefef;
  display: block;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #aaa;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 2em;
}

dd {
  margin: 0 0 0 2em;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: disc;
}

ul ul {
  list-style-type: circle;
}

ul ul ul {
  list-style-type: square;
}

ul ul ul ul {
  list-style-type: circle;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: decimal;
}

.link-caption {
  text-decoration: none;
}

.caption {
  font-size: 12px;
  font-style: italic;
  color: #7a7a7a;
  display: block;
  padding: 5px 10px;
  text-align: center;
}

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

@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

.node img {
  width: auto;
  height: auto;
}

.field-name-body img {
  height: auto;
}

@media only screen and (max-width: 1024px) {
  table {
    width: auto;
    border-collapse: collapse;
    border-spacing: 0;
  }
}

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

.padding-left {
  padding-left: 15px;
}

.padding-right {
  padding-right: 15px;
}

.padding-top {
  padding-top: 15px;
}

.padding-bottom {
  padding-bottom: 15px;
}

.margin-right {
  margin-right: 15px;
}

.margin-left {
  margin-left: 15px;
}

.margin-top {
  margin-top: 15px;
}

.margin-bottom {
  margin-bottom: 15px;
}

.margin-bottom-xl {
  margin-bottom: 25px;
}

.margin-bottom-xxl {
  margin-bottom: 50px;
}

.no-margin-right {
  margin-right: 0;
}

.no-margin-left {
  margin-left: 0;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0;
}

.align {
  display: table;
  height: 100%;
  width: 100%;
}

.align div[class*="align-"] {
  display: table-cell;
}

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

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

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

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

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

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

.text-orange {
  color: #E26329;
}

.text-blue {
  color: #00A5D3;
}

.text-green {
  color: #C4D600;
}

@media (max-width: 767px) {
  .text-cener-xs {
    text-align: center;
  }
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

hr.dashed {
  height: 1px;
  background-image: linear-gradient(90deg, #E26329, #E26329 50%, transparent 50%, transparent 100%);
  background-size: 30px 1px;
  border: none;
  margin: 15px 0;
  display: inline-block;
  width: 100%;
}

body {
  overflow-x: hidden;
}

body:not(.node-type-paragraph-page) .l-header + .l-main {
  padding-top: 95px;
}

@media (min-width: 960px) {
  body:not(.node-type-paragraph-page) .l-header + .l-main {
    padding-top: 115px;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  *zoom: 1;
}

.row:after {
  content: " ";
  display: block;
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@font-face {
  font-family: 'senty_golden_bell_eosregular';
  src: url("../fonts/sentygoldenbell-webfont.woff2") format("woff2"), url("../fonts/sentygoldenbell-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'fontello';
  src: url("../fonts/icons/fontello.woff2") format("woff2"), url("../fonts/icons/fontello.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icons/icomoon.eot?bj6nyd");
  src: url("../fonts/icons/icomoon.eot?bj6nyd#iefix") format("embedded-opentype"), url("../fonts/icons/icomoon.ttf?bj6nyd") format("truetype"), url("../fonts/icons/icomoon.woff?bj6nyd") format("woff"), url("../fonts/icons/icomoon.svg?bj6nyd#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.admin-menu .fixed {
  top: 1.8125rem;
}

#status-messages.reveal-modal .alert-box {
  margin-bottom: 0;
}

.reveal-modal {
  z-index: 999;
}

.item-list .pager {
  clear: none;
}

.item-list .pager li {
  padding: 0;
}

.inline {
  margin: 0 auto 1.0625rem auto;
  margin-left: -1.375rem;
  margin-right: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.inline > li {
  list-style: none;
  float: left;
  margin-left: 1.375rem;
  display: block;
}

.inline > li > * {
  display: block;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-m, .pull-active .menu-container .content > ul.menu > li {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-s {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-xs, ul.expanded li {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.transition {
  transition: all 0.3s ease-in-out;
}

.l-main {
  margin: 0 auto;
}

.l-main .breadcrumbs {
  display: none;
}

.l-messages {
  max-width: 1200px;
}

.not-logged-in #page-title {
  display: none;
}

.logged-in .button-group {
  margin-top: 115px;
}

.logged-in .button-group li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.logged-in #secondary-menu {
  position: absolute;
  top: 0;
  right: -190px;
}

.logged-in #secondary-menu h2 {
  display: none;
}

.logged-in #secondary-menu #secondary-menu-links li {
  display: inline-block;
  margin-right: 10px;
}

/* Custom styles from html.tpl class */
@media only screen and (min-width: 48em) {
  .resgister_page_custom .c_c {
    display: flex;
    justify-content: space-between;
  }
}

.resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register {
  padding: 15px 0;
  background: url(../images/bg/bnr_web_registration2.jpg) no-repeat center center/cover;
  display: flex;
}

.resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content {
  background: none;
  width: 65%;
  padding: 0;
  min-height: auto;
  align-items: flex-start;
  height: 100%;
}

@media (max-width: 767px) {
  .resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content {
    height: auto;
  }
}

.resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form {
  width: 35%;
}

@media (max-width: 767px) {
  .resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content,
  .resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form {
    width: 100%;
  }
}

.resgister_page_custom .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form {
  min-height: auto;
}

.resgister_page_custom .paragraphs-item-m18-text-quotes,
.resgister_page_custom .paragraphs-item-m6-figures {
  padding: 0;
}

.resgister_page_custom .paragraphs-item-m18-text-quotes:nth-child(2) {
  background-color: #f4f4f4;
  padding-top: 10px;
  padding-bottom: 0;
}

.resgister_page_custom .paragraphs-item-m18-text-quotes:nth-child(2) > .content {
  margin: 0 auto;
}

.resgister_page_custom .paragraphs-item-m18-text-quotes:nth-child(2) h2 {
  margin-bottom: 0;
}

.resgister_page_custom .paragraphs-item-m18-text-quotes .field-name-field-para-title p,
.resgister_page_custom .paragraphs-item-m18-text-quotes .field-name-field-para-title .span_p {
  margin: 0 0 15px;
}

.resgister_page_custom .paragraphs-item-m6-figures.icon-list {
  background-color: #f4f4f4;
}

.resgister_page_custom .paragraphs-item-m6-figures.icon-list:after {
  content: "";
  background: url(../images/separator.png) no-repeat center center/cover;
  height: 10px;
  width: 100%;
  display: block;
}

.resgister_page_custom .paragraphs-item-m6-figures.icon-list .field-name-field-para-m6item {
  max-width: 960px;
}

.resgister_page_custom .paragraphs-item-m6-figures.icon-list .field-collection-view {
  padding: 15px 0 0;
  margin: 0;
}

.resgister_page_custom .paragraphs-item-m4-slider-text.image-50 {
  background: #f4f4f4;
}

.resgister_page_custom .paragraphs-item-m3-slise-1-list .entity-paragraphs-item, .resgister_page_custom .paragraphs-item-m3-slide-1-list .entity-paragraphs-item {
  min-height: auto;
}

.resgister_page_custom .paragraphs-item-m3-slide-1-list .slick-prev::before,
.resgister_page_custom .paragraphs-item-m3-slide-1-list .slick-next::before {
  content: "\e80b";
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 40px;
  height: 40px;
  color: #4a4a4a;
  font-size: 25px;
}

.field-name-field-custom-class {
  display: none;
}

.we-c-h {
  display: block;
}

.we-c-h .h {
  padding: 5px 5px 10px;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 45%;
  margin-left: -75px;
  width: 150px;
  color: #4a4a4a;
  font-size: 12px;
  line-height: 14px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-in-out;
}

.we-c-h .h:before {
  width: 0px;
  height: 0px;
  border: 10px solid transparent;
  border-bottom-color: white;
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
}

.we-c-h .h img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.we-c-h:hover .h, .we-c-h.hvr .h {
  opacity: 1;
  visibility: visible;
  left: 50%;
}

.page-tips-tools #page-title {
  display: none;
}

.section-resource .node-resource .download-box .name {
  color: #E26329;
  font-size: 24px;
  line-height: 28px;
  font-weight: 100;
  margin-bottom: 0.75em;
  margin-top: 50px;
}

@media (min-width: 900px) {
  .section-resource .node-resource > .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .section-resource .node-resource > .row > div[class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header-background {
  position: relative;
  width: 100vw;
  height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.header-background .content {
  display: table-cell;
  vertical-align: middle !important;
  text-align: center;
  color: #fff;
  position: relative;
}

.header-background .section-resource:before,
.section-product .header-background:before,
.section-two-colum-form .header-background:before,
.section-articles .header-background:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header-background .section-resource .content,
.section-product .header-background .content,
.section-two-colum-form .header-background .content,
.section-articles .header-background .content {
  text-align: center;
  vertical-align: middle !important;
}

.header-background .section-resource .content h1,
.section-product .header-background .content h1,
.section-two-colum-form .header-background .content h1,
.section-articles .header-background .content h1 {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: transparent;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
}

.header-background .section-resource .content .title,
.section-product .header-background .content .title,
.section-two-colum-form .header-background .content .title,
.section-articles .header-background .content .title {
  background-color: rgba(0, 0, 0, 0.4);
}

.header-background .title {
  display: inline-block;
  position: relative;
  text-align: left;
  padding-left: 100px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 1160px;
}

.section-product .header-background .title,
.section-two-colum-form .header-background .title {
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
  width: 100%;
}

.section-product .header-background .title h1,
.section-two-colum-form .header-background .title h1 {
  display: block;
  margin-bottom: 15px;
}

.section-product .header-background .title p,
.section-two-colum-form .header-background .title p {
  text-align: center;
}

.i18n-zh-cn .header-background .title p {
  font-size: 24px;
  line-height: 30px;
}

@media (max-width: 700px) {
  .header-background .title {
    padding: 10px;
    text-align: center;
  }
  .header-background .title .category {
    position: static;
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .header-background .title .premium {
    width: 100%;
    left: 0;
  }
  .header-background .title p {
    text-align: center;
  }
}

.header-background h1 {
  display: inline-block;
  background: url("background/pastilla_green.png") repeat 0 0;
  margin: 0;
  padding: 15px 100px;
  line-height: 1.1;
}

@media only screen and (max-width: 600px) {
  .header-background h1 {
    padding: 15px;
  }
}

.page-articles .header-background h1 {
  background-image: url("background/pastilla3.png");
}

.header-background .category {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -33px;
}

.header-background h2 {
  font-size: 28px;
  line-height: 30px;
  margin: 10px 0 5px;
  padding: 0;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .header-background h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

.header-background p {
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.header-background .text-premium {
  color: #E26329;
  margin-right: 10px;
}

.header-background .premium {
  position: absolute;
  top: -20px;
  left: -20px;
}

.view-resources .header-background .content,
.header-with-logo .content {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.view-resources .header-background .content {
  width: 100%;
}

.header-with-logo .content {
  width: 80%;
  max-width: 740px;
}

.header-with-logo .content:before, .header-with-logo .content:after {
  content: " ";
  display: table;
}

.header-with-logo .content:after {
  clear: both;
}

.header-with-logo .logo {
  display: inline-block;
  width: 120px;
  margin-top: 1rem;
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo .logo {
    width: 22%;
    margin-top: 0;
  }
}

.header-with-logo .title {
  width: 100%;
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo .title {
    width: 70%;
  }
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo .logo,
  .header-with-logo .title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 43.75em) {
  .header-with-logo .category .icon {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo.align-logo--right .title {
    left: 0;
    right: auto;
  }
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo.align-logo--right .logo {
    right: 0;
    left: auto;
  }
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo.align-logo--left .title {
    right: 0;
    left: auto;
  }
}

@media only screen and (min-width: 43.8125em) {
  .header-with-logo.align-logo--left .logo {
    left: 0;
    right: auto;
  }
}

@media only screen and (max-width: 43.75em) {
  .section-resource .header-with-logo .content .title h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 43.75em) {
  .section-resource .header-with-logo .content .title p {
    font-size: 12px;
  }
}

.view-mode-two_columns_75_25_form > .row {
  display: table;
}

.section-resource .node,
.section-articles .node,
.section-two-colum-form .node,
.section-landing .node {
  padding-top: 25px;
}

.section-resource .node img,
.section-articles .node img,
.section-two-colum-form .node img,
.section-landing .node img {
  height: auto !important;
}

.section-resource .aside,
.section-articles .aside,
.section-two-colum-form .aside,
.section-landing .aside {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dedede;
}

.section-resource .aside .content,
.section-articles .aside .content,
.section-two-colum-form .aside .content,
.section-landing .aside .content {
  display: inline-block;
  vertical-align: top !important;
  width: 100%;
  padding-left: 65px;
  float: left;
}

.section-resource .aside .icon-calendar,
.section-articles .aside .icon-calendar,
.section-two-colum-form .aside .icon-calendar,
.section-landing .aside .icon-calendar {
  margin-right: -100%;
  vertical-align: top !important;
  float: left;
}

.section-resource .header-background h2,
.section-articles .header-background h2,
.section-two-colum-form .header-background h2,
.section-landing .header-background h2 {
  font-size: 64px;
  line-height: 54px;
  font-weight: 100;
  font-family: "Lato", Arial, sans-serif;
  display: inline-block;
  background: url("background/pastilla_green.png") repeat 0 0;
  margin: 0;
  padding: 15px 50px;
}

@media only screen and (max-width: 600px) {
  .section-resource .header-background h2,
  .section-articles .header-background h2,
  .section-two-colum-form .header-background h2,
  .section-landing .header-background h2 {
    font-size: 45px;
    line-height: 38px;
    padding: 15px;
  }
}

.section-resource .header-background .content,
.section-articles .header-background .content,
.section-two-colum-form .header-background .content,
.section-landing .header-background .content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.section-resource .header-background .content h1,
.section-articles .header-background .content h1,
.section-two-colum-form .header-background .content h1,
.section-landing .header-background .content h1 {
  display: inline-block;
  background: none;
  margin: 0;
  padding: 0;
  background: none;
  font-weight: 600;
  font-size: 36px;
}

.section-resource .header-background .content h1 p,
.section-articles .header-background .content h1 p,
.section-two-colum-form .header-background .content h1 p,
.section-landing .header-background .content h1 p {
  display: block;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  background: transparent;
  padding: 0;
  margin: 0;
}

.section-resource .header-background .content h1 p strong,
.section-articles .header-background .content h1 p strong,
.section-two-colum-form .header-background .content h1 p strong,
.section-landing .header-background .content h1 p strong {
  font-weight: 900;
}

.section-resource .footer-bottom,
.section-articles .footer-bottom,
.section-two-colum-form .footer-bottom,
.section-landing .footer-bottom {
  margin-top: 50px;
}

.section-resource .footer-bottom .views-row .views-field-title a,
.section-articles .footer-bottom .views-row .views-field-title a,
.section-two-colum-form .footer-bottom .views-row .views-field-title a,
.section-landing .footer-bottom .views-row .views-field-title a {
  margin-top: 5px;
  font-size: 18px;
}

.section-resource .footer-bottom .view-resources .view-content,
.section-articles .footer-bottom .view-resources .view-content,
.section-two-colum-form .footer-bottom .view-resources .view-content,
.section-landing .footer-bottom .view-resources .view-content {
  padding: 10px 0;
}

.section-resource .container .footer-bottom .container,
.section-articles .container .footer-bottom .container,
.section-two-colum-form .container .footer-bottom .container,
.section-landing .container .footer-bottom .container {
  padding: 0;
}

.views-field-field-category {
  position: relative;
  padding: 5px 0;
}

.views-field-field-category .category-name {
  padding-left: 10px;
}

.views-field-field-category .category {
  display: inline-block;
  width: 100%;
  color: #4a4a4a;
}

.views-field-field-category .category span {
  vertical-align: middle;
}

.views-field-field-category .category .premium {
  right: 55px;
  top: 5px;
}

.views-field-field-category .category span[class*="icon"],
.views-field-field-category .category span[class^="icon"] {
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  background-size: 30px;
}

.view-resources,
.view-articles {
  width: 100%;
  float: left;
}

.view-resources .view-content,
.view-articles .view-content {
  padding: 15px 0;
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 700px) {
  .view-resources .view-content,
  .view-articles .view-content {
    padding: 0;
  }
}

.footer-bottom .view-resources .container, .footer-bottom
.view-articles .container {
  padding: 0;
}

.view-resources .view-footer,
.view-articles .view-footer {
  text-align: center;
  display: block;
  padding: 25px 0;
  width: 100%;
  float: left;
}

.view-resources .views-row,
.view-articles .views-row {
  width: 33%;
  display: inline-block;
  vertical-align: top !important;
  padding: 15px;
  position: relative;
}

.view-resources .views-row img,
.view-articles .views-row img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.view-resources .views-row .views-field-field-date,
.view-articles .views-row .views-field-field-date {
  position: relative;
  margin: 0;
  padding: 5px 0;
  display: block;
  color: #777;
  font-size: 12px;
}

.view-resources .views-row .views-field-field-sub-title-1,
.view-articles .views-row .views-field-field-sub-title-1 {
  display: inline-block;
}

.view-resources .views-row .views-field-field-sub-title-1 p,
.view-articles .views-row .views-field-field-sub-title-1 p {
  line-height: 16px;
  font-size: 14px;
  margin: 0;
}

.view-resources .views-row .views-field-field-category-1,
.view-articles .views-row .views-field-field-category-1 {
  display: inline-block;
}

.view-resources .views-row .views-field-title,
.view-articles .views-row .views-field-title {
  margin: 0;
}

.view-resources .views-row .views-field-title a,
.view-articles .views-row .views-field-title a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #333333;
  margin: 5px;
}

.view-resources .views-row .views-field-title a:hover,
.view-articles .views-row .views-field-title a:hover {
  color: #E26329;
}

.view-resources .views-row .views-field-field-category:hover + .views-field-field-image,
.view-resources .views-row .views-field-field-image:hover,
.view-articles .views-row .views-field-field-category:hover + .views-field-field-image,
.view-articles .views-row .views-field-field-image:hover {
  opacity: 0.8;
}

.footer-bottom .view-resources .views-row, .footer-bottom
.view-articles .views-row {
  width: 33.33336%;
  float: left;
}

@media (max-width: 800px) {
  .footer-bottom .view-resources .views-row, .footer-bottom
  .view-articles .views-row {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-bottom .view-resources .views-row, .footer-bottom
  .view-articles .views-row {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .view-resources .views-row,
  .view-articles .views-row {
    width: 50%;
    float: left;
  }
}

@media (max-width: 500px) {
  .view-resources .views-row,
  .view-articles .views-row {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .view-resources.view-display-id-block_3 .views-row,
  .view-articles.view-display-id-block_3 .views-row {
    width: 33.33334%;
    float: left;
  }
}

@media (max-width: 600px) {
  .view-resources.view-display-id-block_3 .views-row,
  .view-articles.view-display-id-block_3 .views-row {
    width: 100%;
    float: left;
  }
}

.view-resources .attachment-before,
.view-articles .attachment-before {
  background: #fbfbfb;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  height: auto;
  float: left;
}

.view-resources .attachment-before .views-row,
.view-articles .attachment-before .views-row {
  width: 50%;
  float: left;
}

.view-resources .attachment-before .views-row .views-field-title a,
.view-articles .attachment-before .views-row .views-field-title a {
  font-size: 20px;
}

@media (max-width: 700px) {
  .view-resources .attachment-before .views-row,
  .view-articles .attachment-before .views-row {
    width: 100%;
  }
}

.view-resources .view-empty,
.view-articles .view-empty {
  width: 100%;
  float: left;
}

.view-resources .view-empty p,
.view-articles .view-empty p {
  text-align: center;
  margin: 15px 0;
  padding: 25px;
  border: 1px dashed #dedede;
  font-size: 20px;
  line-height: 28px;
}

.view-resources .view-filters,
.view-articles .view-filters {
  background: #f4f4f4;
}

.view-resources .views-exposed-form,
.view-articles .views-exposed-form {
  width: 100%;
}

.view-resources .views-exposed-form .views-submit-button,
.view-articles .views-exposed-form .views-submit-button {
  display: none;
}

.view-resources .views-exposed-form .views-exposed-widgets,
.view-articles .views-exposed-form .views-exposed-widgets {
  margin: 0;
  padding: 0;
}

.view-resources .views-exposed-form .views-exposed-widget,
.view-resources .views-exposed-form .views-widget,
.view-articles .views-exposed-form .views-exposed-widget,
.view-articles .views-exposed-form .views-widget {
  display: inline-block;
  float: none;
  margin: 0;
  padding: 0;
}

.view-resources .views-exposed-form #edit-sort-bef-combine-wrapper,
.view-articles .views-exposed-form #edit-sort-bef-combine-wrapper {
  float: right;
  padding: 36px 0;
}

.view-resources .views-exposed-form .views-widget-filter-tid > label,
.view-resources .views-exposed-form .views-widget-filter-field_category_tid_selective > label,
.view-articles .views-exposed-form .views-widget-filter-tid > label,
.view-articles .views-exposed-form .views-widget-filter-field_category_tid_selective > label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
}

.view-resources .views-exposed-form .form-type-select label,
.view-articles .views-exposed-form .form-type-select label {
  display: inline;
  margin-right: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.view-resources .views-exposed-form .bef-select-as-radios,
.view-articles .views-exposed-form .bef-select-as-radios {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.view-resources .views-exposed-form .bef-select-as-radios .form-item,
.view-articles .views-exposed-form .bef-select-as-radios .form-item {
  display: inline-block;
  margin: 15px 5px;
}

.view-resources .views-exposed-form .bef-select-as-radios input,
.view-articles .views-exposed-form .bef-select-as-radios input {
  height: 1px;
  visibility: hidden;
  width: 1px;
  position: absolute;
}

.view-resources .views-exposed-form .bef-select-as-radios input + label,
.view-articles .views-exposed-form .bef-select-as-radios input + label {
  display: inline-block;
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #4a4a4a;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

.view-resources .views-exposed-form .bef-select-as-radios input + label:hover,
.view-articles .views-exposed-form .bef-select-as-radios input + label:hover {
  color: #E26329;
}

.view-resources .views-exposed-form .bef-select-as-radios input + label:hover:before,
.view-articles .views-exposed-form .bef-select-as-radios input + label:hover:before {
  transform: scale(0.9);
}

.view-resources .views-exposed-form .bef-select-as-radios input + label:before,
.view-articles .views-exposed-form .bef-select-as-radios input + label:before {
  content: "";
  width: 64px;
  height: 64px;
  display: block;
  background: url("../img/icons/all.png") no-repeat center center;
  margin: 0 auto 5px;
  position: relative;
  left: 0;
  border-radius: 100%;
  border: none;
  transition: all 0.3s ease-in-out;
}

.view-resources .views-exposed-form .bef-select-as-radios input + label:after,
.view-articles .views-exposed-form .bef-select-as-radios input + label:after {
  display: none;
}

.view-resources .views-exposed-form .bef-select-as-radios input:checked + label,
.view-articles .views-exposed-form .bef-select-as-radios input:checked + label {
  color: #E26329;
  font-weight: 300;
}

.view-resources .views-exposed-form .bef-select-as-radios input:checked + label:before,
.view-articles .views-exposed-form .bef-select-as-radios input:checked + label:before {
  background-color: #4a4a4a;
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-1 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-1 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-1 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-1 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-1 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-1 + label:before {
  background-image: url("../img/../img/icons-svg/webinar.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-7 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-7 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-7 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-7 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-7 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-7 + label:before {
  background-image: url("../img/../img/icons-svg/ebook.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-4 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-4 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-4 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-4 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-4 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-4 + label:before {
  background-image: url("../img/../img/icons-svg/success-story.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-8 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-8 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-8 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-8 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-8 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-8 + label:before {
  background-image: url("../img/../img/icons-svg/infographic.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-31 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-31 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-31 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-31 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-31 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-31 + label:before {
  background-image: url("../img/../img/icons-svg/quiz.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-3 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-3 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-3 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-3 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-3 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-3 + label:before {
  background-image: url("../img/../img/icons-svg/video.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-6 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-6 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-6 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-6 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-6 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-6 + label:before {
  background-image: url("../img/../img/icons-svg/insight.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-2 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-2 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-2 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-2 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-2 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-2 + label:before {
  background-image: url("../img/../img/icons-svg/template.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-32 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-32 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-32 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-32 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-32 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-32 + label:before {
  background-image: url("../img/../img/icons-svg/guide.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-38 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-38 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-38 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-38 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-38 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-38 + label:before {
  background-image: url("../img/../img/icons-svg/tools.svg");
}

.view-resources .views-exposed-form .bef-select-as-radios #edit-tid-39 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-category-39 + label:before,
.view-resources .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-39 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-tid-39 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-category-39 + label:before,
.view-articles .views-exposed-form .bef-select-as-radios #edit-field-category-tid-selective-39 + label:before {
  background-image: url("../img/../img/icons-svg/destination.svg");
}

@media (max-width: 700px) {
  .view-resources .views-exposed-form .views-exposed-widgets,
  .view-articles .views-exposed-form .views-exposed-widgets {
    padding: 10px 0 0;
  }
  .view-resources .views-exposed-form .bef-select-as-radios .form-item,
  .view-articles .views-exposed-form .bef-select-as-radios .form-item {
    display: inline-block;
    margin: 0px 2px;
    vertical-align: top !important;
  }
  .view-resources .views-exposed-form .bef-select-as-radios input + label,
  .view-articles .views-exposed-form .bef-select-as-radios input + label {
    font-size: 10px;
    max-width: 50px;
    line-height: 11px;
  }
  .view-resources .views-exposed-form .bef-select-as-radios input + label:before,
  .view-articles .views-exposed-form .bef-select-as-radios input + label:before {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
  .view-resources .views-exposed-form #edit-sort-bef-combine-wrapper,
  .view-articles .views-exposed-form #edit-sort-bef-combine-wrapper {
    padding: 0;
  }
  .view-resources .views-exposed-form .views-widget-filter-tid > label,
  .view-resources .views-exposed-form .form-type-select label,
  .view-articles .views-exposed-form .views-widget-filter-tid > label,
  .view-articles .views-exposed-form .form-type-select label {
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .view-resources .views-exposed-form .views-exposed-widget,
  .view-resources .views-exposed-form .views-widget,
  .view-articles .views-exposed-form .views-exposed-widget,
  .view-articles .views-exposed-form .views-widget {
    width: 100%;
  }
  .view-resources .views-exposed-form .views-widget-filter-tid > label,
  .view-resources .views-exposed-form .form-type-select label,
  .view-articles .views-exposed-form .views-widget-filter-tid > label,
  .view-articles .views-exposed-form .form-type-select label {
    text-align: center;
  }
  .view-resources .views-exposed-form .form-type-select label,
  .view-articles .views-exposed-form .form-type-select label {
    display: inline-block;
  }
  .view-resources .views-exposed-form #edit-sort-bef-combine-wrapper,
  .view-articles .views-exposed-form #edit-sort-bef-combine-wrapper {
    float: left;
    padding-top: 10px;
  }
}

@media (max-width: 420px) {
  .view-resources .views-exposed-form .bef-select-as-radios .form-item,
  .view-articles .views-exposed-form .bef-select-as-radios .form-item {
    width: 20%;
    margin-bottom: 5px;
  }
}

.category {
  position: relative;
}

.category span {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.category .premium {
  background-image: url("icons/royal-crown.png");
  width: 30px;
  height: 30px;
}

.category span[class*="icon"],
.category span[class^="icon"] {
  width: 64px;
  height: 64px;
}

.category .icon1 {
  background-image: url("../img/icons-svg/webinar.svg");
}

.category .icon2 {
  background-image: url("../img/icons-svg/template.svg");
}

.category .icon3 {
  background-image: url("../img/icons-svg/video.svg");
}

.category .icon4 {
  background-image: url("../img/icons-svg/success-story.svg");
}

.category .icon5 {
  background-image: url("icons/conference.png");
}

.category .icon6 {
  background-image: url("../img/icons-svg/insight.svg");
}

.category .icon7 {
  background-image: url("../img/icons-svg/ebook.svg");
}

.category .icon8 {
  background-image: url("../img/icons-svg/infographic.svg");
}

.category .icon31 {
  background-image: url("../img/icons-svg/quiz.svg");
}

.category .icon32 {
  background-image: url("../img/icons-svg/guide.svg");
}

.category .icon38 {
  background-image: url("../img/icons-svg/tools.svg");
}

.category .icon39 {
  background-image: url("../img/icons-svg/destination.svg");
}

.category .icon54, .category .icon52 {
  background-image: url("../img/icons-svg/earth.svg");
}

.figure-horizontal {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  display: table;
}

.figure-horizontal:first-child {
  margin-top: 15px;
}

.figure-horizontal .image {
  width: 120px;
  display: table-cell;
  vertical-align: middle;
}

.figure-horizontal .text {
  display: table-cell;
  vertical-align: middle;
}

.figure-horizontal p,
.figure-horizontal h4,
.figure-horizontal .figure-title-text,
.figure-horizontal .circle-why-bedsonline .video-title .video-title-text,
.circle-why-bedsonline .video-title .figure-horizontal .video-title-text {
  margin: 0;
}

@media (max-width: 600px) {
  .figure-horizontal {
    text-align: center;
  }
  .figure-horizontal .image {
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  .figure-horizontal .text {
    width: 100%;
    float: left;
  }
}

.field-name-similar-resources .views-row,
.field-name-similar-articles .views-row {
  width: 100%;
  display: inline-block;
  padding: 0 0 15px;
  position: relative;
}

.field-name-similar-resources .views-row img,
.field-name-similar-articles .views-row img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.field-name-similar-resources .views-row .views-field-title a,
.field-name-similar-articles .views-row .views-field-title a {
  margin-top: 5px;
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #333333;
}

.field-name-similar-resources .block-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  border-bottom: 5px solid #E26329;
  line-height: 32px;
  margin-bottom: 5px;
  width: 100%;
  display: inline-block;
  margin-top: 0;
}

.field-name-similar-resources .block-title span {
  color: #F3F3F3;
  background: #E26329;
  display: inline-block;
  padding: 2px 10px;
}

.field-name-similar-resources .block-title small {
  font-size: 16px;
  line-height: 22px;
}

.hide-similar .field-name-similar-resources {
  display: none;
}

.field-name-field-premium {
  display: none;
}

.field-name-field-aside-image-blocks,
.field-name-field-aside-image-blocks-2 {
  margin-bottom: 30px;
}

.field-name-field-aside-image-blocks img,
.field-name-field-aside-image-blocks-2 img {
  width: 100%;
}

body.freeze {
  overflow: hidden;
}

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

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

#skip a {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

#skip a:active, #skip a:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static !important;
  width: auto;
}

#site-name {
  font-size: 28px;
  line-height: 42px;
  font-size: 2.8rem;
  line-height: 4.2rem;
  font-weight: 300;
  padding: 0 0 0.5em;
  margin: 0;
}

div.view div.views-admin-links {
  width: auto;
}

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static !important;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before {
  content: "";
  display: table;
}

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

.clearleft, .clearl, .cleft {
  clear: left;
}

.clearright, .clearr, .cright {
  clear: right;
}

.clear, .clearboth, .clearall {
  clear: both;
}

.floatleft, .fleft, .floatl {
  float: left;
  margin: 0 10px 5px 0;
}

.floatright, .fright, .floatr {
  float: right;
  margin: 0 0 5px 10px;
}

#system-themes-form img {
  width: 100px;
}

.form-item .description {
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-top: 5px;
  color: #777;
}

#edit-delete {
  color: #c00;
}

div.messages {
  padding: 9px;
  margin: 1em 0;
  color: #036;
  border: 2px dashed #dedede;
  padding-left: 60px;
  position: relative;
}

div.warning {
  color: #840;
  border-color: #FACB38;
}

div.error {
  color: #CD0000;
  border-color: #CD0000;
}

div.status {
  color: #235023;
  border-color: #C4D600;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: "Lato", Arial, sans-serif;
  color: #282829;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "Lato", Arial, sans-serif;
  letter-spacing: 0.03em;
}

body.i18n-zh-cn {
  font-family: "Noto Sans TC", Helvetica, Arial, PingFangSC, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif;
}

::-moz-selection {
  background: #E26329;
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: #E26329;
  color: #FFF;
  text-shadow: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  box-sizing: border-box;
}

label {
  cursor: pointer;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
}

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

button[disabled], input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 99%;
}

td {
  vertical-align: top;
}

tr.even td,
tr.odd td {
  padding: 10px 5px;
}

tr.odd {
  background-color: white;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

.wireframe-mode #header,
.wireframe-mode #content-top,
.wireframe-mode #content-top > *,
.wireframe-mode #content-header,
.wireframe-mode #content-header > *,
.wireframe-mode #content-area,
.wireframe-mode #content-area > *,
.wireframe-mode #content-bottom,
.wireframe-mode #content-bottom > *,
.wireframe-mode #primary,
.wireframe-mode #secondary,
.wireframe-mode #sidebar-left-inner,
.wireframe-mode #sidebar-right-inner,
.wireframe-mode .block {
  padding: 2px;
  border: 1px solid #bbbbbb;
}

.wireframe-mode .node {
  border-bottom: 1px solid #bbbbbb;
  margin-bottom: 10px;
}

.wireframe-mode .block {
  margin-bottom: 3px;
}

.wireframe-mode #content-top,
.wireframe-mode #content-header,
.wireframe-mode #content-area,
.wireframe-mode #content-bottom {
  margin: 0 3px 3px;
}

.wireframe-mode #footer {
  margin-top: 3px;
  padding: 2px;
  border: 1px solid #cccccc;
}

.wireframe-mode .with-navigation #content,
.wireframe-mode .with-navigation .sidebar {
  margin-top: 50px;
}

.wireframe-mode #navigation {
  height: 50px;
}

.l-footer-columns {
  padding: 38px 0 60px;
  background-color: #3E3E3E;
  margin: 0;
  display: table;
  width: 100%;
  font-size: 14px;
  font-family: "Lato", Arial, sans-serif;
  color: #FFF;
  position: relative;
}

.l-footer-columns .block-title {
  font-size: 18px;
  font-weight: 200;
  color: #C4D600;
  margin: 0 0 20px;
  line-height: 120%;
}

.i18n-zh-cn .l-footer-columns .block-title {
  font-weight: 400;
  letter-spacing: 0;
}

.l-footer-columns p {
  font-size: 14px;
  line-height: 140%;
}

.l-footer-columns p a {
  color: #E26329;
  transition: color 0.3s ease;
}

.l-footer-columns p a:hover {
  text-decoration: none;
  color: #EA8E5A;
}

.l-footer-columns .quick-links {
  padding: 0;
  margin: 0;
}

.l-footer-columns .quick-links:before {
  content: "";
  display: table;
}

.l-footer-columns .quick-links:after {
  content: "";
  display: table;
  clear: both;
}

.l-footer-columns .quick-links li {
  float: left;
  width: 50%;
  padding-right: 20px;
  margin-bottom: 8px;
  box-sizing: border-box;
  white-space: nowrap;
  list-style-type: none;
}

.l-footer-columns .quick-links li:nth-child(2n) {
  padding-right: 0;
  padding-left: 20px;
}

.l-footer-columns .quick-links li:nth-child(2n + 1) {
  clear: left;
}

.l-footer-columns .quick-links a {
  color: #FFF;
  transition: color 0.3s ease;
  white-space: initial;
}

.l-footer-columns .quick-links a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.l-footer-columns .social-media a {
  display: inline-block;
  margin-right: 10px;
}

.l-footer-columns .social-media a:hover {
  text-decoration: none;
}

.l-footer-columns .social-media a:hover::before {
  background-color: #EA8E5A;
}

.l-footer-columns .social-media a:last-of-type {
  margin-right: 0;
}

.l-footer-columns .social-media a::before {
  display: inline-block;
  background-color: #E26329;
  color: #FFF;
  border-radius: 28px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.l-footer-columns .social-media a.icon-facebook::before {
  content: '\e811';
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-footer-columns .social-media a.icon-twitter::before {
  content: '\e80e';
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-footer-columns .social-media a.icon-google-plus::before {
  content: '\e80c';
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-footer-columns .social-media a.icon-facebook::before, .l-footer-columns .social-media a.icon-twitter::before, .l-footer-columns .social-media a.icon-google-plus::before {
  height: 36px;
  width: 36px;
  line-height: 36px;
}

.l-footer-columns .social-media a span {
  display: none;
}

.l-footer-columns .footer-contact-link {
  height: 48px;
  width: auto;
  margin-top: 0;
}

.l-footer-columns .footer-contact-link a {
  width: 100% !important;
  font-size: 14px !important;
  min-width: 0 !important;
}

.l-footer-columns .footer-phone-block {
  margin: 20px 0;
  font-weight: bold;
  font-style: italic;
}

.l-footer-columns .footer-phone-block::before {
  content: "\e80f";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.l-footer-columns-inner {
  display: table;
  width: 100%;
  padding: 0 16px;
}

.l-footer-columns-inner > div {
  width: 100%;
}

.l-footer-columns-inner > div:not(:last-child) {
  margin-bottom: 32px;
}

.l-footer-columns-inner .footer-first {
  padding-right: 16px;
}

.l-footer-columns-inner .footer-second {
  padding-right: 16px;
}

.l-footer-columns-inner .footer-second .quick-links li {
  width: 100%;
}

.l-footer-columns-inner .footer-second .quick-links li:nth-child(2n) {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .l-footer-columns-inner {
    display: flex;
    justify-content: space-between;
  }
  .l-footer-columns-inner > div:not(:last-child) {
    margin-bottom: 0;
  }
  .l-footer-columns-inner .footer-first {
    width: 30%;
  }
  .l-footer-columns-inner .footer-second {
    width: 50%;
  }
  .l-footer-columns-inner .footer-second .quick-links li {
    width: 50%;
  }
  .l-footer-columns-inner .footer-second .quick-links lili:nth-child(2n) {
    padding-left: 20px;
  }
  .l-footer-columns-inner .footer-third {
    width: 20%;
  }
}

.l-footer {
  padding: 40px 0 20px;
  text-align: center;
  background-color: #181818;
  overflow: visible;
  font-size: 14px;
  font-family: "Lato", Arial, sans-serif;
  color: #FFF;
  position: relative;
}

.l-footer::before {
  content: '';
  display: block;
  width: 256px;
  height: 45px;
  background: url(../images/logo-white.svg) no-repeat 0 0;
  background-size: contain;
  position: absolute;
  left: 50%;
  margin-left: -128px;
  top: -22px;
}

.l-footer p {
  font-size: 14px;
}

.l-footer a {
  color: #E26329;
  transition: color 0.3s ease;
}

.l-footer a:hover {
  text-decoration: none;
  color: #EA8E5A;
}

.l-footer-inner, .l-footer-columns-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-footer-inner .block-menu-block ul, .l-footer-columns-inner .block-menu-block ul {
  list-style: none;
  padding: 0;
}

.l-footer-inner .footer-menu, .l-footer-columns-inner .footer-menu {
  list-style: none;
  padding: 0;
}

.l-footer-inner .footer-menu li.footer-menu-link, .l-footer-columns-inner .footer-menu li.footer-menu-link {
  margin-top: 1em;
  font-size: 14px;
  line-height: 140%;
}

.l-footer-inner .footer-menu li.footer-menu-link a, .l-footer-columns-inner .footer-menu li.footer-menu-link a {
  color: #ffffff;
  transition: color 0.3s ease;
  padding: 0 !important;
}

.l-footer-inner .footer-menu li.footer-menu-link a:hover, .l-footer-columns-inner .footer-menu li.footer-menu-link a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.l-footer-inner .field-name-field-para-cta a, .l-footer-columns-inner .field-name-field-para-cta a {
  font-size: 14px;
}

.copyright {
  display: none;
}

.l-footer-logos > p {
  margin-bottom: 0;
  padding: 19px 16px 16px;
  text-align: center;
  background: #dedede;
}

.l-footer-logos a {
  display: inline-block;
}

.l-footer-logos img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
}

.l-header {
  width: 100%;
  height: 95px;
  z-index: 998;
  top: 0;
}

@media (min-width: 960px) {
  .l-header {
    height: 115px;
  }
}

.l-header:not(.only-logo-header) {
  background-color: white;
  border-bottom: 1px solid #D8D8D8;
  transition: background-color 400ms;
  padding-top: 36px;
  position: fixed;
}

.l-header.only-logo-header {
  position: absolute;
}

.l-header.only-logo-header + main {
  padding-top: 0 !important;
}

.l-header.only-logo-header .row > img,
.l-header.only-logo-header .logo {
  top: 12px;
}

@media (min-width: 960px) {
  .l-header.only-logo-header .row > img,
  .l-header.only-logo-header .logo {
    top: 44px;
    left: 20px;
  }
}

@media (min-width: 1170px) {
  .l-header.only-logo-header .row > img,
  .l-header.only-logo-header .logo {
    left: 15px;
  }
}

@media (min-width: 1200px) {
  .l-header.only-logo-header .row > img,
  .l-header.only-logo-header .logo {
    left: 4px;
  }
}

.l-header .row > img,
.l-header .logo {
  width: auto;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 11px;
}

@media (min-width: 960px) {
  .l-header .row > img,
  .l-header .logo {
    height: 45px;
    top: 16px;
    left: 0;
  }
}

@media (min-width: 1060px) {
  .l-header .row > img,
  .l-header .logo {
    height: 60px;
    top: 9px;
  }
}

.l-header .row > img + .caption,
.l-header .logo + .caption {
  display: none;
}

.l-header .row {
  max-width: 1168px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.l-header .row.l-header-region {
  width: auto;
  position: absolute;
}

.l-header .row.l-header-region .columns {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.l-header .header-phone {
  color: #181818;
  font-size: 14px;
  font-style: italic;
  transition: color 400ms, background-color 400ms;
  margin: 0;
}

.l-header .header-phone::before {
  content: "\e80f";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.l-header .btn-covid {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 18px;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.02767143px;
  text-transform: uppercase;
  background-color: #E26329;
  transition: all 0.15s ease;
}

@media (min-width: 40em) {
  .l-header .btn-covid {
    display: flex;
  }
}

@media (min-width: 960px) {
  .l-header .btn-covid {
    margin-right: 20px;
  }
}

.l-header .btn-covid:hover {
  color: #FFF;
  text-decoration: none;
  background: #EA8E5A;
}

@media (max-width: 39.9375em) {
  .l-header {
    height: 131px;
  }
  .l-header .row > img,
  .l-header .logo {
    top: 50px;
  }
  .l-header > .btn-covid {
    display: flex;
    height: auto;
    padding: 10px 8px;
    border: 1px solid #B74504;
  }
  .l-header .l-header-region .pull-menu {
    top: 90px;
  }
  .l-header .pull-active .menu-container {
    top: 130px;
    height: calc(100vh - 124px);
  }
  .l-header .block-system-main-menu > ul.menu {
    padding: 18px 25px 0;
  }
  .l-header .block-block-18 {
    padding-bottom: 0px;
  }
}

@media (min-width: 40em) {
  .l-header > .btn-covid {
    display: none;
  }
}

#main-menu {
  display: none;
}

.l-header-region {
  height: 36px;
  background-color: #dedede;
  transition: background-color 400ms;
  top: 0;
  left: 0;
  right: 0;
}

.l-header-region > .row > .columns {
  display: flex;
}

.l-header-region .block-block-2 {
  display: none;
}

.l-header-region .block-block-18-copy {
  display: none;
  position: absolute;
  top: 44px;
  right: 70px;
}

@media (min-width: 768px) {
  .l-header-region .block-block-18-copy {
    display: block;
  }
}

@media (min-width: 881px) {
  .l-header-region .block-block-18-copy {
    right: 20px;
  }
}

@media (min-width: 960px) {
  .l-header-region .block-block-18-copy {
    display: none;
  }
}

.l-header-region .block-block-18-copy p {
  margin: 0;
}

.l-header-region .block-block-18-copy a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #E26329;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #E26329;
  transition: background-color 400ms;
  padding: 7px 13px 6px;
}

.l-header-region .block-block-18-copy a:hover {
  color: #ffffff;
  background-color: #E26329;
  border: 1px solid transparent;
}

.l-header-region .pull-menu {
  top: 55px;
}

.l-header-region .block-lang-dropdown-language {
  max-width: 125px;
  width: 29.33333%;
  background-color: transparent;
  border: 0;
}

.l-header-region .block-lang-dropdown-language .form-item-lang-dropdown-select {
  margin-top: 0;
  margin-bottom: 0;
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language {
  position: relative;
}

@media (min-width: 1210px) {
  .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language {
    left: -8px;
  }
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language:after {
  content: '';
  display: inline-block;
  height: 8px;
  width: 8px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #E26329;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease;
  margin-top: -4px;
  position: absolute;
  right: 10px;
  top: 50%;
}

@media (min-width: 768px) {
  .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language:after {
    content: none;
  }
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language.active:after {
  top: -27px;
  transform: rotate(225deg);
}

@media (min-width: 960px) {
  .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language.active:after {
    content: none;
  }
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language {
  height: 36px;
  color: #E26329;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.0323px;
  text-transform: uppercase;
  background: none transparent;
  border: 0;
  transition: background-color 0.3s ease;
  outline: 0;
  padding: 0 20px 0 8px;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language optgroup, .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language option {
  font-size: inherit;
  color: #000000;
  letter-spacing: inherit;
}

@media screen and (max-width: 768px) {
  .l-header-region .block-lang-dropdown-language #lang_dropdown_select_language_chosen {
    display: none;
  }
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single {
  height: 35px;
  padding: 0 8px;
  line-height: 35px;
  border: 0;
  background: none transparent;
  color: #E26329;
  transition: color 400ms, background-color 0.3s ease;
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single div {
  display: none;
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single span {
  text-transform: uppercase;
  margin-right: 0;
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single span:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url("../images/icons-svg/arrow-orange-down.svg") no-repeat center;
  background-size: 14px;
  position: relative;
  left: 12px;
  top: -1px;
  transition: all 0.3s ease, background 400ms;
}

.l-header-region .block-lang-dropdown-language .chosen-container-single.chosen-container-active .chosen-single span:after {
  top: 1px;
  transform: rotate(180deg);
}

.l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-drop {
  min-width: 220px;
}

.l-header-region .block-lang-dropdown-language .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -17px 8px;
}

.l-header-region .login-button {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 960px) {
  .l-header-region .login-button {
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
  }
}

.l-header-region .login-button a {
  transition: background-color 0.3s ease;
}

.l-header-region .login-button a:hover {
  text-decoration: none;
}

.l-header-region .login-button .btn-login {
  max-width: 118px;
  width: 42%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.02767143px;
  background-color: #E26329;
  padding: 0 43px 0 8px;
  position: relative;
}

@media (min-width: 960px) {
  .l-header-region .login-button .btn-login {
    max-width: 182px;
    order: 3;
  }
}

.l-header-region .login-button .btn-login::after {
  content: '';
  display: block;
  height: 100%;
  width: 35px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.l-header-region .login-button .btn-login::before {
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  right: 14px;
  z-index: 5;
}

.l-header-region .login-button .btn-login:hover {
  background-color: #EA8E5A;
}

@media (min-width: 960px) {
  .l-header-region .login-button .btn-login span.only-mobile {
    display: none;
  }
}

.l-header-region .login-button .btn-login span.only-desktop {
  display: none;
}

@media (min-width: 960px) {
  .l-header-region .login-button .btn-login span.only-desktop {
    display: block;
  }
}

.l-header-region .login-button .request-password {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282829;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.0351px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.05);
  transition: background-color 400ms, color 400ms;
  padding: 0 15px;
}

@media (min-width: 960px) {
  .l-header-region .login-button .request-password {
    order: 2;
  }
}

.l-header-region .login-button .request-password:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.l-header-region .login-button .request-password span {
  transition: color 400ms;
  vertical-align: middle;
}

@media (min-width: 960px) {
  .l-header-region .login-button .block-contact-top {
    display: flex;
    align-items: center;
    order: 1;
    margin-right: 5px;
  }
}

.l-header-region .menu-container {
  float: none;
  position: absolute;
  top: 95px;
  right: 0;
}

@media (min-width: 881px) {
  .l-header-region .menu-container {
    display: flex;
    align-items: center;
    top: 25px;
    right: 250px;
  }
}

@media (min-width: 960px) {
  .l-header-region .menu-container {
    top: 2.9em;
    right: 0;
  }
}

.l-header-region .menu-container .block-menu {
  max-width: 75%;
  position: relative;
  display: inline-block;
  margin-right: 30px;
}

.l-header-region .menu-container .block-block-18 {
  position: relative;
  display: inline-block;
  top: 0;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .l-header-region .menu-container .block-block-18 {
    top: -2em;
  }
}

@media (min-width: 768px) {
  .l-header-region .menu-container .block-block-18 {
    display: none;
  }
}

@media (min-width: 960px) {
  .l-header-region .menu-container .block-block-18 {
    display: inline-block;
    top: -1px;
  }
}

.l-header-region .menu-container .block-block-18 p {
  margin: 0;
}

.l-header-region .menu-container .block-block-18 a {
  width: 100%;
  height: 100%;
  color: #E26329;
  background: #ffffff;
  text-decoration: none;
  border: 1px solid #E26329;
  padding: 8px 13px;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 400ms;
}

@media (min-width: 881px) {
  .l-header-region .menu-container .block-block-18 a {
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .l-header-region .menu-container .block-block-18 a {
    letter-spacing: 0.0301px;
    text-transform: uppercase;
    padding: 7px 13px 6px;
  }
}

.l-header-region .menu-container .block-block-18 a:hover {
  color: #ffffff;
  background-color: #E26329;
  border: 1px solid transparent;
}

@media screen and (max-width: 542px) {
  .l-header .l-header-region .columns,
  .l-header .l-header-region .block-block-4 {
    position: relative;
  }
}

.not-logged-in.node-type-paragraph-page {
  padding-top: 115px;
}

@media screen and (max-width: 542px) {
  .not-logged-in.node-type-paragraph-page {
    padding-top: 150px;
  }
}

.logged-in .only-logo-header {
  pointer-events: none;
}

.logged-in .only-logo-header a {
  pointer-events: all;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .sidebar,
  #navigation,
  #header-region,
  #search-theme-form,
  #footer,
  .breadcrumb,
  .tabs,
  .feed-icon,
  .links {
    display: none;
  }
  #page {
    width: 100%;
  }
  #content,
  #content #content-inner,
  .content,
  .title {
    margin: 20px 0;
    width: auto;
  }
  a:hover, a:active, a:link, a:visited {
    color: black;
  }
  #content a:link:after, #content a:visited:after {
    content: " (" attr(href) ") ";
    font-size: 11px;
    line-height: 16.5px;
    font-size: 1.1rem;
    line-height: 1.65rem;
    font-weight: normal;
  }
}

.section-product .node {
  padding: 50px 0;
}

.section-product .country-name {
  width: 100%;
  float: left;
  border-bottom: 1px solid #E26329;
  padding-bottom: 5px;
}

.section-product .country-name a {
  color: #fff;
  background-color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #E26329;
  font-weight: 900;
  text-transform: uppercase;
  float: right;
  font-size: 14px;
  padding: 10px 15px;
}

.section-product .country-name a:hover {
  background-color: #fff;
}

.section-product .country-name a:hover {
  color: #E26329;
}

@media (max-width: 600px) {
  .section-product .country-name a {
    text-indent: -999px;
    width: 30px;
    padding-left: 15px;
    padding-right: 25px;
    overflow: hidden;
  }
  .section-product .country-name a:before {
    text-indent: 999px;
    content: "\e800";
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
  }
}

.section-product .field-name-field-country {
  line-height: 27px;
  font-size: 25px;
  color: #E26329;
  text-transform: uppercase;
  float: left;
  margin-top: 10px;
}

.field-name-field-product-collection {
  width: 100%;
  float: left;
}

.field-name-field-product-collection > .field-items {
  margin: 0 -7.5px;
}

.field-name-field-product-collection > .field-items > .field-item {
  width: 33.33334%;
  padding: 0 7.55px;
  float: left;
}

@media (max-width: 767px) {
  .field-name-field-product-collection > .field-items > .field-item {
    width: 50%;
  }
}

@media (max-width: 620px) {
  .field-name-field-product-collection > .field-items > .field-item {
    width: 100%;
  }
}

.block-product {
  margin: 15px 0;
}

.block-product .image {
  position: relative;
  width: 100%;
  float: left;
}

.block-product .image img {
  width: 100%;
}

.block-product .product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.block-product .product-content .col-right {
  text-align: right;
}

.block-product .product-footer {
  width: 100%;
  float: left;
  background: #FF8E44;
  color: #fff;
  font-weight: 600;
  padding: 15px 0;
}

.block-product .product-footer .col-right {
  text-align: right;
}

.block-product .field-name-field-type-of-product {
  color: #48B5E5;
}

.block-product .field-name-field-sub-title-product {
  font-size: 10px;
  color: #999999;
}

.block-product .btn-book {
  color: #004D62;
  background-color: #FACB38;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #fff;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 5px;
  font-size: 12px;
  min-width: 100px;
  float: right;
  text-align: center;
}

.block-product .btn-book:hover {
  background-color: #f1f1f1;
}

.block-product.Activity .product-footer {
  background-color: #3BCFED;
}

@media (max-width: 768px) {
  .block-product .product-footer .col-left, .block-product .product-footer .col-right {
    text-align: center;
    width: 100%;
  }
  .block-product .product-footer .col-left .btn-book, .block-product .product-footer .col-right .btn-book {
    float: none;
  }
  .block-product .product-footer .col-left {
    margin-bottom: 10px;
  }
}

.pre-footer {
  background-color: #00A5D3;
}

.region-pre-footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.875rem 0;
}

@media (min-width: 768px) {
  .region-pre-footer {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.region-pre-footer .block-subscribe {
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .region-pre-footer .block-subscribe {
    margin-bottom: 0;
  }
}

.region-pre-footer .block-subscribe .ico-subscribe {
  background-color: transparent;
  border-radius: 0;
  color: transparent;
  display: block;
  font-size: 0;
  height: 3.75rem;
  line-height: 0;
  position: relative;
  width: 3.75rem;
  height: 1.875rem;
  margin-right: 1.25rem;
}

.region-pre-footer .block-subscribe .ico-subscribe:before {
  color: #FFF;
  content: "";
  font-family: "icomoon";
  font-size: 3.75rem;
  font-weight: normal;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .2s;
}

.region-pre-footer .block-subscribe .subscribe {
  align-items: center;
  display: flex;
}

.region-pre-footer .block-subscribe .wrapper-text p {
  color: #FFF;
  letter-spacing: 0;
  margin: 0;
}

.region-pre-footer .block-subscribe .wrapper-text p:nth-child(1) {
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  line-height: 2.1875rem;
}

.region-pre-footer .block-subscribe .wrapper-text p:nth-child(2) {
  font-size: 0.9375rem;
  max-width: 16.9375rem;
  line-height: 1rem;
}

@media (min-width: 768px) {
  .region-pre-footer .block-subscribe .wrapper-text p:nth-child(2) {
    max-width: 11.75rem;
  }
}

@media (min-width: 1024px) {
  .region-pre-footer .block-subscribe .wrapper-text p:nth-child(2) {
    max-width: 16.9375rem;
  }
}

.region-pre-footer .block-social {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .region-pre-footer .block-social {
    align-items: flex-start;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .region-pre-footer .block-social {
    margin: 0;
  }
}

@media (min-width: 960px) {
  .region-pre-footer .block-social {
    align-items: center;
    flex-direction: row;
  }
}

.region-pre-footer .block-social .block-title {
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: -.4px;
  margin: 0;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .region-pre-footer .block-social .block-title {
    margin-right: 1.4375rem;
  }
}

@media (min-width: 960px) {
  .region-pre-footer .block-social .block-title {
    margin-bottom: 0;
  }
}

.region-pre-footer .block-social .social {
  display: flex;
  list-style: none;
  padding: 0;
}

.region-pre-footer .block-social .social a {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: block;
  overflow: hidden;
  text-align: center;
  transition: .2s;
}

.region-pre-footer .block-social .social a:not(:last-child) {
  margin-right: 0.625rem;
}

.region-pre-footer .block-social .social a.facebook {
  background-color: #000;
  border-radius: 50%;
  color: transparent;
  display: block;
  font-size: 0;
  height: 3.125rem;
  line-height: 0;
  position: relative;
  width: 3.125rem;
}

.region-pre-footer .block-social .social a.facebook:before {
  color: #FFF;
  content: "";
  font-family: "icomoon";
  font-size: 1rem;
  font-weight: normal;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .2s;
}

.region-pre-footer .block-social .social a.twitter {
  background-color: #000;
  border-radius: 50%;
  color: transparent;
  display: block;
  font-size: 0;
  height: 3.125rem;
  line-height: 0;
  position: relative;
  width: 3.125rem;
}

.region-pre-footer .block-social .social a.twitter:before {
  color: #FFF;
  content: "";
  font-family: "icomoon";
  font-size: 1rem;
  font-weight: normal;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .2s;
}

.region-pre-footer .block-social .social a.linkedin {
  background-color: #000;
  border-radius: 50%;
  color: transparent;
  display: block;
  font-size: 0;
  height: 3.125rem;
  line-height: 0;
  position: relative;
  width: 3.125rem;
}

.region-pre-footer .block-social .social a.linkedin:before {
  color: #FFF;
  content: "";
  font-family: "icomoon";
  font-size: 1rem;
  font-weight: normal;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .2s;
}

.region-pre-footer .block-social .social a:hover {
  background-color: #000;
}

.lang-fr-fr .l-header-region .block-block-18 a,
.lang-gr .l-header-region .block-block-18 a {
  font-size: 11px;
}

/*
/* Block: Resources related content
/* ------------------------------------ */
.field-name-travel-advisor-related-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.block-resources-related-content {
  background-color: #FFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.21);
}

.block-resources-related-content .view-content > .views-row {
  align-items: center;
  border-bottom: 1px solid #F3F5F5;
  clear: both;
  display: flex;
  overflow: hidden;
  padding: 0.3125rem;
}

.block-resources-related-content .view-content > .views-row:first-child {
  border-top: 1px solid #F3F5F5;
}

.block-resources-related-content .block-title {
  color: #181818;
  font-family: "Roboto", sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.25rem 0;
  text-align: center;
  text-transform: uppercase;
}

.block-resources-related-content .views-field-field-image {
  margin-right: 0.625rem;
  max-width: 4.5rem;
  width: 100%;
}

.block-resources-related-content .item-title a {
  color: #181818;
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}

.block-resources-related-content .item-date {
  color: #00A5D3;
  float: left;
  font-size: 0.625rem;
  font-weight: bold;
  margin-right: 0.3125rem;
}

.block-resources-related-content .item-author {
  color: #F3F5F5;
  font-size: 0.625rem;
  font-style: italic;
}

.block-resources-travelroom-related-content {
  background: none;
  box-shadow: none;
}

.block-resources-travelroom-related-content .view-content > .views-row {
  background-color: #FFF;
  border-bottom: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.21);
  padding: 0;
  margin-bottom: 0.9375rem;
}

.block-resources-travelroom-related-content .view-content > .views-row:first-child {
  border-top: none;
}

.block-resources-travelroom-related-content .block-title {
  color: #004D62;
  text-align: left;
}

.block-resources-travelroom-related-content .views-field-field-image {
  margin-right: 0.625rem;
  max-width: 4.875rem;
  width: 100%;
}

.field-name-field-video-url iframe {
  width: 100%;
  margin: 1.6em auto;
}

::-ms-reveal {
  display: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

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

#compute_select {
  display: none;
  width: auto !important;
}

form {
  margin: 0;
}

label {
  font-weight: 300;
  cursor: pointer;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
}

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

button[disabled], input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input,
textarea,
select {
  padding: 4px 8px;
  width: 100%;
  max-width: 100%;
}

input:focus.required,
textarea:focus.required,
select:focus.required {
  background-image: none;
}

#lang-dropdown-select-language {
  color: #4a4a4a;
  background: #fff;
  padding: 12px 8px;
  height: auto;
  border-color: #ccc;
  border-radius: 0;
  line-height: normal;
  box-shadow: none;
}

.chosen-container-single .chosen-single {
  color: #4a4a4a;
  background: #fff;
  padding: 12px 8px;
  height: auto;
  border-color: #ccc;
  border-radius: 0;
  line-height: normal;
  box-shadow: none;
}

.chosen-container-single .chosen-single div b {
  background-position: 0 11px;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -17px 12px;
}

.chosen-container-single .chosen-search input[type=text] {
  padding-top: 8px;
  padding-bottom: 8px;
}

.chosen-container {
  width: 100% !important;
}

/*    check box     */
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: 22px 0 0 12px;
  padding: 0;
  border: 0;
}

input[type=checkbox] + label,
input[type=checkbox] ~ label {
  padding-left: 35px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
}

input[type=checkbox] + label:before,
input[type=checkbox] ~ label:before {
  background-repeat: no-repeat;
  background-position: 0 0px;
}

input[type=checkbox]:checked + label:after,
input[type=checkbox]:checked ~ label:after {
  visibility: visible;
  opacity: 1;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 5px;
}

.form-type-checkbox label {
  font-size: 13px;
  position: relative;
  line-height: 18px;
}

.form-type-checkbox label:before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
  border: 1px solid #dedede;
  background-color: #fff;
}

.form-type-checkbox label:after {
  content: "";
  width: 1px;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 11px;
  top: 14px;
  background-color: #E26329;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

input[type=radio] + label.option {
  padding-left: 35px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
}

input[type=radio]:checked + label.option:after {
  visibility: visible;
  opacity: 1;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 50%;
  margin-top: -9px;
  background-size: 18px;
}

.form-type-radio label {
  font-size: 13px;
  position: relative;
  line-height: 18px;
  padding-left: 35px;
}

.form-type-radio label:before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  border: 1px solid #ccc;
  border-radius: 100%;
}

.form-type-radio label:after {
  content: "";
  width: 1px;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 11px;
  top: 50%;
  background: #E26329;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

.btn-default {
  color: #fff;
  background-color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-default:hover {
  background-color: #E26329;
}

.btn-default-border {
  color: #E26329;
  background-color: #B74504;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-default-border:hover {
  background-color: #f1f1f1;
}

.btn-border-white {
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-border-white:hover {
  background-color: #fff;
}

.btn-border-white:hover {
  color: #E26329;
}

.cke_show_borders .btn-border-white {
  border-color: #ccc !important;
  color: #ccc !important;
}

.btn-border-orange {
  color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #E26329;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-border-orange:hover {
  background-color: #E26329;
}

.btn-border-orange:hover {
  color: #fff;
}

.btn-default-border-grey {
  color: #E26329;
  background-color: #dedede;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #ccc;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-default-border-grey:hover {
  background-color: #000;
}

.btn-orange {
  color: #fff;
  background-color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #E26329;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-orange:hover {
  background-color: #fff;
}

.btn-orange:hover {
  color: #E26329;
}

.btn-orange:hover i {
  background-color: #E26329;
  color: #fff;
}

.btn-blue {
  color: #fff;
  background-color: #00A5D3;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #00A5D3;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-blue:hover {
  background-color: #fff;
}

.btn-blue:hover {
  color: #00A5D3;
}

.btn-blue:hover i {
  background-color: #00A5D3;
  color: #fff;
}

.btn-green {
  color: #fff;
  background-color: #C4D600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #C4D600;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-green:hover {
  background-color: #fff;
}

.btn-green:hover {
  color: #C4D600;
}

.btn-green:hover i {
  background-color: #C4D600;
  color: #fff;
}

.parent-sidebar {
  width: 100%;
  float: left;
  height: 500px;
}

#sliding-popup {
  height: auto;
  max-width: 550px;
  width: 100%;
  left: 0;
  background-color: #333;
  opacity: .8;
  position: fixed;
  bottom: 0;
  left: 0;
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

#sliding-popup.removed {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 550px) {
  #sliding-popup {
    width: 100%;
  }
}

#sliding-popup .popup-content {
  padding: 15px 0;
  display: inline-block;
  width: 100%;
}

#sliding-popup .popup-content #popup-text h2,
#sliding-popup .popup-content #popup-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

#sliding-popup .popup-content #popup-buttons {
  max-width: 35%;
}

@media (max-width: 550px) {
  #sliding-popup .popup-content #popup-buttons {
    width: 100%;
    float: left;
    max-width: none;
    text-align: center;
  }
}

#sliding-popup .popup-content #popup-buttons button {
  background: #fff;
  border-radius: 1px;
  text-shadow: none;
  color: #333;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  border: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

#sliding-popup .popup-content #popup-buttons button.find-more-button {
  background-color: #E26329;
  color: #fff;
  margin: 0;
}

.view-all {
  color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #E26329;
  font-weight: 900;
  text-transform: uppercase;
}

.view-all:hover {
  background-color: #E26329;
}

.i18n-zh-cn .view-all {
  font-weight: 300;
}

.view-all:hover {
  color: #fff;
}

.btn-addon {
  padding-left: 80px;
  overflow: hidden;
  position: relative;
}

.btn-addon.btn-addon-right {
  padding-left: 25px;
  padding-right: 80px;
}

.btn-addon.btn-addon-right i {
  left: inherit;
  right: 0;
  border-left: 1px solid #82542f;
  border-right: none;
}

.btn-addon i {
  line-height: 2.8em;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 60px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid #82542f;
}

.btn-big {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}

.btn-big:hover {
  text-decoration: none;
}

.btn-form-mobile {
  position: fixed;
  width: 300px;
  right: 50%;
  margin-right: -150px;
  z-index: 99;
  bottom: -100px;
  text-align: center;
  transition: bottom .3s ease-in-out;
}

@media (max-width: 767px) {
  .btn-form-mobile.active {
    bottom: 15px;
  }
}

.btn-form-mobile:hover {
  text-decoration: none;
}

.btn-form-mobile i:before {
  border-top: 2px solid white;
  border-right: 2px solid white;
  font-size: 0;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  position: absolute;
  top: 22px;
  left: 25px;
}

a.download {
  color: #fff;
  background-color: #E26329;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid #E26329;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 25px auto 50px;
  padding: 15px 30px 15px 100px !important;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

a.download:hover {
  background-color: #fff;
}

a.download.download-m {
  padding: 25px;
}

a.download:hover {
  color: #E26329;
}

a.download:hover i {
  background: #E26329;
  color: #fff;
}

a.download i {
  line-height: 2.8em;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 70px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid #82542f;
}

.item-list .pager {
  margin: 25px 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.item-list .pager li {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.item-list .pager li.pager-current {
  border: 1px solid #E26329;
  color: #E26329;
}

.item-list .pager li.pager-current a {
  color: #fff;
  background: #ccc;
}

.item-list .pager li.pager-current {
  padding: 8px 12px;
}

.item-list .pager li.pager-ellipsis {
  padding: 8px 12px;
  background-color: transparent;
}

.item-list .pager li.pager-next a, .item-list .pager li.pager-previous a, .item-list .pager li.pager-last a, .item-list .pager li.pager-first a {
  color: #4a4a4a;
}

.item-list .pager li.pager-next a:hover, .item-list .pager li.pager-previous a:hover, .item-list .pager li.pager-last a:hover, .item-list .pager li.pager-first a:hover {
  color: #E26329;
}

.item-list .pager a {
  padding: 8px 12px;
  display: block;
  color: #4a4a4a;
  text-decoration: none;
}

.item-list .pager a:hover {
  color: #E26329;
}

.block-webform {
  /*Añado un hover al botón con el azul oscuro de fondo*/
}

.block-webform .webform-component {
  width: 33%;
  padding: 10px;
  display: inline-block;
  vertical-align: top !important;
  margin: 0;
}

.block-webform .webform-component-textarea {
  width: 100%;
}

.block-webform label {
  padding-bottom: 5px;
}

.block-webform .form-actions {
  padding: 10px;
  text-align: right;
}

.block-webform .form-submit {
  color: #fff;
  background-color: #E26329;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #fff;
  margin-top: 3.2%;
  margin-left: 12%;
  width: 164px;
  margin-bottom: 2%;
  line-height: 24px;
  font-size: 20px;
  float: right;
  margin-right: 2%;
}

.block-webform .form-submit:hover {
  background: #EA8E5A;
}

.webform-component--country-select {
  display: none !important;
}

.next-bottom {
  width: 100%;
  float: left;
  text-align: center;
  margin: 50px 0;
}

#next {
  width: 50px;
  height: 50px;
  background: url("icons/next-bottom.png") scroll no-repeat center center;
  display: inline-block;
  cursor: pointer;
}

/* Carga Ajaxs */
.ajax-progress {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 502;
  transition: all 0.5s ease-in-out;
}

.ajax-progress:after {
  content: "";
  position: absolute;
  left: 50%;
  height: 75px;
  width: 75px;
  top: 50%;
  display: inline-block;
  margin-top: -15px;
  margin-left: -15px;
  background: url("../img/icons-svg/preloader.svg") scroll no-repeat center center;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.ajax-progress .throbber {
  display: none;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.primary-buttona,
.primary-button a,
.l-footer-columns .footer-contact-link a,
.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta a,
.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta a,
.paragraphs-item-m9-text-image-cta .field-name-field-para-cta a,
.m9-v2-base .field-name-field-para-cta a,
.paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta a,
.paragraphs-item-m11-slider-2 .field-name-field-link-button a,
.paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content a,
.paragraphs-item-m16-resources .more-link a,
.paragraphs-item-m16-latest .more-link a,
.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 306px;
  margin: 26px auto 0;
  padding: 14px 20px 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
}

.primary-buttona:hover,
.primary-button a:hover,
.l-footer-columns .footer-contact-link a:hover,
.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta a:hover,
.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta a:hover,
.paragraphs-item-m9-text-image-cta .field-name-field-para-cta a:hover,
.m9-v2-base .field-name-field-para-cta a:hover,
.paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta a:hover,
.paragraphs-item-m11-slider-2 .field-name-field-link-button a:hover,
.paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content a:hover,
.paragraphs-item-m16-resources .more-link a:hover,
.paragraphs-item-m16-latest .more-link a:hover,
.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container a:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.primary-buttona:active,
.primary-button a:active,
.l-footer-columns .footer-contact-link a:active,
.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta a:active,
.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta a:active,
.paragraphs-item-m9-text-image-cta .field-name-field-para-cta a:active,
.m9-v2-base .field-name-field-para-cta a:active,
.paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta a:active,
.paragraphs-item-m11-slider-2 .field-name-field-link-button a:active,
.paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content a:active,
.paragraphs-item-m16-resources .more-link a:active,
.paragraphs-item-m16-latest .more-link a:active,
.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container a:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

.btn--primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 306px;
  margin: 26px auto 0;
  padding: 14px 20px 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
}

.btn--primary:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.btn--primary:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

.btn--outline {
  border: 1px solid #EA8E5A;
  border-radius: 0.3125rem;
  color: #7b7b7b;
  font-size: 0.875rem;
  padding: 0.3125rem 0.375rem;
  transition: all .3s ease;
}

.btn--outline:hover {
  background-color: #E26329;
  color: #FFF;
  text-decoration: none;
}

.btn--link {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  outline: none;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -webkit-appearance: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.btn--close {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  margin-right: 0.625rem;
  outline: none;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -webkit-appearance: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.button-corner-icon {
  appearance: none;
  position: relative;
  display: inline-block;
  padding: 11px 22px;
  font-size: 13px;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  transition: all 0.15s ease;
}

.button-corner-icon:hover, .button-corner-icon:active, .button-corner-icon:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

.button-corner-icon:after {
  content: '';
  position: absolute;
  top: -14px;
  right: -12px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

/*@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello.eot?76926601');
  src: url('../fonts/fontello.eot?76926601#iefix') format('embedded-opentype'),
       url('../fonts/fontello.woff2?76926601') format('woff2'),
       url('../fonts/fontello.woff?76926601') format('woff'),
       url('../fonts/fontello.ttf?76926601') format('truetype'),
       url('../fonts/fontello.svg?76926601#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
  content: '\e800';
}

.icon-calendar:before {
  content: '\e801';
}

.icon-link:before {
  content: '\e802';
}

.icon-attach:before {
  content: '\e803';
}

.icon-lock:before {
  content: '\e804';
}

.icon-lock-open:before {
  content: '\e805';
}

.icon-attention:before {
  content: '\e806';
}

.icon-location:before {
  content: '\e807';
}

.icon-youtube:before {
  content: '\e808';
}

.icon-facebook-1:before {
  content: '\e809';
}

.icon-twitter-1:before {
  content: '\e80a';
}

.icon-linkedin-1:before {
  content: '\e80b';
}

.icon-download:before {
  content: '\e80c';
}

.icon-comment:before {
  content: '\e80d';
}

.icon-check:before {
  content: '\e80e';
}

.icon-emo-thumbsup:before {
  content: '\e80f';
}

.icon-emo-unhappy:before {
  content: '\e810';
}

.icon-angle-down:before {
  content: '\f107';
}

.icon-tripadvisor:before {
  content: '\f262';
}

.icon-angle-up:before {
  content: '\f106';
}

/*  star styles */
.stars {
  display: inline-block;
  width: 100%;
  text-align: right;
}

.stars .star {
  display: inline-block;
  width: 100%;
  height: 13px;
  float: left;
  position: relative;
  background: image-url("icons/stars-right-left.png") no-repeat right 0;
}

.stars .two-star {
  background-position: right -15px;
}

.stars .three-star {
  background-position: right -31px;
}

.stars .four-star {
  background-position: right -46px;
}

.stars .four-star-sup {
  background-position: right -63px;
}

.stars .five-star {
  background-position: right -78px;
}

.stars .five-star-sup {
  background-position: right -95px;
}

/* trip styles */
.trip {
  display: inline-block;
  width: 100%;
  text-align: right;
}

.trip i {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.trip .star {
  display: inline-block;
  vertical-align: middle;
  width: 55px;
  height: 11px;
  position: relative;
  background: image-url("icons/trip-right-left.png") no-repeat right -88px;
}

.trip .one-star-sup {
  background-position: right -77px;
}

.trip .two-star {
  background-position: right -66px;
}

.trip .three-star {
  background-position: right -66px;
}

.trip .three-star-sup {
  background-position: right -55px;
}

.trip .four-star {
  background-position: right -44px;
}

.trip .four-star-sup {
  background-position: right -33px;
}

.trip .five-star {
  background-position: right -22px;
}

.trip .five-star-sup {
  background-position: right -11px;
}

.telephone {
  color: #7a7a7a;
  font-style: italic;
  font-size: 12px;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.telephone span + span {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.icon-phone {
  background: image-url("icons/phone-call.png") no-repeat center center;
  width: 24px;
  height: 32px;
  display: inline-block;
  background-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.icon-wechat {
  background: image-url("icons/icon-wechat.png") no-repeat center center;
  background-size: 28px;
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

.hb-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  display: inline-block;
  height: 2rem;
  vertical-align: middle;
  width: 1.5rem;
}

.hb-icon--close-white {
  background-image: url("../img/icons-svg/close-white.svg");
}

.share-this-marketo {
  width: 100%;
  float: left;
  margin: 25px 0;
}

.share-this-marketo div.cf_widget {
  vertical-align: middle;
}

.share-this-marketo .title-block-social {
  margin: 0 5px 0 0;
  padding: 0;
  color: #4a4a4a;
  display: inline-block;
  font-weight: 600;
}

.share-this-marketo .cf_ratingcount_left,
.share-this-marketo .cf_widget .cf_pushbutton .cf_actionElem {
  display: none;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon {
  border: 2px solid #dedede;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #000;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none;
  line-height: 46px;
  color: #fff;
  font-size: 16px;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_facebook {
  background: #3b5998;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_facebook:before {
  content: '\e811';
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_twitter {
  background: #55acee;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_twitter:before {
  content: '\e80e';
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_linkedin {
  background: #007bb6;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon.cf_linkedin:before {
  content: '\f0e1';
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon:hover {
  background: #4a4a4a;
}

.share-this-marketo .cf_widget .cf_socialicons .cf_socialicon:hover:before {
  color: #E26329;
}

@media (max-width: 600px) {
  .share-this-marketo .title-block-social {
    width: 100%;
    text-align: center;
    margin: 0 0 5px 0;
  }
  .share-this-marketo div.cf_widget {
    width: 100%;
    text-align: center;
  }
  .share-this-marketo .cf_widget .cf_ratingcount_right {
    float: none;
  }
}

.block-system-main-menu {
  max-width: 900px;
}

.block-system-main-menu > ul.menu {
  padding: 0;
  margin: 0;
  /* Submenu styles */
}

@media (min-width: 960px) {
  .block-system-main-menu > ul.menu {
    position: relative;
    top: 3px;
    margin: -6px 0 0;
  }
}

@media (min-width: 960px) {
  .block-system-main-menu > ul.menu > li > a {
    height: 54px;
    text-transform: uppercase;
  }
}

.block-system-main-menu > ul.menu li {
  margin: 0 25px;
  padding: 0;
  list-style: none;
  display: inline-block;
  position: relative;
}

.i18n-es-es .block-system-main-menu > ul.menu li.herramientas-y-consejos, .i18n-es-es .block-system-main-menu > ul.menu li.mid-1822 {
  display: none;
}

.block-system-main-menu > ul.menu li::after {
  content: '';
  display: block;
  height: 5px;
  width: 0;
  background-color: #E26329;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.block-system-main-menu > ul.menu li:hover ul.menu {
  display: block;
}

.block-system-main-menu > ul.menu li:hover::after {
  width: 100%;
}

.block-system-main-menu > ul.menu li.active-trail::after {
  width: 100%;
}

.block-system-main-menu > ul.menu li:last-child {
  margin-right: 0;
}

.block-system-main-menu > ul.menu a {
  text-decoration: none;
  color: #282829;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  display: flex;
  height: 75px;
  align-items: center;
}

@media (min-width: 960px) {
  .block-system-main-menu > ul.menu a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03405714px;
  }
}

.block-system-main-menu > ul.menu a.active {
  color: #4a4a4a;
  font-weight: 600;
}

.block-system-main-menu > ul.menu a:hover {
  color: #4a4a4a;
}

.node-type-resource .block-system-main-menu > ul.menu li.resources,
.node-type-resource .block-system-main-menu > ul.menu li.tips-and-tools,
.node-type-resource .block-system-main-menu > ul.menu li.mid-674 {
  border-bottom: 5px solid #E26329;
}

.node-type-resource .block-system-main-menu > ul.menu li.resources a,
.node-type-resource .block-system-main-menu > ul.menu li.tips-and-tools a,
.node-type-resource .block-system-main-menu > ul.menu li.mid-674 a {
  color: #4a4a4a;
  font-weight: 600;
}

.node-type-article .block-system-main-menu > ul.menu li.articles,
.node-type-article .block-system-main-menu > ul.menu li.mid-784 {
  border-bottom: 5px solid #E26329;
}

.node-type-article .block-system-main-menu > ul.menu li.articles a,
.node-type-article .block-system-main-menu > ul.menu li.mid-784 a {
  color: #4a4a4a;
  font-weight: 600;
}

.block-system-main-menu > ul.menu ul.menu {
  position: absolute;
  display: none;
  background-color: #ffffff;
  right: -50%;
  min-width: 828px;
  margin: 0;
  box-shadow: 0 -6px 10px rgba(0, 0, 0, 0.1);
}

.block-system-main-menu > ul.menu ul.menu > li {
  width: calc(45% - 31px);
  float: left;
  margin: 0 31px;
  font-size: 20px;
}

.block-system-main-menu > ul.menu ul.menu > li a {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.1;
}

.block-system-main-menu > ul.menu ul.menu > li a.icon {
  background-repeat: no-repeat;
  background-position: left;
  background-size: 42px;
  padding-left: 60px;
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-portfolio {
  background-image: url("../images/icon-portfolio.png");
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-benefits {
  background-image: url("../images/icon-benefits.png");
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-support {
  background-image: url("../images/icon-support.png");
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-booking-platform {
  background-image: url("../images/icon-booking-platform.png");
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-management {
  background-image: url("../images/icon-management.png");
}

.block-system-main-menu > ul.menu ul.menu > li a.icon-payment {
  background-image: url("../images/icon-payment.png");
}

.block-system-main-menu > ul.menu ul.menu > li:after {
  content: none;
}

.block-system-main-menu > ul.menu ul.menu > li:hover a {
  color: #868686;
}

.expand-menu {
  display: none;
  position: absolute;
  background: #E26329;
  height: 40px;
  width: 50px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  color: #333;
  top: 0;
  right: 0;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
}

.expand-menu i:before {
  transition: all 0.3s ease-in-out;
}

.expand-menu.active i:before {
  transform: rotate(180deg);
}

.tooltip {
  display: none;
  position: absolute;
  width: 150px;
  padding: 5px;
  top: 120%;
  left: 50%;
  margin-left: -75px;
  border: 1px solid #E26329;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  z-index: 99;
  background: #fff;
  text-align: center;
}

.tooltip.active {
  display: block;
}

.tooltip:before {
  content: "";
  border: 8px solid #E26329;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -10px;
}

.touch .tooltip .close-tooltip {
  height: 40px;
  width: 40px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  bottom: -45px;
  background: url("icons/cancel.png") no-repeat center center rgba(205, 0, 0, 0.7);
  border-radius: 50%;
  left: 50%;
  margin-left: -20px;
}

.hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.no-touch .hover:hover .tooltip {
  display: block;
}

@media (max-width: 630px) {
  .tooltip-wechat {
    left: inherit;
    right: 0;
    margin-left: 0;
  }
  .tooltip-wechat:before {
    left: inherit;
    margin-left: 0;
    right: 10px;
  }
}

#header {
  background: #FFF;
  text-align: right;
  padding: 15px 0;
}

@media (max-width: 500px) {
  #header {
    padding-top: 0;
  }
}

#header-sticky {
  float: left;
  width: 100%;
}

@media (min-width: 501px) {
  #header-sticky.fixed .header-content {
    position: fixed;
    z-index: 999;
  }
  #header-sticky .header-content {
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
  }
  #header-sticky.header-small .header-content {
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  }
  #header-sticky.header-small #header {
    padding: 15px 0 10px;
  }
  #header-sticky.header-small .menu-container .logo {
    top: -9px;
  }
  #header-sticky.header-small .menu-container .logo img {
    max-width: 150px;
  }
  #header-sticky.header-small .login-button .btn-login {
    padding: 5px 15px;
    font-size: 12px;
    background: #E26329;
  }
  #header-sticky.header-small .login-button .btn-login:hover {
    background: none;
  }
  #header-sticky.header-small .login-button .btn-login:before {
    background-position: -100px -6px;
  }
}

@media (min-width: 991px) {
  #header-sticky.header-small .menu a {
    padding: 5px 0;
    font-size: 12px;
  }
}

#sidebar-first {
  background: #FFF;
}

#sidebar-second {
  background: #FFF;
}

.flexslider-home {
  position: relative;
}

.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flexslider {
  position: relative;
  zoom: 1;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

* html .slides {
  height: 1%;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
  margin: 0;
  width: 100%;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  margin: -20px 0 0;
}

@media (max-width: 700px) {
  .flex-direction-nav a {
    opacity: 0.7;
  }
  .flex-direction-nav a.flex-prev {
    left: -35px;
  }
  .flex-direction-nav a.flex-next {
    right: -35px;
  }
}

.flex-direction-nav .flex-prev {
  left: 0;
}

.flex-direction-nav .flex-next {
  right: 0;
  text-align: right;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: -5px;
}

@media (max-width: 700px) {
  .flexslider:hover .flex-prev {
    left: -35px;
  }
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: -5px;
}

@media (max-width: 700px) {
  .flexslider:hover .flex-next {
    right: -35px;
  }
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  width: 42px;
  height: 42px;
  text-indent: -999px;
  display: inline-block;
  background-image: url("../img/icons/arrow-left.png");
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
}

.flex-direction-nav a.flex-next:before {
  background-image: url("../img/icons/arrow-right.png");
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-paging li a {
  width: 15px;
  height: 15px;
  display: block;
  background: #E26329;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #fff;
  cursor: default;
}

.flex-control-thumbs {
  position: static;
  overflow: hidden;
  margin: 5px 0 0;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

html[xmlns] .slides,
.no-js .slides > li:first-child {
  display: block;
}

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover,
.flex-pauseplay a:hover,
.flex-control-thumbs img:hover {
  opacity: 1;
}

.flexslider-controls {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  top: 30px;
}

.flex-control-nav {
  display: inline-block;
  float: left;
  width: 100%;
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 9;
  text-align: center;
}

@media (max-width: 400px) {
  .flex-control-nav {
    display: none;
  }
}

.content-slideshow {
  height: 100%;
  display: table;
  width: 100%;
}

.flexbox .content-slideshow {
  display: inline-block;
}

.content-slideshow .field-collection-container {
  display: none;
}

.content-slideshow .flex-viewport .slides,
.content-slideshow .flex-viewport li,
.content-slideshow .flex-viewport .field-collection-view,
.content-slideshow .flex-viewport .background {
  height: 100%;
}

.content-slideshow .field-name-field-content {
  text-align: center;
}

.content-slideshow.slide-only-text {
  display: table-cell;
  vertical-align: middle;
}

.content-slideshow.slide-only-text .background {
  padding: 25px 50px;
}

.content-slideshow.slide-only-image {
  height: 100%;
}

.content-slideshow.slide-only-image .flexslider {
  height: 100%;
  min-height: 300px;
  display: inline-block;
}

@media (max-width: 767px) {
  .content-slideshow.slide-only-image .flexslider {
    height: 300px !important;
  }
}

.content-slideshow.slide-only-image .flex-viewport {
  height: 100%;
}

.content-slideshow .field-name-field-title {
  text-align: center;
  color: #fff;
  line-height: 30px;
}

.content-slideshow .field-name-field-title span {
  font-weight: 600;
  color: #4a4a4a;
}

.flex-control-nav li {
  zoom: 1;
  display: inline-block;
  position: relative;
  margin: 0 5px;
  top: -0;
}

.flex-control-nav li:first-child {
  margin-left: 0;
}

.flex-control-nav li:first-child .title-thumb {
  visibility: visible !important;
  opacity: 1 !important;
  bottom: 160% !important;
  font-size: 24px;
  line-height: 24px;
}

.flex-control-nav li:last-child {
  margin-right: 0;
}

.flex-control-nav li .content-slide {
  width: 35px;
  height: 35px;
  background-color: #E26329;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 0;
}

.slideshow-block {
  width: 100%;
  float: left;
  margin: 15px 0;
}

.slideshow-block .header {
  display: table;
  height: 100px;
  width: 100%;
  padding: 5px 25px;
  position: relative;
  background: #7a7a7a;
}

.slideshow-block .header > div {
  display: table-cell;
  vertical-align: middle;
}

.slideshow-block .field-name-field-title {
  color: #fff;
  font-size: 44px;
  line-height: 40px;
  margin: 0;
}

.i18n-zh-cn .slideshow-block .field-name-field-title {
  font-size: 30px;
}

.slideshow-block .content {
  float: left;
  width: 100%;
  padding: 15px 0px 15px 20px;
  height: calc(100% - 100px);
}

.slideshow-block .image {
  position: absolute;
  bottom: -65px;
  right: 35px;
}

.slideshow-block .image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.slideshow-block .info {
  margin-top: 80px;
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .slideshow-block .header {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  .slideshow-block .content {
    padding: 10px;
  }
  .slideshow-block .image {
    position: static;
    margin-bottom: 5px;
  }
  .slideshow-block .info {
    margin-top: 0;
  }
}

.slideshow-image .paragraphs-items {
  display: inline-block;
}

.slideshow-image .paragraphs-items .content-slideshow {
  display: inline-block;
}

@media (max-width: 991px) {
  .slideshow-image.col-xs-12.col-md-6 .flex-viewport {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .slideshow-image.col-xs-12.col-sm-6.col-md-9 .flex-viewport {
    height: 300px;
  }
}

.flexslider-banners {
  position: relative;
}

.flexslider-banners .flex-control-paging {
  bottom: 60px;
}

.flexslider-banners .flex-control-paging li a {
  background-color: transparent;
  border: 1px solid transparent;
  height: 24px;
  position: relative;
  width: 24px;
}

.flexslider-banners .flex-control-paging a:after {
  background-color: #FFF;
  border-radius: 50%;
  content: '';
  display: block;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 12px;
}

.flexslider-banners .flex-control-paging a.flex-active {
  border-color: #E26329;
}

.flexslider-banners .flex-control-paging a.flex-active:after {
  background-color: #E26329;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

div.tabs {
  top: 15px;
  z-index: 99;
  width: 100%;
  left: 0;
  background: #fff;
}

.not-front div.tabs {
  top: 132px;
}

ul.tabs,
ul.primary,
ul.secondary {
  overflow: hidden;
  *zoom: 1;
  border: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  top: 0;
  padding-top: 10px;
  border-bottom: 4px solid #000;
}

.not-front ul.tabs, .not-front
ul.primary, .not-front
ul.secondary {
  top: 0;
}

ul.tabs li,
ul.primary li,
ul.secondary li {
  float: none;
  /* LTR */
  display: inline-block;
  margin: 0.5em 3px 0;
}

ul.tabs a,
ul.primary a,
ul.secondary a {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/*
 * Primary tabs
 */
ul.tabs li {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: white 1px 1px 0;
  border: none;
  border-bottom: 0;
  margin: 0 0 0 3px;
  /* LTR */
}

ul.tabs li.active {
  border-bottom: 1px solid white;
  margin-bottom: -1px;
  /* Overlap the ul's border. */
}

ul.tabs a:link, ul.tabs a:visited {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 10px 25px;
  text-align: center;
}

ul.tabs a:hover, ul.tabs a:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

ul.tabs a.active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/*
 * Secondary tabs
 */
ul.secondary {
  font-size: .9em;
  margin-top: -1.5em;
  padding-bottom: .5em;
}

ul.secondary a:link, ul.secondary a:visited {
  border-radius: 0.75em;
  transition: background-color 0.3s;
  text-shadow: white 1px 1px 0;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

ul.secondary a:hover, ul.secondary a:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

ul.secondary a.active, ul.secondary a:active {
  text-shadow: #333333 1px 1px 0;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/* tabs paragraph */
.field-name-field-tab {
  text-align: center;
}

.field-name-field-tab .field-name-field-title {
  display: none;
}

.field-name-field-tab .tabs-menu {
  width: 100%;
  float: left;
  clear: both;
  padding: 0;
}

.field-name-field-tab .tabs-menu li {
  display: inline-block;
  margin-right: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
}

.field-name-field-tab .tabs-menu li.current {
  position: relative;
  background-color: #00A5D3;
  border: 1px solid #00A5D3;
  z-index: 5;
}

.field-name-field-tab .tabs-menu li.current a {
  color: #fff;
}

.field-name-field-tab .tabs-menu li.current a:after {
  display: block;
}

.field-name-field-tab .tabs-menu li a {
  padding: 12px 25px;
  text-transform: uppercase;
  color: #4a4a4a;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.field-name-field-tab .tabs-menu li a:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #00A5D3;
  display: none;
}

.field-name-field-tab .tabs-menu li a:hover {
  background-color: #00A5D3;
  color: #fff;
}

.field-name-field-tab .tab-content {
  display: none;
  width: 100%;
  float: left;
}

.field-name-field-tab .tab-content:first-child {
  display: block;
}

.pager {
  list-style: none;
  margin: 0.3125rem 0 0;
  padding: 0;
}

.pager--infinite-scroll .pager__item {
  text-align: center;
}

.pager--infinite-scroll .pager__item a {
  color: #4a4a4a;
  font-size: 1.125rem;
  text-decoration: underline;
}

.block-banner {
  margin-bottom: 30px;
}

.block-banner-image {
  position: relative;
}

.block-banner-image img {
  height: auto;
  width: 100%;
}

.block-banner-title {
  color: #FFF;
  bottom: 10px;
  position: absolute;
  right: 15px;
}

.table {
  position: relative;
  width: 100% !important;
  overflow: hidden;
  font-size: 14px;
  font-family: "Lato", Arial, sans-serif;
}

.table:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #4a4a4a;
  border-radius: 2px;
}

.table, .table thead, .table th, .table tr, .table tbody, .table td {
  border: none;
  padding: 0;
  margin: 0;
}

.table th, .table td {
  padding: 12px 26px;
  border-bottom: 1px solid #4a4a4a;
  vertical-align: middle;
}

.table th {
  font-weight: 600;
}

.table td {
  font-weight: 400;
}

.table td img {
  display: block;
  max-width: none;
}

.table thead tr {
  height: 54px;
}

.table tbody tr:nth-child(odd) {
  background: #F3F5F5;
}

.table tbody tr:last-child th, .table tbody tr:last-child td {
  border-bottom: none;
}

.table__masked {
  position: relative;
  margin-top: -16px;
  padding-top: 16px;
  height: 326px;
  overflow: hidden;
}

.table__masked:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 218px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 96%);
}

.table__masked.reveal {
  height: auto;
}

.table__masked.reveal:after {
  height: 0;
}

.table__flex-wrapper {
  display: flex;
}

.table__flex-wrapper--column {
  flex-direction: column;
}

.table__flex-wrapper--align-center {
  align-items: center;
}

.table__expand {
  background: #E26329;
  font-size: 18px;
  margin-bottom: 48px;
}

.table__expand:hover {
  background: #EA8E5A;
}

.table__expand:after {
  width: 30px;
  height: 30px;
  background-image: url("/sites/all/themes/hotelbeds_new/img/icons-svg/table.svg");
}

.table__expand:before {
  content: '';
  position: absolute;
  right: -78px;
  bottom: -38px;
  display: block;
  width: 65px;
  height: 60px;
  background: url("/sites/all/themes/hotelbeds_new/img/icons-svg/arrow-below.svg") center center no-repeat;
  background-size: contain;
}

.component_home_slider .field-name-field-home-slider-items,
.component_home_slider .slick-track,
.component_home_slider .slick-slide {
  height: 700px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .component_home_slider .field-name-field-home-slider-items,
  .component_home_slider .slick-track,
  .component_home_slider .slick-slide {
    height: 554px;
  }
}

@media (min-width: 960px) {
  .component_home_slider .field-name-field-home-slider-items,
  .component_home_slider .slick-track,
  .component_home_slider .slick-slide {
    height: 560px;
  }
}

.component_home_slider .field-name-field-home-slider-items {
  position: relative;
}

.component_home_slider .slick-track:before {
  content: "";
  display: table;
}

.component_home_slider .slick-track:after {
  content: "";
  display: table;
  clear: both;
}

.component_home_slider .slick-active .component_home_slider_item .tabs {
  opacity: 1;
}

.component_home_slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: auto !important;
  bottom: 22px !important;
}

.component_home_slider .slick-dots li {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .component_home_slider .slick-dots {
    display: flex;
    max-width: 96.354%;
    width: 100%;
    margin-top: 32px;
  }
}

@media (min-width: 960px) {
  .component_home_slider .slick-dots {
    max-width: 1168px;
    width: 90%;
    margin-top: 0;
  }
}

.component_home_slider .slick-dots li {
  margin: 0 10px 0 0;
}

.component_home_slider .slick-dots li.slick-active button {
  background: #E26329;
}

.component_home_slider .slick-dots li button {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  text-indent: -1000em;
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  padding: 0;
}

.component_home_slider_item {
  height: 700px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: top;
  padding-top: 141px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .component_home_slider_item {
    height: 554px;
    padding-top: 130px;
  }
}

@media (min-width: 960px) {
  .component_home_slider_item {
    height: 560px;
    padding-top: 133px;
  }
}

.component_home_slider_item:not(:first-child) {
  display: none;
}

.component_home_slider_item .content-text {
  max-width: 85.333%;
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .component_home_slider_item .content-text {
    max-width: 96.354%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    top: 125px;
  }
}

@media (min-width: 960px) {
  .component_home_slider_item .content-text {
    max-width: 1168px;
    width: 90%;
    top: 145px;
  }
}

.component_home_slider_item .content-text:not(.with-form) {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding-top: calc($nav-top-mob / 3);
}

@media (min-width: 768px) {
  .component_home_slider_item .content-text:not(.with-form) {
    padding-top: calc($nav-top-tab / 3);
  }
}

@media (min-width: 960px) {
  .component_home_slider_item .content-text:not(.with-form) {
    padding-top: calc($nav-top-desk / 3);
  }
}

.component_home_slider_item .content-text.with-form {
  padding-top: 12px;
}

@media (min-width: 768px) {
  .component_home_slider_item .content-text.with-form > * {
    flex-basis: 43%;
  }
}

.component_home_slider_item .content-text.with-form .register-form-subtitle {
  margin-bottom: -10px;
  padding: 6px 16px 0;
  font-size: 12px;
}

.component_home_slider_item .field-name-field-para-body {
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .component_home_slider_item .field-name-field-para-body {
    text-align: left;
  }
}

.component_home_slider_item .field-name-field-para-body h2 strong, .component_home_slider_item .field-name-field-para-body h3 strong, .component_home_slider_item .field-name-field-para-body h4 strong, .component_home_slider_item .field-name-field-para-body .figure-horizontal .figure-title-text strong, .figure-horizontal .component_home_slider_item .field-name-field-para-body .figure-title-text strong, .component_home_slider_item .field-name-field-para-body .circle-why-bedsonline .video-title .video-title-text strong, .circle-why-bedsonline .video-title .component_home_slider_item .field-name-field-para-body .video-title-text strong, .component_home_slider_item .field-name-field-para-body h5 strong, .component_home_slider_item .field-name-field-para-body h6 strong {
  font-weight: 700;
}

.component_home_slider_item .field-name-field-para-body h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.002475px;
  margin: 0 0 9px;
}

@media (min-width: 960px) {
  .component_home_slider_item .field-name-field-para-body h2 {
    font-size: 36px;
    line-height: 37px;
    letter-spacing: 0.0037125px;
  }
}

.component_home_slider_item .field-name-field-para-body h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 9px;
}

@media (min-width: 960px) {
  .component_home_slider_item .field-name-field-para-body h3 {
    font-size: 30px;
    margin: 0 0 10px;
  }
}

.component_home_slider_item .field-name-field-para-body p {
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.component_home_slider_item .field-name-field-para-body table {
  width: 100% !important;
  border-collapse: collapse;
  border: none;
}

.component_home_slider_item .field-name-field-para-body table:before {
  content: "";
  display: table;
}

.component_home_slider_item .field-name-field-para-body table:after {
  content: "";
  display: table;
  clear: both;
}

.component_home_slider_item .field-name-field-para-body table tbody,
.component_home_slider_item .field-name-field-para-body table tr, .component_home_slider_item .field-name-field-para-body table td, .component_home_slider_item .field-name-field-para-body table th {
  border: none;
}

.component_home_slider_item .field-name-field-para-body table td {
  width: 100%;
  text-align: center;
  float: left;
}

@media (min-width: 768px) {
  .component_home_slider_item .field-name-field-para-body table td {
    width: auto;
    text-align: left;
    float: none;
    padding-left: 10px;
  }
}

.component_home_slider_item .field-name-field-para-body table td:first-child {
  padding-left: 0;
}

@media (min-width: 768px) {
  .component_home_slider_item .field-name-field-para-body table td:first-child {
    width: 19%;
  }
}

.component_home_slider_item .field-name-field-para-body table td img {
  display: inline-block;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .component_home_slider_item .field-name-field-para-body table td img {
    margin: 5px 0 0;
  }
}

.component_home_slider_item .field-name-field-para-body .main-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 306px;
  margin: 26px auto 0;
  padding: 14px 20px 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  display: inline-block;
  max-width: 220px;
  min-width: auto;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.component_home_slider_item .field-name-field-para-body .main-button:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.component_home_slider_item .field-name-field-para-body .main-button:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

@media (min-width: 768px) {
  .component_home_slider_item .field-name-field-para-body .main-button {
    margin: 26px 0 4px;
  }
}

.component_home_slider_item .tabs-wrapper {
  min-height: 158px;
}

.component_home_slider_item .tabs {
  opacity: 0;
  max-width: 100%;
  background: transparent;
  box-shadow: 0 2px 5px 0 rgba(50, 50, 50, 0.5);
  margin: 28px auto 0;
  transition: opacity 400ms;
  transition-delay: 400ms;
}

@media (min-width: 768px) {
  .component_home_slider_item .tabs {
    margin: 0;
  }
}

.component_home_slider_item .tabs > div {
  display: none;
}

.component_home_slider_item .tabs > div.active {
  display: block;
}

.component_home_slider_item .tabs > div.secondary-tab .form-on-slide .main-button {
  margin: 0 auto 16px;
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs > div.secondary-tab .form-on-slide .main-button {
    margin: 0 auto 24px;
  }
}

.component_home_slider_item .tabs > div.secondary-tab .icon-user-white {
  background: url("../images/icons-svg/icon-user.svg") no-repeat center #c76938;
  background-size: 15px;
}

.component_home_slider_item .tabs > div.secondary-tab .icon-cog-white {
  background: url("../images/icons-svg/icon-cog.svg") no-repeat center #2AA6ce;
  background-size: 14px;
}

.component_home_slider_item .tabs > div.secondary-tab .icon-lock-white {
  background: url("../images/icons-svg/icon-lock.svg") no-repeat center #2AA6ce;
  background-size: 12px;
}

.component_home_slider_item .tabs__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.component_home_slider_item .tabs__nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.component_home_slider_item .tabs__nav .tabs__item {
  flex-basis: 50%;
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  background: #4a4a4a;
  cursor: pointer;
  padding: 10px 10px 9px;
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs__nav .tabs__item {
    font-size: 16px;
    padding: 13px 10px 11px;
  }
}

.component_home_slider_item .tabs__nav .tabs__item.active {
  color: #E26329;
  background: #EAEAEA;
}

.component_home_slider_item .tabs .tab {
  background: #EAEAEA;
}

.component_home_slider_item .tabs .form-on-slide {
  padding: 13px 14px 17px;
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide {
    padding: 19px 19px 20px;
  }
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide.substitute-form {
    display: none;
  }
}

.component_home_slider_item .tabs .form-on-slide.real-form {
  display: none;
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide.real-form {
    display: block;
  }
}

.component_home_slider_item .tabs .form-on-slide .only-desktop {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide .only-desktop {
    display: flex;
  }
}

.component_home_slider_item .tabs .form-on-slide .main-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 306px;
  margin: 26px auto 0;
  padding: 14px 20px 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  width: 100%;
  min-width: auto;
  height: 38px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03406154px;
  text-transform: uppercase;
  box-shadow: 0 4px 0 #B74504;
  padding-top: 3px;
  margin: 0 auto 4px;
  position: relative;
}

.component_home_slider_item .tabs .form-on-slide .main-button:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.component_home_slider_item .tabs .form-on-slide .main-button:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide .main-button {
    height: 50px;
    font-size: 14px;
    padding-top: 0;
    padding-right: 73px;
  }
}

.component_home_slider_item .tabs .form-on-slide .main-button span {
  width: 73px;
}

.component_home_slider_item .tabs .form-on-slide .secondary-buttons {
  display: flex;
  justify-content: space-between;
}

.component_home_slider_item .tabs .form-on-slide .secondary-buttons > a {
  width: calc(50% - 10px);
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide .secondary-buttons > a {
    padding-right: 39px;
  }
}

.component_home_slider_item .tabs .form-on-slide .secondary-buttons > a .only-desktop {
  width: 39px;
}

.component_home_slider_item .tabs .form-on-slide .secondary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 32px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  background-color: #00A5D3;
  box-shadow: 0 3px 0 #004D62;
  border: 1px solid #004D62;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 135px;
  flex-wrap: wrap;
  line-height: 1;
  letter-spacing: 0.03122308px;
  text-transform: uppercase;
  padding-top: 3px;
  margin-bottom: 3px;
  position: relative;
}

.component_home_slider_item .tabs .form-on-slide .secondary-button:hover {
  background-color: #0077A3;
  text-decoration: none;
}

.component_home_slider_item .tabs .form-on-slide .secondary-button:active {
  box-shadow: unset;
  transform: translateY(5px);
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide .secondary-button {
    height: 40px;
    font-size: 13px;
    padding-top: 0;
  }
}

@media (min-width: 960px) {
  .component_home_slider_item .tabs .form-on-slide .secondary-button:first-child {
    padding-top: 4px;
  }
}

.component_home_slider_item .tabs .form-on-slide .secondary-button span:not(.only-desktop) {
  display: block;
  width: 100%;
  font-size: 9px;
  line-height: 1;
  text-align: center;
  text-transform: none;
  position: relative;
  top: -3px;
}

.component_home_slider_item img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.block-banner {
  margin-bottom: 30px;
}

.block-banner-image {
  position: relative;
}

.block-banner-image img {
  height: auto;
  width: 100%;
}

.block-banner-title {
  color: #FFF;
  bottom: 10px;
  position: absolute;
  right: 15px;
}

.component-thank-you-heading {
  display: flex;
  align-items: center;
  min-height: 254px;
  color: white;
  text-align: center;
  background: url("../images/bg/bg-thanks-page.png") no-repeat top right #E26329;
  background-size: cover;
  z-index: 0;
  padding: 30px 20px;
}

@media (min-width: 1240px) {
  .component-thank-you-heading {
    padding: 0;
  }
}

.component-thank-you-heading * {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 960px) {
  .component-thank-you-heading * {
    font-size: 48px;
    line-height: 58px;
  }
}

.component-thank-you-heading .field-name-field-tnx-head-banner-text {
  max-width: 1200px;
  margin: -6px auto 0;
}

.component-thank-you-heading strong {
  font-weight: 700;
}

.component-thank-you-simple-content {
  max-width: 789px;
  color: #4a4a4a;
  padding: 20px;
  margin: 0 auto;
}

@media (min-width: 1240px) {
  .component-thank-you-simple-content {
    padding: 20px 0;
  }
}

.component-thank-you-simple-content p {
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  text-align: center;
  margin: 0;
}

.component-thank-you-simple-content a:not(.btn), .component-thank-you-simple-content a:not(.btn--primary) {
  color: #E26329;
}

.component-thank-you-simple-content a.btn, .component-thank-you-simple-content a.btn--primary {
  margin-top: 0;
}

.component-thank-you-simple-content a.btn:hover, .component-thank-you-simple-content a.btn--primary:hover {
  color: #fff;
}

.component-thank-you-cta-image {
  padding: 0 20px;
}

@media (min-width: 1240px) {
  .component-thank-you-cta-image {
    padding: 0;
  }
}

.component-thank-you-cta-image.image-right .wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 960px) {
  .component-thank-you-cta-image.image-right .wrapper .text {
    padding-left: 0;
    padding-right: 4.2%;
  }
}

.component-thank-you-cta-image .wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .component-thank-you-cta-image .wrapper {
    display: flex;
    align-items: center;
  }
}

.component-thank-you-cta-image .wrapper .field-label {
  display: none;
}

.component-thank-you-cta-image .image {
  margin-bottom: 20px;
  position: relative;
}

@media (min-width: 960px) {
  .component-thank-you-cta-image .image {
    width: 49%;
    margin-bottom: 0;
  }
}

.component-thank-you-cta-image .image .category-wrapper {
  position: absolute;
  top: 22px;
  left: 22px;
}

.component-thank-you-cta-image .image .category-wrapper.destinations a:before {
  background: url("../img/icons-svg/destination.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.guide a:before {
  background: url("../img/icons-svg/guide.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.tools a:before {
  background: url("../img/icons-svg/tools.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.webinar a:before {
  background: url("../img/icons-svg/webinar.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.ebook a:before {
  background: url("../img/icons-svg/ebook.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.quiz a:before {
  background: url("../img/icons-svg/quiz.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.success-story a:before {
  background: url("../img/icons-svg/success-story.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.insight a:before {
  background: url("../img/icons-svg/insight.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.video a:before {
  background: url("../img/icons-svg/video.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.infographic a:before {
  background: url("../img/icons-svg/infographic.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper.template a:before {
  background: url("../img/icons-svg/template.svg") no-repeat center;
  background-size: contain;
}

.component-thank-you-cta-image .image .category-wrapper a {
  display: flex;
  align-items: center;
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.component-thank-you-cta-image .image .category-wrapper a:before {
  content: '';
  display: inline-block;
  width: 61px;
  height: 61px;
  margin-right: 20px;
}

@media (min-width: 960px) {
  .component-thank-you-cta-image .text {
    width: 51%;
    padding-left: 4.2%;
  }
}

.component-thank-you-cta-image .text h2, .component-thank-you-cta-image .text h3 {
  margin-top: 0;
}

.component-thank-you-cta-image .text h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 39px;
  margin-bottom: 10px;
}

.component-thank-you-cta-image .text h2 b {
  font-weight: 700;
}

.component-thank-you-cta-image .text h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 31px;
  margin-bottom: 19px;
}

.component-thank-you-cta-image .text blockquote {
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 22px;
  padding-left: 22px;
  margin: 0 0 19px;
  position: relative;
}

.component-thank-you-cta-image .text blockquote:before {
  content: '';
  width: 7px;
  height: 93%;
  background: #E26329;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
}

.component-thank-you-cta-image .text blockquote p {
  line-height: 22px;
}

.component-thank-you-cta-image .text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.component-thank-you-cta-image .text p:last-child {
  margin-bottom: 0;
}

.component-thank-you-cta-image .text .field-name-field-tnx-cta-img-cta {
  display: inline-block;
  margin-top: 15px;
}

@media (min-width: 960px) {
  .component-thank-you-cta-image .text .field-name-field-tnx-cta-img-cta {
    margin-top: 29px;
  }
}

.component-thank-you-cta-image .text .primary-button, .component-thank-you-cta-image .text .l-footer-columns .footer-contact-link, .l-footer-columns .component-thank-you-cta-image .text .footer-contact-link, .component-thank-you-cta-image .text .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta, .paragraphs-item-m1-header > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta, .component-thank-you-cta-image .text .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta .field-name-field-para-cta, .paragraphs-item-m9-text-image-cta .component-thank-you-cta-image .text .field-name-field-para-cta, .component-thank-you-cta-image .text .m9-v2-base .field-name-field-para-cta, .m9-v2-base .component-thank-you-cta-image .text .field-name-field-para-cta, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta, .paragraphs-item-m9-text-image-cta-v2 .component-thank-you-cta-image .text .field-name-field-para-cta, .component-thank-you-cta-image .text .paragraphs-item-m11-slider-2 .field-name-field-link-button, .paragraphs-item-m11-slider-2 .component-thank-you-cta-image .text .field-name-field-link-button, .component-thank-you-cta-image .text .paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content, .paragraphs-item-m14-suggestion .block--suggestion .block-footer .component-thank-you-cta-image .text .text-content, .component-thank-you-cta-image .text .paragraphs-item-m16-resources .more-link, .paragraphs-item-m16-resources .component-thank-you-cta-image .text .more-link, .component-thank-you-cta-image .text .paragraphs-item-m16-latest .more-link, .paragraphs-item-m16-latest .component-thank-you-cta-image .text .more-link, .component-thank-you-cta-image .text .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .component-thank-you-cta-image .text .btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 306px;
  margin: 26px auto 0;
  padding: 14px 20px 13px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  font-weight: 700;
  padding: 14px 20px 13px;
  margin: 0 auto 3px;
}

.component-thank-you-cta-image .text .primary-button:hover, .component-thank-you-cta-image .text .l-footer-columns .footer-contact-link:hover, .l-footer-columns .component-thank-you-cta-image .text .footer-contact-link:hover, .component-thank-you-cta-image .text .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta:hover, .paragraphs-item-m1-header > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta:hover, .component-thank-you-cta-image .text .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta:hover, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta:hover, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta .field-name-field-para-cta:hover, .paragraphs-item-m9-text-image-cta .component-thank-you-cta-image .text .field-name-field-para-cta:hover, .component-thank-you-cta-image .text .m9-v2-base .field-name-field-para-cta:hover, .m9-v2-base .component-thank-you-cta-image .text .field-name-field-para-cta:hover, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta:hover, .paragraphs-item-m9-text-image-cta-v2 .component-thank-you-cta-image .text .field-name-field-para-cta:hover, .component-thank-you-cta-image .text .paragraphs-item-m11-slider-2 .field-name-field-link-button:hover, .paragraphs-item-m11-slider-2 .component-thank-you-cta-image .text .field-name-field-link-button:hover, .component-thank-you-cta-image .text .paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content:hover, .paragraphs-item-m14-suggestion .block--suggestion .block-footer .component-thank-you-cta-image .text .text-content:hover, .component-thank-you-cta-image .text .paragraphs-item-m16-resources .more-link:hover, .paragraphs-item-m16-resources .component-thank-you-cta-image .text .more-link:hover, .component-thank-you-cta-image .text .paragraphs-item-m16-latest .more-link:hover, .paragraphs-item-m16-latest .component-thank-you-cta-image .text .more-link:hover, .component-thank-you-cta-image .text .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container:hover, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .component-thank-you-cta-image .text .btn-container:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.component-thank-you-cta-image .text .primary-button:active, .component-thank-you-cta-image .text .l-footer-columns .footer-contact-link:active, .l-footer-columns .component-thank-you-cta-image .text .footer-contact-link:active, .component-thank-you-cta-image .text .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta:active, .paragraphs-item-m1-header > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta:active, .component-thank-you-cta-image .text .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta:active, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .component-thank-you-cta-image .text .field-name-field-para-cta:active, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta .field-name-field-para-cta:active, .paragraphs-item-m9-text-image-cta .component-thank-you-cta-image .text .field-name-field-para-cta:active, .component-thank-you-cta-image .text .m9-v2-base .field-name-field-para-cta:active, .m9-v2-base .component-thank-you-cta-image .text .field-name-field-para-cta:active, .component-thank-you-cta-image .text .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta:active, .paragraphs-item-m9-text-image-cta-v2 .component-thank-you-cta-image .text .field-name-field-para-cta:active, .component-thank-you-cta-image .text .paragraphs-item-m11-slider-2 .field-name-field-link-button:active, .paragraphs-item-m11-slider-2 .component-thank-you-cta-image .text .field-name-field-link-button:active, .component-thank-you-cta-image .text .paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content:active, .paragraphs-item-m14-suggestion .block--suggestion .block-footer .component-thank-you-cta-image .text .text-content:active, .component-thank-you-cta-image .text .paragraphs-item-m16-resources .more-link:active, .paragraphs-item-m16-resources .component-thank-you-cta-image .text .more-link:active, .component-thank-you-cta-image .text .paragraphs-item-m16-latest .more-link:active, .paragraphs-item-m16-latest .component-thank-you-cta-image .text .more-link:active, .component-thank-you-cta-image .text .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container:active, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .component-thank-you-cta-image .text .btn-container:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

.component-thank-you-cta-slider {
  padding: 23px 20px 30px;
}

@media (min-width: 1240px) {
  .component-thank-you-cta-slider {
    padding: 23px 0 56px;
  }
}

.component-thank-you-cta-slider .field-name-field-tnx-cta-slider-title {
  max-width: 1200px;
  width: 100%;
  font-size: 38px;
  font-weight: 400;
  line-height: 39px;
  text-align: center;
  margin: 0 auto 30px;
}

@media (min-width: 960px) {
  .component-thank-you-cta-slider .field-name-field-tnx-cta-slider-title {
    margin: 0 auto 40px;
  }
}

.component-thank-you-cta-slider .field-name-field-tnx-cta-slider-title b {
  font-weight: 700;
}

.component-thank-you-cta-slider .wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .component-thank-you-cta-slider .wrapper {
    display: flex;
    align-items: center;
  }
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images {
  margin-bottom: 20px;
  position: relative;
}

@media (min-width: 960px) {
  .component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images {
    width: 49%;
    margin-bottom: 0;
  }
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  justify-content: center;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 25px;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li {
  margin: 0 27px 0 0;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li.slick-active button {
  background: #E26329;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li.slick-active button:before {
  content: '';
  opacity: 1;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li:last-child {
  margin-right: 0;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li button {
  display: block;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  text-indent: -1000em;
  cursor: pointer;
  pointer-events: all;
  padding: 0;
  position: relative;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-images .slick-dots li button:before {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid #E26329;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: -8px;
  left: -8px;
}

@media (min-width: 960px) {
  .component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content {
    width: 51%;
    padding-left: 4.2%;
  }
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content h2, .component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content h3 {
  margin-top: 0;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 39px;
  margin-bottom: 10px;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content h2 b {
  font-weight: 700;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 31px;
  margin-bottom: 19px;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content blockquote {
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 22px;
  padding-left: 22px;
  margin: 0 0 19px;
  position: relative;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content blockquote:before {
  content: '';
  width: 7px;
  height: 93%;
  background: #E26329;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content blockquote p {
  line-height: 22px;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.component-thank-you-cta-slider .wrapper .field-name-field-tnx-cta-slider-content p:last-child {
  margin-bottom: 0;
}

.component-download-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 352px;
  color: white;
  text-align: center;
  background: url("../images/bg/bg-download.png") no-repeat top right #E26329;
  background-size: cover;
  z-index: 0;
  padding: 20px;
}

@media (min-width: 1240px) {
  .component-download-heading {
    padding: 0;
  }
}

.component-download-heading .wrapper {
  max-width: 1200px;
}

.component-download-heading h3, .component-download-heading h1 {
  margin: 0;
}

.component-download-heading h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
}

.component-download-heading h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .component-download-heading h1 {
    font-size: 48px;
    line-height: 58px;
  }
}

.component-download-heading .download-file {
  display: inline-block;
  color: #E26329;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02925px;
  background: white;
  border: solid 1px #B74504;
  box-shadow: 0 4px #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  padding: 18px 52px 19px;
  margin: 21px 0 4px;
}

.component-download-heading .download-file:hover {
  color: white;
  background-color: #EA8E5A;
  text-decoration: none;
}

.component-download-heading .download-file:active {
  box-shadow: unset;
  transform: translateY(5px);
}

.component-download-related-content {
  background: #f8f8f8;
  padding: 30px 20px;
}

@media (min-width: 1240px) {
  .component-download-related-content {
    padding: 49px 0 75px;
  }
}

.component-download-related-content > h2 {
  max-width: 1200px;
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  margin: 0 auto 25px;
}

@media (min-width: 960px) {
  .component-download-related-content > h2 {
    margin: 0 auto 34px;
  }
}

.component-download-related-content .inner-content {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .component-download-related-content .inner-content {
    display: flex;
    justify-content: space-between;
  }
}

.component-download-related-content .inner-content .item {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.13);
}

@media (min-width: 960px) {
  .component-download-related-content .inner-content .item {
    width: calc(50% - 7px);
  }
}

.component-download-related-content .inner-content .item:first-child {
  margin-bottom: 30px;
}

@media (min-width: 960px) {
  .component-download-related-content .inner-content .item:first-child {
    margin-bottom: 0;
  }
}

.node-resource.view-mode-related_content .image-wrapper {
  position: relative;
}

.node-resource.view-mode-related_content .category-wrapper {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03px;
  pointer-events: none;
  position: absolute;
  left: 12px;
  bottom: 9px;
}

.node-resource.view-mode-related_content .category-wrapper.destinations:before {
  background: url("../img/icons-svg/destination.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.guide:before {
  background: url("../img/icons-svg/guide.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.tools:before {
  background: url("../img/icons-svg/tools.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.webinar:before {
  background: url("../img/icons-svg/webinar.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.ebook:before {
  background: url("../img/icons-svg/ebook.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.quiz:before {
  background: url("../img/icons-svg/quiz.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.success-story:before {
  background: url("../img/icons-svg/success-story.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.insight:before {
  background: url("../img/icons-svg/article.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.video:before {
  background: url("../img/icons-svg/video.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.infographic:before {
  background: url("../img/icons-svg/infographic.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper.template:before {
  background: url("../img/icons-svg/template.svg") no-repeat center;
  background-size: contain;
}

.node-resource.view-mode-related_content .category-wrapper:before {
  content: '';
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 9px;
}

.node-resource.view-mode-related_content .image a {
  display: block;
}

.node-resource.view-mode-related_content .image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.node-resource.view-mode-related_content h2 {
  padding: 10px 18px;
  margin: 0;
}

.node-resource.view-mode-related_content h2 a {
  display: block;
  color: black;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.2px;
}

.block-download-now .title {
  background: url("../images/bg/bg-download-now.png") no-repeat top right #E26329;
  background-size: 196px;
  padding: 12px 20px 19px;
}

.block-download-now .title h2 {
  color: white;
  font-size: 22px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1.833334px;
  text-transform: uppercase;
  text-align: center;
}

.block-download-now > .container {
  padding: 20px 0;
}

.block-download-now .form-placeholder {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.8rem 20px 0.2rem;
}

.component-thank-you-step {
  max-width: 1200px;
  z-index: 1;
  margin: 0 auto;
}

.component-thank-you-step.position--overlap-on-top, .component-thank-you-step.position--overlap-on-bottom {
  height: 44px;
}

.component-thank-you-step.position--overlap-on-top.without-label, .component-thank-you-step.position--overlap-on-bottom.without-label {
  height: 21px;
}

.component-thank-you-step.position--overlap-on-top .dots {
  transform: translateY(-50%);
}

.component-thank-you-step.without-label .dots span.bottom {
  margin-top: 0;
}

.component-thank-you-step .dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.component-thank-you-step .dots .field-name-field-tnx-step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  background: #4a4a4a;
  border-radius: 50%;
  z-index: 3;
  padding-bottom: 2px;
}

.component-thank-you-step .dots span {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #4a4a4a;
  border-radius: 50%;
  z-index: 2;
  margin-left: 1.5px;
  margin-bottom: 5px;
}

.component-thank-you-step .dots span.top {
  margin-bottom: 4px;
}

.component-thank-you-step .dots span.bottom {
  margin-top: 4px;
}

.component-thank-you-step .dots span:last-child {
  margin-bottom: 0;
}

.why-bedsonline {
  padding: 50px 15px;
  position: relative;
  height: 100vh;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #333;
}

.why-bedsonline .align-content {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.why-bedsonline .data-video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.why-bedsonline .data-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.why-bedsonline .content-section {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.why-bedsonline h1, .why-bedsonline h3 {
  margin-top: 0;
}

.why-bedsonline h3 p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 100;
  margin-bottom: 0.75em;
}

@media (max-width: 420px), (max-height: 800px) {
  .why-bedsonline {
    padding: 25px 15px;
  }
}

@media (max-height: 700px) {
  .why-bedsonline h1 {
    font-size: 45px;
    margin: 0;
    line-height: 47px;
  }
}

.circle-why-bedsonline .container {
  max-width: 1200px;
  margin: 0 auto;
}

.circle-why-bedsonline .box-container {
  width: 450px;
  height: 670px;
  margin: auto;
  position: relative;
  padding-top: 110px;
}

.circle-why-bedsonline .close-video {
  width: 50px;
  height: 50px;
  background: url(../images/circle/close-video.png) no-repeat center center;
  position: absolute;
  right: 15px;
  top: 10px;
}

.circle-why-bedsonline .video-content {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 999;
  display: none;
}

.circle-why-bedsonline .video-content.active {
  display: table;
}

.circle-why-bedsonline .video-align {
  display: table-cell;
  vertical-align: middle;
}

.circle-why-bedsonline .video-container {
  margin: 0 auto;
  padding-top: 56.25%;
  position: relative;
  z-index: 1;
  background: #000;
  overflow: hidden;
}

.circle-why-bedsonline .video-container:hover .video-title {
  top: 0;
  transition-delay: 0s;
}

.circle-why-bedsonline .video-title {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: left;
  padding: 20px 50px;
  text-transform: uppercase;
  z-index: 9;
  transition: all .2s ease-in-out 1s;
}

.circle-why-bedsonline .video-title .video-title-text {
  margin: 0;
}

.circle-why-bedsonline iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle-why-bedsonline .overlay-video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-in-out;
}

.circle-why-bedsonline .overlay-video-popup.active {
  visibility: visible;
  opacity: 1;
}

.circle-why-bedsonline .circle {
  margin: auto;
  width: 450px;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.circle-why-bedsonline .circle .circle-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/circle/circle.png) no-repeat center center/418px;
  transform: scale(0);
  transition: all .2s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.circle-why-bedsonline .circle:before, .circle-why-bedsonline .circle:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.circle-why-bedsonline .circle:before {
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -200px;
}

.circle-why-bedsonline .circle:after {
  width: 70%;
  height: 70%;
  background: rgba(0, 0, 0, 0.2);
  left: 15%;
  top: 15%;
}

.circle-why-bedsonline .text-intro {
  color: #fff;
  font-size: 19px;
  line-height: 19px;
  font-weight: 100;
  text-align: center;
  display: none;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  transform: scale(0);
  transition: transform .2s ease-in-out;
}

.circle-why-bedsonline .text-intro.active {
  display: block;
}

.circle-why-bedsonline .text-intro span {
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  color: #E26329;
  display: block;
}

.circle-why-bedsonline .item.active .item-content {
  transform: scale(1);
}

.circle-why-bedsonline .item-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  transition: all .3s ease-in-out;
  transform: scale(0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: table;
}

.circle-why-bedsonline .item-content .align {
  display: table-cell;
  vertical-align: middle;
}

.circle-why-bedsonline .item-content h2 {
  font-weight: bold;
  color: #fff;
  margin: 15px auto;
  max-width: 250px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -1px;
}

.circle-why-bedsonline .btn {
  padding: 8px 15px;
  background: #E26329;
  border: 1px solid #B74504;
  border-bottom-width: 4px;
  color: #fff;
  font-size: 14px;
  position: relativee;
}

.circle-why-bedsonline .btn:hover {
  background-color: #000 !important;
  text-decoration: none;
  border-color: #4a4a4a !important;
}

.circle-why-bedsonline .play-video {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 50%;
  background: url(../images/circle/play.png) no-repeat 35px 32px #E26329;
  cursor: pointer;
}

.circle-why-bedsonline .play-video:hover {
  background-color: #000 !important;
}

.circle-why-bedsonline .circle:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
  /* Safari and Chrome */
}

.circle-why-bedsonline .point {
  width: 78px;
  height: 78px;
  position: absolute;
  border-radius: 50%;
  -wenkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #000;
  z-index: 3;
  transition: all .2s ease-in-out;
  opacity: 0;
  cursor: pointer;
}

.circle-why-bedsonline .point:before {
  width: 0px;
  height: 100px;
  position: absolute;
  top: -10px;
  left: 0px;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  border-radius: 50px;
  -wenkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.circle-why-bedsonline .point:hover:before {
  opacity: 1;
  width: 310px;
  left: -10px;
}

.circle-why-bedsonline .point:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/circle/1.svg) no-repeat center center/32px;
  position: absolute;
  left: 0;
  top: 0;
}

.circle-why-bedsonline .plus {
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 10px;
  margin-left: -5px;
  text-align: center;
}

.circle-why-bedsonline .text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-align: left;
  top: 0;
  left: 90px;
  width: 190px;
  height: 100%;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  display: table;
  -webkit-transition: opacity .2s 0s ease;
  transition: opacity .2s 0s ease;
  -webkit-animation: animation2 12s infinite linear;
  animation: animation2 12s infinite linear;
  z-index: 4;
}

.circle-why-bedsonline .text > span {
  display: table-cell;
  vertical-align: middle;
}

.circle-why-bedsonline .point:hover .text {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .4s .4s ease;
  transition: opacity .4s .4s ease;
}

.circle-why-bedsonline .item-1 .btn,
.circle-why-bedsonline .item-1 .play-video {
  background-color: #00ABE5;
  border-color: #008cbc;
}

.circle-why-bedsonline .item-2 .btn,
.circle-why-bedsonline .item-2 .play-video {
  background-color: #4E738A;
  border-color: #254a60;
}

.circle-why-bedsonline .item-3 .btn,
.circle-why-bedsonline .item-3 .play-video {
  background-color: #C8A977;
  border-color: #8e7347;
}

.circle-why-bedsonline .item-4 .btn,
.circle-why-bedsonline .item-4 .play-video {
  background-color: #C5D320;
  border-color: #96a20d;
}

.circle-why-bedsonline .item-5 .btn,
.circle-why-bedsonline .item-5 .play-video {
  background-color: #D74B5A;
  border-color: #ad2c3a;
}

.circle-why-bedsonline .point-0 {
  top: -20%;
  left: 50%;
  margin-left: -39px;
  background: #E26329;
}

.circle-why-bedsonline .point-1 {
  top: 10%;
  right: -12%;
  background: #00ABE5;
}

.circle-why-bedsonline .point-1:after {
  background-image: url(../images/circle/2.svg);
}

.circle-why-bedsonline .point-2 {
  bottom: 10%;
  right: -12%;
  background: #4E738A;
}

.circle-why-bedsonline .point-2:after {
  background-image: url(../images/circle/3.svg);
}

.circle-why-bedsonline .point-3 {
  bottom: -20%;
  left: 50%;
  margin-left: -39px;
  background: #C8A977;
}

.circle-why-bedsonline .point-3:after {
  background-image: url(../images/circle/4.svg);
}

.circle-why-bedsonline .point-4 {
  bottom: 10%;
  left: -12%;
  background: #C5D320;
}

.circle-why-bedsonline .point-4:after {
  background-image: url(../images/circle/5.svg);
}

.circle-why-bedsonline .point-5 {
  top: 10%;
  left: -12%;
  background: #D74B5A;
}

.circle-why-bedsonline .point-5:after {
  background-image: url(../images/circle/6.svg);
}

.circle-why-bedsonline .point-3:before,
.circle-why-bedsonline .point-4:before,
.circle-why-bedsonline .point-5:before {
  left: auto;
  right: 0px;
}

.circle-why-bedsonline .point-3:hover:before,
.circle-why-bedsonline .point-4:hover:before,
.circle-why-bedsonline .point-5:hover:before {
  left: auto;
  right: -10px;
}

.circle-why-bedsonline .point-3 .text,
.circle-why-bedsonline .point-4 .text,
.circle-why-bedsonline .point-5 .text {
  right: 90px;
  left: auto;
}

.circle-why-bedsonline.loaded .circle, .circle-why-bedsonline.loaded .point, .circle-why-bedsonline.loaded .circle-image {
  opacity: 1;
}

.circle-why-bedsonline.loaded .circle-image {
  transform: scale(1);
}

.circle-why-bedsonline.loaded .text-intro {
  transform: scale(1);
  transition-delay: 1s;
}

.circle-why-bedsonline.loaded .point-0 {
  transition-delay: .4s;
}

.circle-why-bedsonline.loaded .point-1 {
  transition-delay: .5s;
}

.circle-why-bedsonline.loaded .point-2 {
  transition-delay: .6s;
}

.circle-why-bedsonline.loaded .point-3 {
  transition-delay: .7s;
}

.circle-why-bedsonline.loaded .point-4 {
  transition-delay: .8s;
}

.circle-why-bedsonline.loaded .point-5 {
  transition-delay: .9s;
}

@media (max-width: 1045px) {
  .circle-why-bedsonline .point-1:hover:before,
  .circle-why-bedsonline .point-2:hover:before {
    right: -10px;
    left: auto;
  }
  .circle-why-bedsonline .point-1 .text,
  .circle-why-bedsonline .point-2 .text {
    right: 90px;
    left: auto;
  }
  .circle-why-bedsonline .point-4:hover:before,
  .circle-why-bedsonline .point-5:hover:before {
    left: -10px;
    right: auto;
  }
  .circle-why-bedsonline .point-4 .text,
  .circle-why-bedsonline .point-5 .text {
    left: 90px;
    right: auto;
  }
  .circle-why-bedsonline .video-container {
    overflow: inherit;
  }
  .circle-why-bedsonline .video-container:hover .video-title {
    top: -44px;
  }
  .circle-why-bedsonline .video-container .video-title {
    padding: 10px 15px;
    top: -44px;
    transition: none;
  }
  .circle-why-bedsonline .video-container .video-title .video-title-text {
    font-size: 14px;
  }
  .circle-why-bedsonline .close-video {
    right: 0px;
    top: -2px;
    background-size: 35px;
  }
  .circle-why-bedsonline .play-video {
    width: 50px;
    height: 50px;
    background-position: 18px 16px;
    background-size: 19px;
  }
  .circle-why-bedsonline .btn {
    padding: 4px 15px;
    font-size: 12px;
  }
  .circle-why-bedsonline .box-container {
    width: 370px;
    height: 540px;
  }
  .circle-why-bedsonline .circle {
    width: 350px;
    height: 350px;
  }
  .circle-why-bedsonline .circle .circle-image {
    background-size: 288px;
  }
  .circle-why-bedsonline .circle:before {
    width: 274px;
    height: 274px;
    margin-left: -137px;
    margin-top: -137px;
  }
  .circle-why-bedsonline .item-content h2 {
    max-width: 190px;
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 800px), (max-height: 800px) {
  .circle-why-bedsonline h1 {
    font-size: 34px;
    line-height: 40px;
  }
  .circle-why-bedsonline .why-bedsonline h3 p {
    font-size: 20px;
    line-height: 24px;
  }
  .circle-why-bedsonline .item-content h2 {
    max-width: 180px;
    font-size: 16px;
    line-height: 18px;
    margin-top: 0;
  }
  .circle-why-bedsonline .box-container {
    width: 260px;
    height: 430px;
    padding-top: 60px;
  }
  .circle-why-bedsonline .plus {
    font-size: 10px;
    bottom: -6px;
  }
  .circle-why-bedsonline .circle {
    width: 250px;
    height: 250px;
  }
  .circle-why-bedsonline .circle .circle-image {
    background-size: 210px;
  }
  .circle-why-bedsonline .circle:before {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
  }
  .circle-why-bedsonline .circle:after {
    display: none;
  }
  .circle-why-bedsonline .point {
    width: 48px;
    height: 48px;
  }
  .circle-why-bedsonline .point:before {
    height: 68px;
  }
  .circle-why-bedsonline .point:after {
    background-size: 24px;
  }
  .circle-why-bedsonline .point:hover:before {
    width: 200px;
  }
  .circle-why-bedsonline .point-0, .circle-why-bedsonline .point-3 {
    margin-left: -24px;
  }
  .circle-why-bedsonline .point-1 .text,
  .circle-why-bedsonline .point-2 .text,
  .circle-why-bedsonline .point-3 .text {
    right: 55px;
  }
  .circle-why-bedsonline .point-4 .text,
  .circle-why-bedsonline .point-5 .text {
    left: 55px;
  }
  .circle-why-bedsonline .text {
    width: 125px;
    left: 55px;
    font-size: 10px;
    line-height: 14px;
  }
  .circle-why-bedsonline .play-video {
    width: 50px;
    height: 50px;
    background-position: 18px 16px;
    background-size: 19px;
  }
  .circle-why-bedsonline .btn {
    padding: 4px 15px;
    font-size: 12px;
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

body.lang-en section.section-landing div.container div.node-landing.view-mode-full div.row div.col-xs-12 > h2 {
  display: none;
}

.entity-paragraphs-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding: 20px 0;
  font-family: "Lato", Arial, sans-serif;
}

.entity-paragraphs-item:last-child {
  padding: 20px 0 0;
}

.entity-paragraphs-item .field-label {
  display: none;
}

.entity-paragraphs-item .entity-paragraphs-item {
  width: auto;
  margin: 0;
}

.entity-paragraphs-item.bg-fill {
  background-image: url(../images/bg_grey.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.entity-paragraphs-item h1,
.entity-paragraphs-item h2,
.entity-paragraphs-item h3,
.entity-paragraphs-item h4,
.entity-paragraphs-item .figure-horizontal .figure-title-text,
.figure-horizontal .entity-paragraphs-item .figure-title-text,
.entity-paragraphs-item .circle-why-bedsonline .video-title .video-title-text,
.circle-why-bedsonline .video-title .entity-paragraphs-item .video-title-text,
.entity-paragraphs-item h5,
.entity-paragraphs-item h6 {
  margin: 0 !important;
}

.entity-paragraphs-item h1 .span_p,
.entity-paragraphs-item h2 .span_p,
.entity-paragraphs-item h3 .span_p,
.entity-paragraphs-item h4 .span_p,
.entity-paragraphs-item .figure-horizontal .figure-title-text .span_p,
.figure-horizontal .entity-paragraphs-item .figure-title-text .span_p,
.entity-paragraphs-item .circle-why-bedsonline .video-title .video-title-text .span_p,
.circle-why-bedsonline .video-title .entity-paragraphs-item .video-title-text .span_p,
.entity-paragraphs-item h5 .span_p,
.entity-paragraphs-item h6 .span_p {
  display: block;
  margin: 0 0 1em;
}

.star-collection {
  padding-top: 15px;
}

@media (min-width: 768px) {
  .star-collection {
    padding-top: 25px;
  }
}

@media (min-width: 960px) {
  .star-collection {
    background: linear-gradient(180deg, #E3E3E3, #FFFFFF);
    border-bottom: 5px solid #E26329;
    padding: 19px 0 32px;
  }
}

.star-collection .wrapper-content {
  margin: 0 auto;
}

.star-collection .star-collection-heading {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .star-collection .star-collection-heading {
    max-width: 745px;
    padding: 0;
    margin: 0 auto 25px;
  }
}

@media (min-width: 960px) {
  .star-collection .star-collection-heading {
    display: flex;
    align-items: flex-end;
    text-align: left;
    margin: 0 auto 19px;
  }
}

.star-collection .star-collection-heading .star-collection-heading-logo {
  margin-bottom: 13px;
}

@media (min-width: 768px) {
  .star-collection .star-collection-heading .star-collection-heading-logo {
    margin-bottom: 7px;
  }
}

@media (min-width: 960px) {
  .star-collection .star-collection-heading .star-collection-heading-logo {
    margin-right: 31px;
    margin-bottom: 0;
  }
}

.star-collection .star-collection-heading .star-collection-heading-title {
  color: #282828;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .star-collection .star-collection-heading .star-collection-heading-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.224px;
    padding-bottom: 4px;
  }
}

.star-collection .star-collection-wrapper {
  background: #dedede;
  padding: 13px 9px;
}

@media (min-width: 768px) {
  .star-collection .star-collection-wrapper {
    padding: 11px 9px 14px;
  }
}

@media (min-width: 960px) {
  .star-collection .star-collection-wrapper {
    background: transparent;
    padding: 0;
  }
}

.star-collection .star-collection-wrapper .wrapper-collection-content {
  max-width: 745px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .star-collection .star-collection-wrapper .wrapper-collection-content {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .star-collection .star-collection-wrapper .wrapper-collection-content {
    background: transparent;
  }
}

.star-collection .star-collection-wrapper .star-collection-item {
  max-width: 356px;
  box-shadow: 0 0 4px 0 rgba(50, 50, 50, 0.3);
  margin: 0 auto 12px;
}

@media (min-width: 768px) {
  .star-collection .star-collection-wrapper .star-collection-item {
    max-width: 240px;
    margin: 0 auto;
  }
}

@media (min-width: 960px) {
  .star-collection .star-collection-wrapper .star-collection-item {
    width: 33.33333%;
    margin: 0;
  }
}

.star-collection .star-collection-wrapper .star-collection-item:first-child .star-collection-item-heading a {
  color: #E26329;
}

.star-collection .star-collection-wrapper .star-collection-item:first-child .star-collection-item-heading a:after {
  background: url("../img/icons-svg/chevron-right-orange.svg") no-repeat center;
  background-size: contain;
}

.star-collection .star-collection-wrapper .star-collection-item:nth-child(2) .star-collection-item-heading a {
  color: #00A5D3;
}

.star-collection .star-collection-wrapper .star-collection-item:nth-child(2) .star-collection-item-heading a:after {
  background: url("../img/icons-svg/chevron-right-light-blue.svg") no-repeat center;
  background-size: contain;
}

.star-collection .star-collection-wrapper .star-collection-item:last-child {
  margin-bottom: 0;
}

.star-collection .star-collection-wrapper .star-collection-item:last-child .star-collection-item-heading a {
  color: #616060;
}

.star-collection .star-collection-wrapper .star-collection-item:last-child .star-collection-item-heading a:after {
  background: url("../img/icons-svg/chevron-right-black.svg") no-repeat center;
  background-size: contain;
}

.star-collection .star-collection-wrapper .star-collection-item img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.star-collection .star-collection-wrapper .star-collection-item-heading {
  min-height: 49px;
  display: flex;
  align-items: center;
  background: white;
  position: relative;
}

.star-collection .star-collection-wrapper .star-collection-item-heading > div {
  width: 100%;
}

.star-collection .star-collection-wrapper .star-collection-item-heading a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.0168px;
  text-transform: uppercase;
  padding: 11px 26% 10px 11px;
}

.star-collection .star-collection-wrapper .star-collection-item-heading a:after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 24px;
  transform: translateY(-50%);
  margin-top: 1px;
  position: absolute;
  top: 50%;
  right: 10px;
}

.star-collection .star-collection-wrapper .anchor-wrapper {
  display: block;
  color: white;
  position: relative;
  overflow: hidden;
}

.star-collection .star-collection-wrapper .anchor-wrapper:before {
  content: '';
  width: 100%;
  height: 65%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  left: 0;
  bottom: -3px;
}

.star-collection .star-collection-wrapper .anchor-wrapper > img {
  min-width: 100%;
  min-height: 117px;
  width: auto;
  vertical-align: top;
}

@media (min-width: 960px) {
  .star-collection .star-collection-wrapper .anchor-wrapper > img {
    min-height: 157px;
  }
}

.star-collection .star-collection-wrapper .anchor-wrapper .absolute-content {
  width: 100%;
  padding: 0 10px 9px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.star-collection .star-collection-wrapper .anchor-wrapper .stars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-left: -2px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .stars li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.star-collection .star-collection-wrapper .anchor-wrapper .stars li {
  height: 18px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .stars li.full {
  width: 19px;
  background: url("../img/icons-svg/star-white.svg") no-repeat center;
  background-size: 16px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .stars li.half {
  width: 9.5px;
  background: url("../img/icons-svg/half-star.svg") no-repeat center;
  background-size: 9px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .star-collection-item-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -0.09718334px;
  margin-top: 1px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .star-collection-item-location {
  display: block;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.002px;
  vertical-align: middle;
  margin-top: 6px;
}

.star-collection .star-collection-wrapper .anchor-wrapper .star-collection-item-location:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 23px;
  background: url("../img/icons-svg/location-orange.svg") no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 6px;
}

.entity-paragraphs-item.paragraphs-item-m1-header-list {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 0;
}

.entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
  position: absolute;
  bottom: 3%;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

@media (min-height: 0px) and (max-height: 569px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 2%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 570px) and (max-height: 655px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 2%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 656px) and (max-height: 690px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 2%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 691px) and (max-height: 755px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 2%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 756px) and (max-height: 860px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 2%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 861px) and (max-height: 1024px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 3%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-height: 1025px) and (max-height: 1367px) and (orientation: portrait) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    position: absolute;
    bottom: 3%;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 25px;
    width: 25px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

@media (min-height: 0px) and (max-height: 320px) and (orientation: landscape) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    display: block;
    position: absolute;
    bottom: 2%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
    right: 7px;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li {
    display: block;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 20px;
    width: 20px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

@media (min-height: 321px) and (max-height: 375px) and (orientation: landscape) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    display: block;
    position: absolute;
    bottom: 2%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
    right: 7px;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li {
    display: block;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 20px;
    width: 20px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

@media (min-height: 376px) and (max-height: 450px) and (orientation: landscape) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    display: block;
    position: absolute;
    bottom: 2%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
    right: 7px;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li {
    display: block;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 20px;
    width: 20px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

@media (min-height: 700px) and (max-height: 768px) and (orientation: landscape) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    display: block;
    position: absolute;
    bottom: 2%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li {
    display: inline-block;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 20px;
    width: 20px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

@media (min-height: 769px) and (max-height: 1024px) and (orientation: landscape) {
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots {
    display: block;
    position: absolute;
    bottom: 3%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li {
    display: inline-block;
  }
  .entity-paragraphs-item.paragraphs-item-m1-header-list .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    text-indent: -9999px;
    background-color: #282829;
    height: 20px;
    width: 20px;
    border: 0;
    outline: 0;
    margin-left: 10px;
    border-radius: 50%;
  }
}

.entity-paragraphs-item.paragraphs-item-m1-header-list li {
  display: inline-block;
}

.entity-paragraphs-item.paragraphs-item-m1-header-list li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0;
  text-indent: -9999px;
  background-color: #282829;
  height: 20px;
  width: 20px;
  border: 0;
  outline: 0;
  margin-left: 10px;
  border-radius: 50%;
}

.entity-paragraphs-item.paragraphs-item-m1-header-list li.slick-active button {
  background-color: #FFF;
  border: 1px solid #282829;
}

.paragraphs-item-m1-header, .entity-paragraphs-item.paragraphs-item-m5-banner {
  width: 100%;
  background-position: center;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.paragraphs-item-m1-header > .content-wrapper, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.paragraphs-item-m1-header > .content-wrapper .field, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field {
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-claim, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-claim {
  font-size: 28px;
  letter-spacing: -0.7px;
}

.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title p, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title p, .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title h2, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title h2 {
  font-size: 48px;
  line-height: 54px;
  text-align: center;
  font-weight: 300;
  margin: 0 0 20px;
}

@media screen and (min-width: 600px) {
  .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title p, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title p, .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title h2, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title h2 {
    font-size: 64px;
    line-height: 68px;
  }
}

.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title h2 > .span_p, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title h2 > .span_p {
  margin-bottom: 20px;
}

.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-subtitle p, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle p {
  font-size: 21px;
  text-transform: uppercase;
}

.paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta a, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta a {
  margin-top: 0;
  display: inline-block;
  width: auto;
  height: auto;
  padding: .8em !important;
}

@media screen and (min-width: 600px) {
  .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-cta a, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-cta a {
    margin-top: 26px;
  }
}

.front .entity-paragraphs-item.paragraphs-item-m1-header-list .paragraphs-item-m1-header, .front .entity-paragraphs-item.paragraphs-item-m1-header-list .entity-paragraphs-item.paragraphs-item-m5-banner {
  padding-top: 0;
  height: calc(100vh - 115px);
}

@media all and (-ms-high-contrast: none) {
  .front .entity-paragraphs-item.paragraphs-item-m1-header-list .paragraphs-item-m1-header .content-wrapper, .front .entity-paragraphs-item.paragraphs-item-m1-header-list .entity-paragraphs-item.paragraphs-item-m5-banner .content-wrapper {
    display: block;
  }
  .front .entity-paragraphs-item.paragraphs-item-m1-header-list .paragraphs-item-m1-header .content-wrapper .field, .front .entity-paragraphs-item.paragraphs-item-m1-header-list .entity-paragraphs-item.paragraphs-item-m5-banner .content-wrapper .field {
    display: block;
  }
  .front .entity-paragraphs-item.paragraphs-item-m1-header-list .paragraphs-item-m1-header .content-wrapper .field-name-field-para-title img, .front .entity-paragraphs-item.paragraphs-item-m1-header-list .entity-paragraphs-item.paragraphs-item-m5-banner .content-wrapper .field-name-field-para-title img {
    width: 25% !important;
  }
  .front .entity-paragraphs-item.paragraphs-item-m1-header-list .paragraphs-item-m1-header .content-wrapper .field-name-field-para-subtitle img, .front .entity-paragraphs-item.paragraphs-item-m1-header-list .entity-paragraphs-item.paragraphs-item-m5-banner .content-wrapper .field-name-field-para-subtitle img {
    display: inline-block;
  }
}

.paragraphs-item-m3-slide-1-list {
  display: none;
}

.paragraphs-item-m3-slide-1-list .card--v2 {
  align-items: center;
  background-color: #FFF;
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex: 1;
  margin: 0.9375rem;
  padding: 1.25rem 1.5625rem;
}

.paragraphs-item-m3-slide-1-list .card__body {
  padding: 0 0 0 1.5625rem;
}

.paragraphs-item-m3-slide-1-list .card__image {
  border-radius: 100%;
  flex: 0 0 4.6875rem;
  overflow: hidden;
}

.paragraphs-item-m3-slide-1-list .card__title {
  margin-bottom: 0.3125rem;
}

.paragraphs-item-m3-slide-1-list .card__title > *,
.paragraphs-item-m3-slide-1-list .card__title .span_p {
  color: #282829;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.paragraphs-item-m3-slide-1-list .card__description {
  margin-bottom: 1rem;
}

.paragraphs-item-m3-slide-1-list .card__description * {
  color: #282829;
  font-size: 0.9375rem;
  line-height: 1.33;
  margin: 0;
}

.paragraphs-item-m3-slide-1-list .card__person {
  color: #4a4a4a;
  font-family: "Roboto", sans-serif;
}

.paragraphs-item-m3-slide-1-list .card__person-name,
.paragraphs-item-m3-slide-1-list .card__person-name * {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.paragraphs-item-m3-slide-1-list .card__person-info,
.paragraphs-item-m3-slide-1-list .card__person-info * {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 100;
  line-height: normal;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m3-slide-1-list {
    display: block;
  }
  .paragraphs-item-m3-slide-1-list .field-name-field-m3-slide-1-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m3-slide-1-list .field-name-field-m3-slide-1-items {
    flex-direction: row;
  }
  .paragraphs-item-m3-slide-1-list .field-name-field-m3-slide-1-items .card--v2 {
    margin: 0 15px;
    max-width: calc(50% - 25px);
  }
}

.paragraphs-item-m3-slise-1-list {
  width: auto;
  padding: 0;
}

.paragraphs-item-m3-slise-1-list .entity-paragraphs-item {
  padding: 35px 0;
  color: #FFF;
  position: relative;
  min-height: 469px;
}

.paragraphs-item-m3-slise-1-list .slick-arrow {
  z-index: 9999;
}

.paragraphs-item-m3-slise-1-list .slick-arrow::before {
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
  color: #ffffff;
}

.paragraphs-item-m3-slise-1-list .slick-next,
.paragraphs-item-m3-slise-1-list .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.paragraphs-item-m3-slise-1-list .slick-next {
  right: 79px;
  top: 48.5%;
}

@media screen and (max-width: 797px) {
  .paragraphs-item-m3-slise-1-list .slick-next {
    right: 24px;
  }
}

.paragraphs-item-m3-slise-1-list .slick-next::before {
  content: "\e80b";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(90deg);
}

.paragraphs-item-m3-slise-1-list .slick-prev {
  left: 79px;
}

@media screen and (max-width: 797px) {
  .paragraphs-item-m3-slise-1-list .slick-prev {
    left: 24px;
  }
}

.paragraphs-item-m3-slise-1-list .slick-prev::before {
  content: "\e80b";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(-90deg);
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-image,
.paragraphs-item-m3-slise-1-list .field-name-field-para-title,
.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle {
  position: relative;
  z-index: 5;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-image p,
.paragraphs-item-m3-slise-1-list .field-name-field-para-title p,
.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle p {
  margin: 0;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-title {
  font-weight: 300;
  font-size: 38px;
  padding: 0 50px;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle {
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  padding: 0 50px;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-image {
  width: 145px;
  height: 145px;
  margin: 0 auto 10px;
  border: 11px solid #FFF;
  border-radius: 100%;
  background-color: #D8D8D8;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-image img {
  flex-shrink: 0;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-title p,
.paragraphs-item-m3-slise-1-list .field-name-field-para-title .span_p {
  margin: 0 0 15px;
  font-size: 38px;
  line-height: 115%;
  text-align: center;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  quotes: "\201C" "\201D";
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle::before {
  content: open-quote;
  position: absolute;
  right: 100%;
  top: -20px;
  left: -25px;
  margin-right: 10px;
  font-size: 180px;
  font-weight: 400;
  line-height: 100%;
}

@media screen and (max-width: 797px) {
  .paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle::before {
    display: none;
  }
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle p {
  margin-bottom: 10px;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-bgimage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-bgimage img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-autor {
  text-align: center;
  z-index: 9999;
  position: relative;
  margin-top: 10px;
}

.paragraphs-item-m3-slise-1-list .field-name-field-para-autor p {
  font-size: 22px;
  font-style: italic;
}

.paragraphs-item-m4-slider-text {
  width: 100%;
  padding: 50px 0;
}

.paragraphs-item-m4-slider-text > .content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m4-slider-text > .content {
    flex-wrap: wrap;
  }
}

.paragraphs-item-m4-slider-text.left-image > .content {
  flex-direction: row-reverse;
}

.paragraphs-item-m4-slider-text.left-image > .content .field-collection-item-field-para-image-body > .content {
  margin-right: 0;
  margin-left: 35px;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m4-slider-text.left-image > .content .field-collection-item-field-para-image-body > .content {
    margin-left: 0;
  }
}

.paragraphs-item-m4-slider-text.left-image .field-name-field-para-image {
  margin: 0 auto;
}

.paragraphs-item-m4-slider-text.left-image .field-name-field-para-image img {
  /*float: left;*/
  float: none;
}

.paragraphs-item-m4-slider-text.image-50 > .content > .field {
  width: 50%;
}

.paragraphs-item-m4-slider-text .field-name-field-para-image {
  flex-shrink: 0;
  margin: 0 auto;
  flex-basis: auto;
}

.paragraphs-item-m4-slider-text .field-name-field-para-image img {
  float: none;
}

.paragraphs-item-m4-slider-text .field-name-field-para-title p, .paragraphs-item-m4-slider-text .field-name-field-para-title h2, .paragraphs-item-m4-slider-text .field-name-field-para-title .span_p {
  margin: 0 0 20px;
}

.paragraphs-item-m4-slider-text .field-name-field-para-subtitle p {
  font-size: 26px;
  font-weight: 300;
  line-height: 100%;
}

.paragraphs-item-m4-slider-text .field-name-field-para-body p {
  font-size: 26px;
  font-weight: 300;
}

.paragraphs-item-m4-slider-text .field-name-field-para-body blockquote {
  margin-left: 0;
  padding-left: 20px;
  border-left: 7px solid #E26329;
}

.paragraphs-item-m4-slider-text .field-collection-container,
.paragraphs-item-m4-slider-text .field-collection-view {
  border-bottom: 0;
  flex-basis: 50%;
}

.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content {
  display: flex;
  flex-direction: column;
  max-width: 732px;
  padding-right: 35px;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content,
  .paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content {
    padding-right: 0px;
  }
}

.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content .field-name-field-para-image,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content .field-name-field-para-image {
  width: 80px;
  height: 72px;
}

.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote,
.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content .field-name-field-para-body p,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content .field-name-field-para-body p {
  font-weight: 300;
  font-size: 20px;
}

.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote {
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 15px;
  border-left: 7px solid #E26329;
  vertical-align: middle;
}

.paragraphs-item-m4-slider-text .field-collection-container .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote p,
.paragraphs-item-m4-slider-text .field-collection-view .field-collection-item-field-para-image-body > .content .field-name-field-para-body blockquote p {
  display: inline-block;
  margin: 0;
}

.paragraphs-item-m4-slider-text .entity-field-collection-item .content {
  display: flex;
  flex-direction: column-reverse;
}

.paragraphs-item-m4-slider-text .entity-field-collection-item .content .field-name-field-para-title p, .paragraphs-item-m4-slider-text .entity-field-collection-item .content .field-name-field-para-title h2, .paragraphs-item-m4-slider-text .entity-field-collection-item .content .field-name-field-para-title h3 {
  font-size: 38px;
  line-height: 39px;
  font-weight: 300;
}

.paragraphs-item-m4-slider-text .entity-field-collection-item .content .field-name-field-para-subtitle p {
  font-weight: 300;
}

.paragraphs-item-m4-slider-text .entity-field-collection-item .content .field-name-field-para-image {
  margin: 0 24px 0 0;
}

.paragraphs-item-m4-slider-text-v2 {
  background-color: #f9f9f9;
  width: 100%;
}

.paragraphs-item-m4-slider-text-v2.left-image > .content .group-content {
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m4-slider-text-v2.left-image > .content .group-content {
    flex-direction: row-reverse;
  }
  .paragraphs-item-m4-slider-text-v2.left-image > .content .group-content .field-collection-container {
    margin-right: 0;
    margin-left: 35px;
  }
}

.paragraphs-item-m4-slider-text-v2 .field-collection-container,
.paragraphs-item-m4-slider-text-v2 .field-collection-view {
  border-bottom: 0;
}

.paragraphs-item-m4-slider-text-v2 > .content {
  width: 100%;
  margin: 0 auto;
}

.paragraphs-item-m4-slider-text-v2 > .content .field-name-field-para-title {
  margin-bottom: 50px;
  padding-top: 50px;
  text-align: center;
}

.paragraphs-item-m4-slider-text-v2 > .content .field-name-field-para-title p, .paragraphs-item-m4-slider-text-v2 > .content .field-name-field-para-title h2 {
  font-size: 32px;
  line-height: 1.13;
  font-weight: 300;
  margin: 0 0 1em;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m4-slider-text-v2 > .content .field-name-field-para-title p, .paragraphs-item-m4-slider-text-v2 > .content .field-name-field-para-title h2 {
    font-size: 38px;
    line-height: 1.03;
  }
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m4-slider-text-v2 > .content .group-content {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text {
    max-width: 639px;
  }
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content {
  display: flex;
  align-items: center;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-image {
  width: 60px;
  margin-right: 23px;
  align-self: center;
  flex: 0 0 auto;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body p, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h2, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  display: inline;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h2, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h3 {
  display: inline;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h2 + p, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body p + h2, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body h3 + p, .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body p + h3 {
  padding-left: 6px;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-collection-container .field-name-field-para-image-text .field-collection-item-field-para-image-text > .content .field-name-field-para-body .span_p {
  margin: 0;
}

.paragraphs-item-m4-slider-text-v2 > .content .group-content .field-name-field-para-image {
  display: inline-block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m4-slider-text-v2 > .content .group-content .field-name-field-para-image {
    display: block;
    margin: 0;
    margin-left: 35px;
  }
}

.entity-paragraphs-item.paragraphs-item-m5-banner {
  min-height: 432px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper {
  margin-top: 0;
  max-width: 1600px;
}

.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title .span_p {
  font-size: 48px;
  line-height: 54px;
  text-align: center;
  font-weight: 300;
  margin: 0 0 20px;
}

@media screen and (min-width: 600px) {
  .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title .span_p {
    font-size: 64px;
    line-height: 68px;
  }
}

.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title h3 {
  margin-bottom: .75em !important;
  margin-top: 50px !important;
}

.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle h4, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle .figure-horizontal .figure-title-text, .figure-horizontal .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle .figure-title-text, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle .circle-why-bedsonline .video-title .video-title-text, .circle-why-bedsonline .video-title .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-subtitle .video-title-text {
  margin-bottom: .75em !important;
}

.entity-paragraphs-item.paragraphs-item-m5-banner.tall-banner {
  min-height: 782px;
}

.entity-paragraphs-item.paragraphs-item-m5-banner .field-name-field-para-pretitle p {
  font-size: 28px;
  letter-spacing: -0.7px;
}

.paragraphs-item-m6-figures .field-collection-container,
.paragraphs-item-m6-figures .field-collection-view {
  border-bottom: 0;
  margin: 0 auto;
}

.paragraphs-item-m6-figures .field-name-field-para-m6item {
  display: block;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 765px;
  justify-content: space-between;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .paragraphs-item-m6-figures .field-name-field-para-m6item {
    display: flex;
  }
}

.paragraphs-item-m6-figures .field-name-field-para-m6item .field-collection-item-field-para-m6item > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 230px;
}

@media (max-width: 767px) {
  .paragraphs-item-m6-figures .field-name-field-para-m6item .field-collection-item-field-para-m6item > .content {
    margin: 0 auto;
  }
}

.paragraphs-item-m6-figures .field-name-field-para-m6item .field-collection-item-field-para-m6item > .content .field-name-field-para-image {
  margin-bottom: 1em;
}

.paragraphs-item-m6-figures .field-name-field-para-m6item .field-collection-item-field-para-m6item > .content .field-name-field-para-body {
  text-align: center;
  text-transform: uppercase;
  line-height: 140%;
  letter-spacing: 0.03px;
}

/*
/* Paragraph: M7 - Video
/* ------------------------------------ */
.paragraphs-item-m7-video {
  line-height: 0;
  padding: 0 !important;
  position: relative;
}

.paragraphs-item-m7-video p {
  margin: 0;
}

.paragraphs-item-m7-video .content-wrapper {
  align-items: center;
  display: flex;
  flex-flow: column wrap;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.paragraphs-item-m7-video .icon-play {
  background-image: url(../images/icons-svg/play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5.875rem;
  cursor: pointer;
  display: block;
  height: 5.875rem;
  margin-bottom: 2.125rem;
  transition: all 0.3s ease;
  width: 5.875rem;
}

.paragraphs-item-m7-video .icon-play:hover {
  transform: scale(0.9);
}

.paragraphs-item-m7-video .field-name-field-lgtext-title {
  color: #FFF;
  font-weight: 300;
  letter-spacing: -0.09375rem;
  text-align: center;
  text-transform: uppercase;
}

.paragraphs-item-m7-video .field-name-field-lgtext-title p {
  font-size: 2.375rem;
  line-height: 1.26;
}

.paragraphs-item-m7-video .video-wrapper {
  visibility: hidden;
}

.paragraphs-item-m7-video .video-wrapper.video-show {
  visibility: visible;
}

.paragraphs-item-m8-spacer {
  height: 80px;
  background: url(../images/separator_1.jpg) no-repeat center center;
}

.paragraphs-item-m8-spacer .field-name-field-para-bgimage {
  display: none;
}

.paragraphs-item-m9-text-image-cta {
  width: 100%;
}

.paragraphs-item-m9-text-image-cta .content {
  position: relative;
}

.paragraphs-item-m9-text-image-cta .content:before {
  content: "";
  display: table;
}

.paragraphs-item-m9-text-image-cta .content:after {
  content: "";
  display: table;
  clear: both;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-image {
  float: left;
  position: relative;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-title {
  width: 50%;
  text-transform: uppercase;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-title p, .paragraphs-item-m9-text-image-cta .field-name-field-para-title h2, .paragraphs-item-m9-text-image-cta .field-name-field-para-title h3 {
  margin: 0;
  font-weight: lighter;
  font-size: 38px;
  line-height: 120%;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-title h2, .paragraphs-item-m9-text-image-cta .field-name-field-para-title h3 {
  display: inline;
  margin: 0;
}

.paragraphs-item-m9-text-image-cta .group-content {
  display: flex;
  width: 1200px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: absolute;
  margin-left: 60px;
  top: 0;
  z-index: 10;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-cta {
  display: inline-block;
  width: 265px;
  margin-left: 0;
  margin-right: 0;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-cta a {
  width: 263px;
  min-width: 0;
}

.paragraphs-item-m9-text-image-cta.left-image .field-name-field-para-image {
  float: right;
}

.paragraphs-item-m9-text-image-cta.left-image .group-content {
  align-items: flex-end;
  margin-right: 0;
}

.m9-v2-base, .paragraphs-item-m9-text-image-cta-v2 {
  width: 100%;
}

.m9-v2-base .content, .paragraphs-item-m9-text-image-cta-v2 .content {
  position: relative;
}

.m9-v2-base .content:before, .paragraphs-item-m9-text-image-cta-v2 .content:before {
  content: "";
  display: table;
}

.m9-v2-base .content:after, .paragraphs-item-m9-text-image-cta-v2 .content:after {
  content: "";
  display: table;
  clear: both;
}

.m9-v2-base .field-name-field-para-image, .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-image {
  float: right;
  position: relative;
}

.m9-v2-base .field-name-field-para-title, .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-title {
  width: 50%;
  text-transform: uppercase;
}

.m9-v2-base .field-name-field-para-title p, .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-title p {
  margin: 0;
  font-weight: lighter;
  font-size: 38px;
  line-height: 120%;
}

.m9-v2-base .group-content, .paragraphs-item-m9-text-image-cta-v2 .group-content {
  display: flex;
  width: 1200px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: -600px;
  top: 0;
  z-index: 10;
}

.m9-v2-base .field-name-field-para-cta, .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta {
  display: inline-block;
  width: 265px;
  margin-left: 0;
  margin-right: 0;
}

.m9-v2-base .field-name-field-para-cta a, .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-cta a {
  width: 263px;
  min-width: 0;
}

.m9-v2-base.left-image .field-name-field-para-image, .left-image.paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-image {
  float: left;
}

.paragraphs-item-m9-text-image-cta-v2 {
  width: 100%;
  overflow: hidden;
}

.paragraphs-item-m9-text-image-cta-v2 .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

@media screen and (min-width: 1200px) {
  .paragraphs-item-m9-text-image-cta-v2 .content {
    flex-direction: row;
    justify-content: space-between;
  }
  .paragraphs-item-m9-text-image-cta-v2 .content > div {
    width: 50%;
  }
}

.paragraphs-item-m9-text-image-cta-v2 .group-content {
  max-width: 620px;
  max-width: 520px;
  position: relative;
  margin: 0 auto;
}

@media scren and (min-width: 1200px) {
  .paragraphs-item-m9-text-image-cta-v2 .group-content {
    margin-left: auto;
  }
}

.paragraphs-item-m9-text-image-cta-v2 .group-content > .field {
  width: 100%;
}

.paragraphs-item-m9-text-image-cta-v2 .group-content .field-name-field-para-title p, .paragraphs-item-m9-text-image-cta-v2 .group-content .field-name-field-para-title .span_p {
  margin-bottom: 20px;
  text-transform: none;
  margin-bottom: .4em;
  font-weight: lighter;
  font-size: 38px;
  line-height: 120%;
}

.paragraphs-item-m9-text-image-cta-v2 .group-content .field-name-field-para-subtitle p {
  margin-bottom: .4em;
  font-size: 26px;
  font-weight: 300;
}

.paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-image {
  min-width: 620px;
  float: none;
  margin-left: auto;
  margin-bottom: 2em;
}

@media screen and (min-width: 1200px) {
  .paragraphs-item-m9-text-image-cta-v2.left-image .content {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1200px) {
  .paragraphs-item-m9-text-image-cta-v2.left-image .content .group-content {
    margin-right: auto;
  }
}

.paragraphs-item-m9-text-image-cta-v2.left-image .content .field-name-field-para-image {
  min-width: 620px;
  float: none;
  margin-left: 0;
  margin-right: auto;
}

/*
/* Paragraph: M10 - Grid
/* ------------------------------------ */
.paragraphs-item-m10-grid {
  padding: 0;
}

.paragraphs-item-m10-grid p {
  margin: 0;
}

.paragraphs-item-m10-grid .field-name-field-lgtext-pretitle,
.paragraphs-item-m10-grid .field-name-field-lgtext-title {
  text-align: center;
  font-weight: 300;
}

.paragraphs-item-m10-grid .field-name-field-lgtext-pretitle {
  text-transform: uppercase;
}

.paragraphs-item-m10-grid .field-name-field-lgtext-title {
  margin-bottom: 2rem;
}

.paragraphs-item-m10-grid .field-name-field-lgtext-title p {
  font-size: 2.375rem;
  line-height: 3rem;
  letter-spacing: -0.09375rem;
}

.paragraphs-item-m10-grid .grid-blocks {
  overflow: hidden;
}

.paragraphs-item-m10-grid .grid-block {
  margin-bottom: 1.875rem;
}

.paragraphs-item-m10-grid .grid-block .entity-paragraphs-item:last-child {
  padding: 0;
}

.paragraphs-item-m10-grid .grid-block--highlighted {
  margin-bottom: 5.625rem;
}

.paragraphs-item-m10-grid .grid-block-content {
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 11.25rem;
  position: relative;
  transition: all .2s ease-in-out;
}

.paragraphs-item-m10-grid .grid-block-content:hover, .paragraphs-item-m10-grid .grid-block-content:focus {
  box-shadow: 0 0 3.75rem 1.25rem rgba(0, 0, 0, 0.3) inset;
}

.paragraphs-item-m10-grid .grid-block-title {
  bottom: 1.25rem;
  color: #FFF;
  font-size: 1.25rem;
  left: 1.25rem;
  position: absolute;
  text-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
}

.paragraphs-item-m10-grid .grid-block-title svg,
.paragraphs-item-m10-grid .grid-block-title .txt-title {
  display: inline-block;
}

.paragraphs-item-m10-grid .grid-block-title svg {
  height: 1.25rem;
  margin-right: 0.125rem;
  position: relative;
  top: 0.125rem;
  width: 1.25rem;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m10-grid .grid-blocks {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m10-grid .grid-block--double .grid-block-content {
    height: 20rem;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m10-grid .grid-block .grid-block-content {
    height: 13.75rem;
  }
  .paragraphs-item-m10-grid .grid-block--double .grid-block-content {
    height: 29.375rem;
  }
}

/*
/* Paragraph: M11 - Slider 2
/* ------------------------------------ */
.paragraphs-item-m11-slider-2 {
  padding: 0;
  width: auto;
}

.paragraphs-item-m11-slider-2 p {
  margin: 0;
}

.paragraphs-item-m11-slider-2 .paragraphs-items-field-pgraph-m11-slide-item,
.paragraphs-item-m11-slider-2 .field-name-field-pgraph-m11-slide-item,
.paragraphs-item-m11-slider-2 .slick-list,
.paragraphs-item-m11-slider-2 .slick-track,
.paragraphs-item-m11-slider-2 .slick-slide,
.paragraphs-item-m11-slider-2 .slick-slide > div {
  height: 100%;
}

.paragraphs-item-m11-slider-2 .entity-paragraphs-item {
  display: table !important;
  height: 100%;
  padding: 0;
  position: relative;
  width: 100%;
}

.paragraphs-item-m11-slider-2 .entity-paragraphs-item .content-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.paragraphs-item-m11-slider-2 .field-name-field-image-icon {
  margin: 1.25rem auto 0.625rem;
  overflow: hidden;
  text-align: center;
}

.paragraphs-item-m11-slider-2 .field-name-field-image-icon img {
  display: inline-block;
  height: 6.25rem;
  width: auto;
}

.paragraphs-item-m11-slider-2 .field-name-field-lgtext-title {
  color: #FFF;
  font-size: 2.375rem;
  font-weight: 300;
  letter-spacing: 0.09375rem;
  padding: 0 3.125rem;
  position: relative;
  text-align: center;
}

.paragraphs-item-m11-slider-2 .field-name-field-lgtext-title p {
  font-size: 2.375rem;
  line-height: 1.26;
}

.paragraphs-item-m11-slider-2 .field-name-field-link-button {
  text-align: center;
  margin-bottom: 1.25rem;
}

.paragraphs-item-m11-slider-2 .field-name-field-link-button a {
  display: inline-block;
  margin-top: 0;
}

.paragraphs-item-m11-slider-2 .slick-arrow {
  z-index: 99;
}

.paragraphs-item-m11-slider-2 .slick-arrow:before {
  color: #FFF;
  display: inline-block;
  font-size: 1.125rem;
  vertical-align: middle;
}

.paragraphs-item-m11-slider-2 .slick-next,
.paragraphs-item-m11-slider-2 .slick-prev {
  background: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 1.25rem;
  line-height: 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 1.25rem;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.paragraphs-item-m11-slider-2 .slick-next {
  right: 5rem;
  top: 48.5%;
}

.paragraphs-item-m11-slider-2 .slick-next:before {
  content: "\e80b";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(90deg);
}

.paragraphs-item-m11-slider-2 .slick-prev {
  left: 5rem;
}

.paragraphs-item-m11-slider-2 .slick-prev:before {
  content: "\e80b";
  display: inline-block;
  width: 1em;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-family: "fontello";
  text-decoration: inherit;
  text-align: center;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(-90deg);
}

.paragraphs-item-m11-slider-2 .slick-dots {
  bottom: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.paragraphs-item-m11-slider-2 .slick-dots li {
  display: inline-block;
}

.paragraphs-item-m11-slider-2 .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #282829;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  height: 0.9375rem;
  margin-left: 0.625rem;
  outline: 0;
  text-indent: -9999px;
  width: 0.9375rem;
}

.paragraphs-item-m11-slider-2 .slick-dots li.slick-active button {
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m11-slider-2 .slick-next {
    right: 1.5rem;
  }
  .paragraphs-item-m11-slider-2 .slick-prev {
    left: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m11-slider-2 .field-name-field-link-button a {
    margin-top: 1.625rem;
  }
}

/*
/* Paragraph: M12 - Slider Blocks
/* ------------------------------------ */
.paragraphs-item-m12-slider-blocks {
  padding: 0;
}

.paragraphs-item-m12-slider-blocks p {
  margin: 0;
}

.paragraphs-item-m12-slider-blocks .field-name-field-lgtext-pretitle,
.paragraphs-item-m12-slider-blocks .field-name-field-lgtext-title {
  text-align: center;
  font-weight: 300;
}

.paragraphs-item-m12-slider-blocks .field-name-field-lgtext-pretitle {
  text-transform: uppercase;
}

.paragraphs-item-m12-slider-blocks .field-name-field-lgtext-title {
  margin-bottom: 2rem;
}

.paragraphs-item-m12-slider-blocks .field-name-field-lgtext-title p {
  font-size: 2.375rem;
  line-height: 3rem;
  letter-spacing: -0.09375rem;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 3.75rem;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item {
  margin: 0;
  padding: 0.625rem;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a {
  color: #000;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:hover,
.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:focus {
  text-decoration: none;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:hover .item-content,
.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:focus .item-content {
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.3);
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:hover .item-image img,
.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item a:focus .item-image img {
  transform: scale(1.1);
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-content {
  box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-image {
  position: relative;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-image img {
  transition: all 0.3s ease;
  width: 100%;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-title {
  background-color: #FFF;
  border-bottom: 4px solid #dedede;
  display: table;
  height: 3.125rem;
  overflow: hidden;
  padding: 0 5rem 0 0.9375rem;
  position: relative;
  text-align: left;
  width: 100.2%;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-title p {
  display: table-cell;
  font-size: 1rem;
  line-height: 1;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.paragraphs-item-m12-slider-blocks .field-name-field-pgraph-m12-block-item .block-item .item-icon {
  background-color: #E26329;
  background-image: url(../images/icons-svg/link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.875rem;
  border-bottom: 4px solid #B74504;
  bottom: 0;
  display: block;
  height: 3.125rem;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
  width: 4.375rem;
}

.paragraphs-item-m12-slider-blocks .slick-dots {
  bottom: 0.9375rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.paragraphs-item-m12-slider-blocks .slick-dots li {
  display: inline-block;
}

.paragraphs-item-m12-slider-blocks .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #282829;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  height: 0.9375rem;
  margin-left: 0.625rem;
  outline: 0;
  text-indent: -624.9375rem;
  width: 0.9375rem;
}

.paragraphs-item-m12-slider-blocks .slick-dots li.slick-active button {
  background-color: #FFF;
}

/*
/* Paragraph: M13 - Gallery
/* ------------------------------------ */
.paragraphs-item-m13-gallery {
  padding: 0;
}

.paragraphs-item-m13-gallery p {
  margin: 0;
}

.paragraphs-item-m13-gallery > .content {
  overflow: hidden;
}

.paragraphs-item-m13-gallery .field-name-field-lgtext-pretitle,
.paragraphs-item-m13-gallery .field-name-field-lgtext-title {
  text-align: center;
  font-weight: 300;
}

.paragraphs-item-m13-gallery .field-name-field-lgtext-pretitle {
  text-transform: uppercase;
}

.paragraphs-item-m13-gallery .field-name-field-lgtext-title {
  margin-bottom: 1.25rem;
}

.paragraphs-item-m13-gallery .field-name-field-lgtext-title > * {
  font-size: 1rem;
  line-height: 1.36;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item {
  flex: 0 0 100%;
  margin: 0 0 0.5rem;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a {
  color: #4a4a4a;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:hover,
.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:focus {
  text-decoration: none;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:hover .item-image::before,
.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:focus .item-image::before {
  top: 60%;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:hover .item-image img,
.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item a:focus .item-image img {
  transform: scale(1.1);
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-content {
  border-bottom: 0.25rem solid #000;
  overflow: hidden;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-image {
  position: relative;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-image::before {
  background-image: url(../images/icons-svg/download.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 4.75rem;
  left: 50%;
  margin-left: -2.375rem;
  margin-top: -2.375rem;
  position: absolute;
  top: 50%;
  transition: top 0.3s ease;
  width: 4.75rem;
  z-index: 1;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-image img {
  transition: transform 0.2s ease;
  width: 100%;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-title {
  align-items: center;
  background-color: #FFF;
  border: solid 1px #dedede;
  display: flex;
  justify-content: center;
  height: 3.4375rem;
  padding: 0.3125rem;
  position: relative;
  text-align: center;
}

.paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item .item-title span {
  font-size: 1.125rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m13-gallery .field-name-field-lgtext-title {
    margin-bottom: 1.875rem;
  }
  .paragraphs-item-m13-gallery .field-name-field-lgtext-title > * {
    font-size: 1.5rem;
  }
  .paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item {
    flex: 0 0 calc(33.333% - 16px);
    margin: 0 0.4375rem;
    max-width: calc(33.333% - 16px);
  }
  .paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item:first-child, .paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m13-gallery .field-name-field-lgtext-title {
    margin-bottom: 2.5rem;
  }
  .paragraphs-item-m13-gallery .field-name-field-lgtext-title > * {
    font-size: 1.75rem;
  }
  .paragraphs-item-m13-gallery .field-name-field-view-gallery-items .gallery-item {
    flex: 0 0 25%;
  }
}

/*
/* Paragraph: M14 - Suggestion
/* ------------------------------------ */
.paragraphs-item-m14-suggestion {
  padding: 0 !important;
}

.paragraphs-item-m14-suggestion p {
  margin: 0;
}

.paragraphs-item-m14-suggestion .tab-block-close {
  background-color: #E26329;
  bottom: -2.5rem;
  color: #000;
  cursor: pointer;
  opacity: 0;
  padding: 0.5rem 0.9375rem;
  position: absolute;
  text-align: center;
  width: 100%;
}

.paragraphs-item-m14-suggestion .tab-block-close:after {
  border-width: 0.125rem 0.125rem 0 0;
  border-style: solid;
  border-color: #FFF;
  content: '';
  display: block;
  height: 1rem;
  margin-top: -0.25rem;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  width: 1rem;
}

.paragraphs-item-m14-suggestion .block--suggestion {
  background-color: #FFF;
  bottom: 0;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.27);
  position: fixed;
  transition: all .2s ease-in-out;
  z-index: 999;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-content {
  background-color: #FFF;
  height: 17.8125rem;
  overflow: hidden;
  padding: 0.9375rem;
  position: relative;
  width: 33.75rem;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-content .col--left {
  padding: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-content .col--right {
  height: 100%;
  padding-right: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-content .block-corner-top {
  position: absolute;
  top: 0;
  z-index: 1;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-content .block-corner-top:before {
  border-style: solid;
  content: '';
  display: block;
  height: 0;
  width: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-title p {
  color: #282829;
  font-size: 1.375rem;
  line-height: 1;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-body p {
  color: #636363;
  font-size: 1rem;
  line-height: 1.38;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-footer {
  bottom: 0.3125rem;
  position: absolute;
}

.paragraphs-item-m14-suggestion .block--suggestion .block-footer .text-content a {
  height: 2.5rem;
  min-width: auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.paragraphs-item-m14-suggestion .block--suggestion .icon-close {
  background: url(../images/icons-svg/close-circle.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  height: 1.25rem;
  position: absolute;
  top: 0.625rem;
  width: 1.25rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--left {
  left: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--left .tab-block-close:after {
  right: 0.9375rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--left .block-corner-top {
  right: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--left .block-corner-top:before {
  border-color: transparent #E26329 transparent transparent;
  border-width: 0 4rem 4rem 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--left .block-corner-top .icon-close {
  right: 0.625rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--right {
  right: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--right .tab-block-close:after {
  left: 0.9375rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--right .block-corner-top {
  left: 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--right .block-corner-top:before {
  border-color: #B52555 transparent transparent transparent;
  border-width: 4rem 4rem 0 0;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-align--right .block-corner-top .icon-close {
  left: 0.625rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--image.block-align--left.block--hidden {
  left: -33.75rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--image.block-align--right.block--hidden {
  right: -33.75rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--image .block-content {
  padding: 0.9375rem;
  width: 33.75rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--image .block-title {
  margin-bottom: 0.4375rem;
  padding-right: 1.5rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--video.block-align--left.block--hidden {
  left: -26.25rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--video.block-align--right.block--hidden {
  right: -26.25rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--video .block-content {
  padding: 0;
  width: 26.25rem;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--video .block-title {
  background-color: #FFF;
  bottom: 0;
  display: table;
  margin: 0;
  height: 3rem;
  overflow: hidden;
  padding: 0.3125rem;
  position: absolute;
  text-align: center;
  width: 100%;
}

.paragraphs-item-m14-suggestion .block--suggestion.block-type--video .block-title .title-txt {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .paragraphs-item-m14-suggestion {
    display: none !important;
  }
}

.paragraphs-item-m16-resources .component__wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.paragraphs-item-m16-resources .component__header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.paragraphs-item-m16-resources .component__title > * {
  color: #282829;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.38;
  margin: 0;
}

.paragraphs-item-m16-resources .component__body {
  position: relative;
}

.paragraphs-item-m16-resources .component__body:before {
  content: "";
  display: table;
}

.paragraphs-item-m16-resources .component__body:after {
  content: "";
  display: table;
  clear: both;
}

.paragraphs-item-m16-resources .component__body--full .view-content {
  justify-content: inherit;
}

.paragraphs-item-m16-resources .block--resources-menu h1.block-title {
  color: #282829;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.paragraphs-item-m16-resources .block--resources-menu .btn--link {
  color: #E26329;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 2.4;
  position: relative;
  text-transform: uppercase;
}

.paragraphs-item-m16-resources .block--resources-menu .btn--link::after {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #E26329;
  content: '';
  display: inline-block;
  height: 0.375rem;
  margin-top: -0.1875rem;
  position: absolute;
  right: -0.625rem;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  width: 0.375rem;
}

.paragraphs-item-m16-resources .block--resources-menu .btn--close {
  position: absolute;
  right: 0;
  top: 0.625rem;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective {
  padding: 0;
  width: 100%;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective > label {
  background-color: #E26329;
  color: #FFF;
  cursor: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  padding: 1rem;
  text-transform: uppercase;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link a {
  background-color: #FFF;
  border: solid 1px #dedede;
  border-width: 0 1px 1px;
  color: #4a4a4a;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 2.14;
  letter-spacing: normal;
  padding: 0.3125rem 0.625rem 0.3125rem 3.125rem;
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
  width: 100%;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link a:hover, .paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link a.active {
  background-color: #ffede4;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link a::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 1.375rem;
  left: 0.625rem;
  position: absolute;
  top: 0.4375rem;
  width: 1.375rem;
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-all > a::before {
  background-image: url("../img/icons/all.png");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-2 > a::before {
  background-image: url("../img/icons-svg/template.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-3 > a::before {
  background-image: url("../img/icons-svg/video.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-4 > a::before {
  background-image: url("../img/icons-svg/success-story.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-6 > a::before {
  background-image: url("../img/icons-svg/insight.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-7 > a::before {
  background-image: url("../img/icons-svg/ebook.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-8 > a::before {
  background-image: url("../img/icons-svg/infographic.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-32 > a::before {
  background-image: url("../img/icons-svg/guide.svg");
}

.paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective .form-type-bef-link.form-item-edit-category-38 > a::before {
  background-image: url("../img/icons-svg/tools.svg");
}

.paragraphs-item-m16-resources .view-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.paragraphs-item-m16-resources .more-link a {
  height: 2.375rem;
  max-width: 24.0625rem;
  min-width: auto;
}

@media screen and (max-width: 991px) {
  .paragraphs-item-m16-resources .block--resources-menu .form__wrapper {
    left: 0;
    position: absolute;
    right: 0;
    transform: translateX(-100%);
    transition: all .5s ease-in-out;
    visibility: hidden;
    z-index: 1000;
  }
  .paragraphs-item-m16-resources .block--resources-menu .form__wrapper.show {
    transform: translateX(0);
    visibility: visible;
  }
  .logged-in .paragraphs-item-m16-resources .block--resources-menu .form__wrapper {
    margin: 0 -0.9375rem;
  }
  .paragraphs-item-m16-resources .block--resources-menu__overlay {
    display: none;
  }
  .freeze .paragraphs-item-m16-resources .block--resources-menu__overlay {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
  }
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m16-resources .block--resources-menu .form__wrapper {
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m16-resources .component__header {
    margin-bottom: 1.875rem;
  }
  .paragraphs-item-m16-resources .component__title > * {
    font-size: 1.5rem;
    line-height: 1.58;
  }
  .paragraphs-item-m16-resources .block--resources-menu h1.block-title {
    font-size: 1.5rem;
    padding: 0.375rem 0;
  }
  .paragraphs-item-m16-resources .block--resources-menu .btn--link {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .paragraphs-item-m16-resources .block--resources-menu .btn--link::after {
    border-width: 0 2px 2px 0;
    height: 0.5rem;
    margin-top: -0.3125rem;
    right: -0.75rem;
    width: 0.5rem;
  }
  .paragraphs-item-m16-resources .view-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m16-resources .component__header {
    margin-bottom: 2.5rem;
  }
  .paragraphs-item-m16-resources .component__title > * {
    font-size: 1.75rem;
    line-height: 1.36;
  }
  .paragraphs-item-m16-resources .block--resources-menu h1.block-title {
    background-color: #4a4a4a;
    color: #FFF;
    font-size: 1.375rem;
    padding: 1rem 0.75rem 0.5rem;
    text-align: center;
  }
  .paragraphs-item-m16-resources .block--resources-menu .btn--link,
  .paragraphs-item-m16-resources .block--resources-menu .btn--close {
    display: none;
  }
  .paragraphs-item-m16-resources .views-exposed-form .views-widget-filter-field_category_tid_selective > label {
    background-color: #4a4a4a;
    font-size: 0.875rem;
    line-height: normal;
    padding: 0 0.75rem 0.875rem;
    text-align: center;
  }
}

.card {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card--v1 {
  background-color: #FFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 0.5rem;
}

.card--v1 .card__header {
  background-color: #282829;
  overflow: hidden;
}

.card--v1 .card__body {
  padding: 0.75rem 0.75rem 2.1875rem;
}

.card--v1 .card__footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 0.75rem;
}

.card--v1 .card__image img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.card--v1 .card__title a {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: normal;
  text-decoration: none;
}

.card--v1 .card__publish_date span {
  color: #E26329;
  font-size: 0.75rem;
}

.card--v1 .card__category span {
  vertical-align: middle;
}

.card--v1 .card__category span[class*="icon"] {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 1.3125rem;
  margin-top: -0.1875rem;
  width: 1.3125rem;
}

.card--v1 .card__category-name {
  font-size: 0.875rem;
  color: #7b7b7b;
}

@media screen and (min-width: 768px) {
  .card--v1 {
    flex: 1 0 calc(33.333% - 16px);
    margin: 0 0.75rem 1.5rem;
    max-width: calc(33.333% - 16px);
  }
  .card--v1:first-child, .card--v1:nth-child(3n+1) {
    margin-left: 0;
  }
  .card--v1:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .card--v1 {
    flex: 1 0 25%;
    margin: 0 0.75rem 1.5rem;
    max-width: 25%;
  }
  .component__body--full .card--v1 {
    flex: 1 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

.card--v3 {
  height: 20rem;
  margin-bottom: 1.5625rem;
  position: relative;
  perspective: 600;
  -ms-perspective: 600;
  -webkit-perspective: 600;
}

.card--v3 .card__wrapper {
  height: 100%;
  transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transform: rotateY(0deg);
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
}

.card--v3 .card__wrapper.card--flipped {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
}

.card--v3 .card__wrapper.card--flipped .card__side {
  animation: stayvisible 0.5s both;
  -webkit-animation: stayvisible 0.5s both;
  -ms-animation: donothing 0.5s;
  -ms-transition: visibility 0s linear 0.17s;
  visibility: visible;
}

.card--v3 .card__wrapper.card--flipped .card__side--front {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  visibility: hidden;
  z-index: 1;
}

.card--v3 .card__wrapper.card--flipped .card__side--back {
  position: relative;
  transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  z-index: 2;
}

.card--v3 .card__side {
  align-items: center;
  background-color: #FFF;
  backface-visibility: hidden;
  -ms-backface-visibility: visible;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
  animation: stayvisible 0.5s both;
  -webkit-animation: stayvisible 0.5s both;
  -ms-animation: donothing 0.5s;
  -ms-transition: visibility 0s linear 0.17s;
  visibility: visible;
}

.card--v3 .card__side--front {
  background: #282829 no-repeat center;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  padding: 1.25rem;
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
}

.card--v3 .card__side--front::before {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.card--v3 .card__side--front .card__group--2 {
  display: none;
}

.card--v3 .card__side--back {
  background-color: #E26329;
  left: 0;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  /* IE Hack. Halfway through the card flip, set visibility. Keep other browsers visible throughout the card flip. */
  visibility: hidden;
  z-index: -1;
}

.card--v3 .card__side--back .card__group--1 {
  padding-top: 1.125rem;
}

.card--v3 .card__title {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
}

.card--v3 .btn--primary {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: normal;
  margin-top: 0.625rem;
  min-width: auto;
  outline: none;
  padding: 0.25rem 1.375rem;
}

.card--v3 .btn--close {
  position: absolute;
  right: 0.1875rem;
  top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .card--v3 {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .card--v3 .card__side {
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
  }
  .card--v3 .card__side--front {
    padding: 1.75rem 1.875rem;
  }
  .card--v3 .card__side--front .card__group--1 {
    flex-basis: 46%;
  }
  .card--v3 .card__side--front .card__group--2 {
    display: block;
    flex-basis: 44%;
  }
  .card--v3 .card__side--back .card__group--1 {
    flex-basis: 45%;
    padding-top: 0;
  }
  .card--v3 .card__side--back .card__group--2 {
    flex-basis: 60%;
  }
  .card--v3 .card__title {
    font-size: 1.625rem;
    line-height: 1.13;
  }
  .card--v3 .card__description {
    color: #FFF;
    font-size: 0.875rem;
    line-height: normal;
    letter-spacing: normal;
  }
  .card--v3 .card__description ul {
    margin: 0;
  }
  .card--v3 .card__description li {
    margin-bottom: 1.25rem;
  }
  .card--v3 .card__description li:last-child {
    margin-bottom: 0;
  }
  .card--v3 .btn--primary {
    font-size: 0.875rem;
    margin-top: 1rem;
    padding: 0.375rem 2rem;
  }
}

@media screen and (min-width: 992px) {
  .card--v3 .card__side--front {
    padding: 1.25rem 2.5rem;
  }
  .card--v3 .card__side--back {
    padding: 2.1875rem 1.875rem 1.75rem;
  }
  .card--v3 .card__title {
    font-size: 2.25rem;
    line-height: 1;
  }
  .card--v3 .card__description {
    font-size: 1.125rem;
  }
  .card--v3 .card__description li {
    margin-bottom: 1.5625rem;
  }
  .card--v3 .btn--primary {
    font-size: 1.125rem;
    padding: 0.375rem 2rem;
  }
}

.card--v3 .resources-form.download-form {
  padding: 0.75rem 0 0;
}

.card--v3 .resources-form.download-form .mktoFormRow {
  padding: 0;
}

.card--v3 .resources-form.download-form .mktoFieldWrap {
  margin-bottom: 0.625rem;
}

.card--v3 .resources-form.download-form .mktoLabel {
  color: #FFF;
  font-size: 0.75rem;
  font-style: normal;
}

.mktoFieldWrapCheckbox > .card--v3 .resources-form.download-form .mktoLabel {
  color: #FFF;
}

.card--v3 .resources-form.download-form .mktoAsterix {
  display: none;
}

.card--v3 .resources-form.download-form .mktoField {
  font-size: 0.75rem;
  border-color: #FFF;
}

.card--v3 .resources-form.download-form select.mktoField {
  background: url("../img/icons-svg/dropdown_white.svg") 101% 5px no-repeat;
  background-size: 24px auto;
}

.card--v3 .resources-form.download-form .mktoCheckboxList label::before,
.card--v3 .resources-form.download-form .form-type-checkbox label::before {
  width: 16px;
  height: 16px;
  top: 2px;
  border: 1px solid #FFF;
  background-color: transparent;
}

.card--v3 .resources-form.download-form .mktoCheckboxList label::after,
.card--v3 .resources-form.download-form .form-type-checkbox label::after {
  background-color: #FFF;
}

.card--v3 .resources-form.download-form .mktoFieldWrapCheckbox input[type="checkbox"]:checked + label:after {
  left: 1px;
  top: 1px;
}

.card--v3 .resources-form.download-form .gdprRow {
  margin-top: 0.625rem;
}

.card--v3 .resources-form.download-form .legal-popup {
  font-size: 0.6875rem;
}

.card--v3 .resources-form.download-form .legal-popup .content-legal {
  background-color: #282829;
}

.card--v3 .resources-form.download-form .legal-popup .content-legal::before {
  border-top-color: #282829;
}

.card--v3 .resources-form.download-form .legal-popup b,
.card--v3 .resources-form.download-form .legal-popup a {
  color: #FFF;
  font-size: 0.6875rem;
}

.card--v3 .resources-form.download-form .mktoButtonRow {
  padding: 0;
}

.card--v3 .resources-form.download-form .mktoButton {
  background-color: #FFF;
  border: none;
  box-shadow: none;
  color: #E26329;
  font-size: 0.625rem;
  margin-top: 0.75rem;
  padding: 0.4375rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .card--v3 .resources-form.download-form {
    padding: 0;
  }
  .card--v3 .resources-form.download-form .gdprRow {
    margin-bottom: -3.75rem;
    margin-top: -0.25rem;
    width: 50% !important;
  }
  .card--v3 .resources-form.download-form .mktoFormRow {
    padding: 0 0.6875rem;
  }
  .card--v3 .resources-form.download-form .mktoFieldWrap {
    margin-bottom: 1.375rem;
  }
  .card--v3 .resources-form.download-form .mktoLabel,
  .card--v3 .resources-form.download-form .mktoField {
    font-size: 0.875rem;
  }
  .card--v3 .resources-form.download-form select.mktoField {
    background-position: 104% 5px;
  }
  .card--v3 .resources-form.download-form .mktoButtonRow {
    padding: 0 0.75rem;
  }
  .card--v3 .resources-form.download-form .mktoButton {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    padding: 0.875rem 1.25rem 0.8125rem;
  }
}

@keyframes stayvisible {
  from {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}

@-webkit-keyframes stayvisible {
  from {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}

@-ms-keyframes donothing {}.paragraphs-item-m16-latest .content {
  position: relative;
}

.paragraphs-item-m16-latest .content:before {
  content: "";
  display: table;
}

.paragraphs-item-m16-latest .content:after {
  content: "";
  display: table;
  clear: both;
}

.paragraphs-item-m16-latest .view-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.paragraphs-item-m16-latest .more-link a {
  height: 2.375rem;
  max-width: 24.0625rem;
  min-width: auto;
}

.paragraphs-item-m16-latest .field-name-field-para-title {
  margin: 0 0 2.5rem;
}

.paragraphs-item-m16-latest .field-name-field-para-title > * {
  color: #282829;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.38;
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m16-latest .view-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .paragraphs-item-m16-latest .field-name-field-para-title > * {
    font-size: 1.5rem;
    line-height: 1.58;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m16-latest .field-name-field-para-title > * {
    font-size: 1.75rem;
    line-height: 1.36;
  }
}

.paragraphs-item-m17-slider-3 {
  text-align: center;
}

.paragraphs-item-m17-slider-3 .slick-list {
  max-width: 1044px;
  margin: 0 auto;
}

.paragraphs-item-m17-slider-3 .slick-dots {
  position: relative;
  transform: translateY(-15%);
  list-style: none;
  margin: 47px auto 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.paragraphs-item-m17-slider-3 .slick-dots li {
  display: inline-block;
}

.paragraphs-item-m17-slider-3 .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0;
  text-indent: -9999px;
  background-color: #282829;
  height: 15px;
  width: 15px;
  border: 0;
  outline: 0;
  margin-left: 10px;
  border-radius: 50%;
}

.paragraphs-item-m17-slider-3 .slick-dots li.slick-active button {
  background-color: #E26329;
}

.paragraphs-item-m17-slider-3 .field-name-field-para-title {
  margin-bottom: 40px;
}

.paragraphs-item-m17-slider-3 .field-name-field-para-title p, .paragraphs-item-m17-slider-3 .field-name-field-para-title h3 {
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -1.5px;
  margin: 0 0 1em;
}

.paragraphs-item-m17-slider-3 .field-name-field-para-image {
  margin-top: 41px;
}

.paragraphs-item-m17-slider-3 .field-name-field-para-image img {
  outline: 0;
}

.paragraphs-item-m18-text-quotes {
  width: 100%;
}

.paragraphs-item-m18-text-quotes > .content {
  max-width: 1200px;
  margin: 1em auto;
}

.paragraphs-item-m18-text-quotes .field-name-field-para-title {
  text-align: center;
}

.paragraphs-item-m18-text-quotes .field-name-field-para-title p, .paragraphs-item-m18-text-quotes .field-name-field-para-title .span_p {
  font-size: 56px;
  font-weight: lighter;
  line-height: 120%;
  margin: 20px 0;
}

.paragraphs-item-m18-text-quotes .field-collection-container {
  border-bottom: 0;
}

.paragraphs-item-m18-text-quotes .field-collection-view {
  padding: 0;
  margin: 0;
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .content {
    display: inline-block;
    padding: 0 32px;
  }
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-quote {
  width: 40%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-quote {
    width: 100%;
  }
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-quote p {
  quotes: "\201C" "\201D";
  position: relative;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-quote p::before {
  content: open-quote;
  position: absolute;
  right: 100%;
  top: -20px;
  margin-right: 20px;
  font-size: 180px;
  font-weight: bold;
  line-height: 100%;
  color: #E26329;
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-body {
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-body {
    width: 100%;
    margin-bottom: 32px;
    padding-right: 0;
  }
}

.paragraphs-item-m18-text-quotes .field-collection-item-field-para-content .field-name-field-para-body p {
  font-size: 20px;
  font-weight: lighter;
}

.paragraphs-item-m19-image {
  max-width: 1200px;
  text-align: center;
}

.paragraphs-item-m19-image .field-name-field-para-image {
  display: inline-block;
  margin: 0 auto;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register {
  padding: 0;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form, .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content {
  width: 100%;
  display: inline-flex;
  min-height: 326px;
}

@media screen and (min-width: 768px) {
  .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form, .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content {
    width: 50%;
    min-height: 641px;
  }
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background-image: url("../images/bg_black.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2em;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-title,
.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-body {
  max-width: 382px;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-title {
  max-width: 382px;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-title h2 {
  font-size: 32px;
  line-height: 1.13;
  font-weight: 700;
  margin: 0 0 1em;
}

@media screen and (min-width: 768px) {
  .entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-title h2 {
    font-size: 37px;
    line-height: 1.18;
  }
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .outer-content .field-name-field-para-body p {
  font-size: 20px;
  font-weight: 300;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form {
    float: right;
  }
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right {
  margin-bottom: 0;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .block-title {
  padding: 20px 32px 0;
  color: #E26329;
  text-align: left;
  background: transparent;
  border-radius: 0;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .block-title span {
  display: none;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .block-title small {
  font-size: 100%;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .block-title br {
  display: none;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content {
  padding: 2em;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content select, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content input {
  border: 0;
  border-bottom: 4px solid rgba(182, 182, 182, 0.5);
  color: #828282;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content label {
  font-size: 18px;
  font-style: italic;
  color: #282829;
  font-weight: 400;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .btn-container .btn {
  display: inline-block;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .legal-popup {
  font-size: 14px;
  color: #282829;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .mktoFieldDescriptor.mktoFormCol .mktoLogicalField.mktoValid label {
  padding-right: 0;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .mktoFieldDescriptor.mktoFormCol .mktoLogicalField.mktoValid label:after {
  background-color: #E26329;
  width: 14px;
  height: 14px;
  left: 4px;
  top: 6px;
}

.entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .mktoFieldDescriptor.mktoFormCol .mktoLogicalField.mktoInvalid label:after {
  background-color: #E26329;
}

.paragraphs-item-m21-highlighted-cards .component__header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.paragraphs-item-m21-highlighted-cards .component__title > * {
  color: #282829;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.11;
  margin: 0;
}

.paragraphs-item-m21-highlighted-cards .field-name-field-m21-card-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m21-highlighted-cards .component__header {
    margin-bottom: 1.875rem;
  }
  .paragraphs-item-m21-highlighted-cards .component__title > * {
    font-size: 1.625rem;
    line-height: 1.85;
  }
  .paragraphs-item-m21-highlighted-cards .field-name-field-m21-card-items {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m21-highlighted-cards .component__header {
    margin-bottom: 3.125rem;
  }
  .paragraphs-item-m21-highlighted-cards .component__title > * {
    font-size: 2.375rem;
    line-height: 1.03;
  }
}

.paragraphs-item-m21-highlighted-cards .card--v4 {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9375rem;
  padding: 0;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__header {
  overflow: hidden;
  position: relative;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__body {
  background-color: #FFF;
  flex: 1 1 auto;
  margin-top: -0.9375rem;
  padding: 1.125rem 1.5rem;
  width: 100%;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__image {
  text-align: center;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__image img {
  height: 2.375rem;
  width: auto;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__description > *:last-child {
  margin-bottom: 0;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__description > p {
  color: #282829;
  font-size: 0.875rem;
  line-height: normal;
  margin-bottom: 0.5rem;
  text-align: center;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__description small {
  display: inline-block;
  font-size: 0.5625rem;
  line-height: normal;
}

.paragraphs-item-m21-highlighted-cards .card--v4 .card__description a:hover,
.paragraphs-item-m21-highlighted-cards .card--v4 .card__description a:focus {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .paragraphs-item-m21-highlighted-cards .card--v4 {
    margin: 0 0.75rem 1.5rem;
    max-width: 33.333%;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4:first-child, .paragraphs-item-m21-highlighted-cards .card--v4:nth-child(3n+1) {
    margin-left: 0;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4:nth-child(3n) {
    margin-right: 0;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__body {
    margin-top: -3rem;
    padding: 3.4375rem 1.25rem 0.9375rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__image img {
    height: 5.3125rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__description > p {
    font-size: 1.125rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__description small {
    font-size: 0.625rem;
  }
}

@media screen and (min-width: 992px) {
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__body {
    margin-top: -4.6875rem;
    padding: 6.25rem 2.5rem 1.875rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__image img {
    height: 9.125rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__description > p {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }
  .paragraphs-item-m21-highlighted-cards .card--v4 .card__description small {
    font-size: 1rem;
  }
}

.paragraphs-item-download-cheatsheet-with-form.show-form .heading .image {
  background: black;
  transition: all .5s;
}

.paragraphs-item-download-cheatsheet-with-form.show-form .heading .image .first {
  display: none;
  opacity: 0;
}

.paragraphs-item-download-cheatsheet-with-form.show-form .heading .image .second {
  display: block;
  opacity: 1;
}

.paragraphs-item-download-cheatsheet-with-form.show-form .card-wrapper {
  transform: rotateY(180deg) rotateX(0deg);
}

.paragraphs-item-download-cheatsheet-with-form .card-wrapper {
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.5s;
  transform-style: preserve-3d;
  min-height: 20rem;
}

.paragraphs-item-download-cheatsheet-with-form > .content {
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  z-index: 0;
  overflow: hidden;
  position: relative;
  perspective: 600px;
}

.paragraphs-item-download-cheatsheet-with-form > .content:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url("../images/bg/bg-download-cheatsheet.png") no-repeat top right;
  background-size: contain;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.paragraphs-item-download-cheatsheet-with-form .heading {
  display: flex;
  align-items: stretch;
}

.paragraphs-item-download-cheatsheet-with-form .heading .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 96px;
  background: white;
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 960px) {
  .paragraphs-item-download-cheatsheet-with-form .heading .image {
    min-width: 145px;
  }
}

.paragraphs-item-download-cheatsheet-with-form .heading .image .first {
  opacity: 1;
}

.paragraphs-item-download-cheatsheet-with-form .heading .image .second {
  display: none;
  opacity: 0;
}

.paragraphs-item-download-cheatsheet-with-form .heading .image img {
  width: 72px;
  height: auto;
  transition: all .5s;
}

.paragraphs-item-download-cheatsheet-with-form .heading .title {
  color: white;
  font-size: 22px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1.833334px;
  text-transform: uppercase;
  padding: 5px 5px 5px 5%;
  background: #FA8447;
  flex: 1;
  display: flex;
  align-items: center;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: inherit;
  align-items: center;
  background: #eaeaea;
  padding: 15px;
  transform: rotateX(0deg);
  backface-visibility: hidden;
}

@media only screen and (min-width: 48em) {
  .paragraphs-item-download-cheatsheet-with-form .content-wrapper {
    flex-direction: row;
  }
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper > div {
  flex-grow: 2;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-image {
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

@media only screen and (min-width: 48em) {
  .paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-image {
    width: 47.44%;
  }
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-image img {
  display: inline-block;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .content-text {
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .paragraphs-item-download-cheatsheet-with-form .content-wrapper .content-text {
    width: 52.56%;
  }
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-body {
  margin-bottom: 15px;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-body p {
  font-weight: 400;
  font-size: 18px;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-body p:last-child {
  margin: 0;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-name-field-cheatsheet-body p strong {
  font-weight: 700;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
  background-color: #E26329;
  box-shadow: 0 3px 0 #B74504;
  border: 1px solid #B74504;
  border-radius: 3.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 8px 14px;
  margin: 0 0 5px;
  line-height: 1.1;
}

@media only screen and (min-width: 48em) {
  .paragraphs-item-download-cheatsheet-with-form .content-wrapper .trigger {
    max-width: 264px;
  }
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .trigger:hover {
  background-color: #EA8E5A;
  text-decoration: none;
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .trigger:active {
  box-shadow: 0 0 0 #B74504;
  transform: translateY(3px);
}

.paragraphs-item-download-cheatsheet-with-form .content-wrapper .field-label {
  display: none;
}

.paragraphs-item-download-cheatsheet-with-form .form-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: rotateY(180deg) translateY(-50%) rotateX(0deg);
  margin: 0 auto;
  padding: 15px;
  backface-visibility: hidden;
}

body.front.not-logged-in {
  padding-top: 0;
}

body.front.logged-in {
  padding-top: 35px;
}

body.front.logged-in .l-header {
  background: rgba(0, 0, 0, 0.5);
}

body.header-transparent .l-header {
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 500ms;
}

@media (min-width: 768px) {
  body.header-transparent .l-header {
    background: transparent;
  }
}

body.header-transparent .l-header .header-phone {
  color: white;
  transition: color 400ms;
}

body.header-transparent .l-header-region {
  background: transparent;
}

body.header-transparent .l-header-region.login-button .request-password {
  background: transparent;
  transition: background-color 400ms, color 400ms;
}

body.header-transparent .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language {
  background: rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  body.header-transparent .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language {
    background: transparent;
  }
}

body.header-transparent .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language:hover {
  background: rgba(0, 0, 0, 0.5);
}

body.header-transparent .l-header-region .block-lang-dropdown-language #lang_dropdown_form_language #lang-dropdown-select-language optgroup {
  background: white;
}

@media (min-width: 960px) {
  body.header-transparent .l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single {
    color: white;
    transition: color 400ms;
  }
}

@media (min-width: 960px) {
  body.header-transparent .l-header-region .block-lang-dropdown-language .chosen-container-single .chosen-single span:after {
    background: url("../images/icons-svg/arrow-white-down.svg") no-repeat center;
    transition: background 400ms;
  }
}

body.header-transparent .l-header-region .block-block-18-copy a {
  color: white;
}

@media (min-width: 881px) {
  body.header-transparent .l-header-region .block-block-18-copy a {
    color: white;
    background: transparent;
    transition: background-color 400ms, color 400ms;
  }
}

@media (min-width: 881px) {
  body.header-transparent .l-header-region .block-block-18-copy a:active, body.header-transparent .l-header-region .block-block-18-copy a:hover {
    background: #E26329;
  }
}

body.header-transparent .l-header-region .pull-menu.active span {
  background: transparent;
}

body.header-transparent .l-header-region .pull-menu span {
  color: white;
  transition: none;
  background: white;
}

body.header-transparent .l-header-region .pull-menu span:before, body.header-transparent .l-header-region .pull-menu span:after {
  background-color: white;
  transition: background-color 400ms;
}

@media (min-width: 881px) {
  body.header-transparent .l-header-region .menu-container .block-block-18 a {
    color: white;
    background: transparent;
    transition: background-color 400ms, color 400ms;
  }
}

@media (min-width: 881px) {
  body.header-transparent .l-header-region .menu-container .block-block-18 a:active, body.header-transparent .l-header-region .menu-container .block-block-18 a:hover {
    background: #E26329;
  }
}

body.header-transparent .l-header-region .request-password {
  background: transparent;
}

@media (min-width: 768px) {
  body.header-transparent .l-header-region .request-password {
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 960px) {
  body.header-transparent .l-header-region .request-password {
    background: transparent;
  }
}

body.header-transparent .l-header-region .request-password span {
  color: white;
  transition: color 400ms;
}

@media (min-width: 881px) {
  body.header-transparent .block-system-main-menu > ul.menu > li > a {
    color: white;
  }
}

.final-step-page {
  margin-top: -20px;
}

@media (min-width: 960px) {
  .final-step-page {
    margin-top: 0;
  }
}

.thank-you-node-page .paragraphs-items > div:not(.component-thank-you-heading) {
  margin-bottom: 20px;
}

.thank-you-node-page .paragraphs-items > div:last-child {
  margin-bottom: 40px;
}

.thank-you-node-page .paragraphs-items > div.position--overlap-on-top {
  margin-bottom: 10px;
}

.thank-you-node-page .paragraphs-items > div.component-thank-you-cta-slider {
  margin-top: 25px;
  margin-bottom: 40px;
}

.node-type-resource .only-logo-header + main .header-background.landing .wrapper {
  padding-top: 58px;
}

@media (min-width: 960px) {
  .node-type-resource .only-logo-header + main .header-background.landing .wrapper {
    padding-top: 134px;
  }
}

.node-type-resource .section-resource {
  overflow: hidden;
}

.node-type-resource .section-resource .header-background:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.node-type-resource .section-resource .header-background > .container {
  position: relative;
}

.node-type-resource .section-resource .header-background > .container,
.node-type-resource .section-resource .header-background > .content {
  z-index: 2;
}

.node-type-resource .container {
  max-width: 100%;
}

@media (min-width: 1230px) {
  .node-type-resource .container {
    max-width: 1200px;
  }
}

.node-type-resource .as-landing-page .node-resource .sub-title {
  display: none;
}

.node-type-resource .header-background.landing {
  display: flex;
  align-items: center;
  min-height: 352px;
  width: 100%;
  height: auto;
}

.node-type-resource .header-background.landing .wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .wrapper {
    height: 100%;
    flex-wrap: nowrap;
  }
}

.node-type-resource .header-background.landing .wrapper * {
  text-align: center;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .wrapper * {
    text-align: left;
  }
}

.node-type-resource .header-background.landing .wrapper *.title-wrapper {
  width: 100%;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .wrapper *.title-wrapper {
    width: 60%;
  }
}

.node-type-resource .header-background.landing .wrapper *.form-wrapper {
  width: 100%;
  padding: 14px 6px 4px;
  background: #fff;
}

.node-type-resource .header-background.landing .wrapper *.form-wrapper * {
  text-align: left;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .wrapper *.form-wrapper {
    max-width: 40%;
  }
}

.node-type-resource .header-background.landing .wrapper *.form-wrapper .form-wrapper-title {
  font-size: 20px;
  text-align: center;
}

.node-type-resource .header-background.landing .wrapper .form-placeholder {
  padding-top: 1.6rem;
  padding-bottom: 0.5rem;
}

.node-type-resource .header-background.landing .wrapper .form-placeholder__item {
  width: 50%;
}

.node-type-resource .header-background.landing .title-wrapper {
  color: white;
  margin-bottom: 30px;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .title-wrapper {
    padding-right: 45px;
    margin-bottom: 5px;
  }
}

.node-type-resource .header-background.landing .title-wrapper .title-landing {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.007734371px;
  padding: 0;
  margin: 0 0 7px;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .title-wrapper .title-landing {
    font-size: 75px;
    line-height: 62px;
  }
}

.node-type-resource .header-background.landing .title-wrapper .title-landing p {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.007734371px;
}

@media (min-width: 960px) {
  .node-type-resource .header-background.landing .title-wrapper .title-landing p {
    font-size: 75px;
    line-height: 62px;
  }
}

.node-type-resource .header-background.landing .title-wrapper .sub-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.0028875px;
  background: transparent;
  padding: 0;
}

.node-type-resource .header-background.landing .form-wrapper {
  display: inline-block;
}

.node-type-resource .form-placeholder__item:first-child, .node-type-resource .form-placeholder__item:last-child {
  display: none;
}

.download-node-page .paragraphs-items > div {
  margin-bottom: 30px;
}

@media (min-width: 960px) {
  .download-node-page .paragraphs-items > div {
    margin-bottom: 64px;
  }
}

.download-node-page .paragraphs-items > div:last-child {
  margin-bottom: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1) {
  margin-top: 60px !important;
  margin-bottom: 76px !important;
}

@media screen and (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1) .container, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1) .container {
    display: flex;
    flex-direction: column-reverse;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1) .field-name-field-para-image-body, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(1) .field-name-field-para-image-body {
    margin-bottom: 30px;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2) {
  margin-bottom: 30px !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2) .field-collection-container, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2) .field-collection-container {
  width: 100%;
}

@media screen and (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2) .field-collection-item-field-para-content .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(2) .field-collection-item-field-para-content .content {
    padding: 0;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) {
  padding: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .content {
  max-width: none !important;
  padding: 0 !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-container {
  width: 100%;
  flex-basis: 100%;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-view .entity-field-collection-item {
  float: none;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-item-field-para-content .content {
  display: block;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-item-field-para-content .field-name-field-para-body {
  padding-right: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) {
  margin-bottom: 100px !important;
}

@media (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) > .content {
    text-align: left;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-name-field-para-image {
    margin-top: 40px;
    text-align: center;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) {
  margin-bottom: 80px !important;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../img/covid/backg-call-center-bol.jpg);
  background-color: #ebe0d5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: center center;
}

@media (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) {
    background-image: none;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-item-field-para-content .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-collection-item-field-para-content .content {
    padding: 0;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .content {
  max-width: 860px !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-name-field-para-title, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-name-field-para-title,
body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-container,
body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-collection-container {
  width: 100%;
  padding-left: 160px;
}

@media (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-name-field-para-title, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-name-field-para-title,
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-container,
  body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) .field-collection-container {
    padding-left: 0;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) p:last-of-type, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(4) p:last-of-type {
  margin-bottom: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) {
  margin-bottom: 70px !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) .field-collection-container, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-container {
  width: 100%;
}

@media (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) .field-collection-item-field-para-content .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field-collection-item-field-para-content .content {
    padding: 0;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) .field, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) .field {
  width: 100%;
  padding: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) ul, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-left: 0;
  list-style: none;
  margin-left: -10px;
  margin-right: -10px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li {
  margin-top: 0;
  flex: auto;
  padding: 0 10px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li a, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li a {
  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
  text-decoration: none;
  background: #E26329;
  border-radius: 3px;
  opacity: 1;
  transition: opacity 0.15s ease;
  justify-content: space-between;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li a:after, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li a:after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABGdBTUEAALGPC/xhBQAAANdJREFUKBWlUrENwkAM/EeUqdiAjo46jIGUKhsgMQJEggEYixGAJhVtZnjuXjGyYueFhKWL7bPPTqyEULCUUgUMgGevWNDmElQtgpXqOyDeqPy3EIMu4ys86APQj4TnnjIWRRHSH9m8RHEN3IC7NCr/Zkwh3Am4xhjPFJNngdbkxHmg9t0oZXB5c1HsCTkAfAsMs+KpEPkO0DeoXDGaOoDGb82GuCEhOf1CJyreI+54HMWZkNc2BtHWkA4xt9lptdRfYnntenILuyaE2pAQlX5PHlhbrwd8AMQcDIWtsxr9AAAAAElFTkSuQmCC");
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li a:hover, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li a:hover, body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li a:active, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li a:active, body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(7) li a:focus, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(5) li a:focus {
  opacity: 0.8;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(8) .container > div, body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .container > div {
  float: none !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(8) {
  margin-bottom: 100px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) {
  margin-bottom: 150px !important;
}

@media screen and (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) {
    margin-bottom: 100px !important;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .container > div.pull-right {
  padding: 0 15px !important;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) h2 {
  margin-bottom: 38px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .view-content {
  border: 1px solid #D8D8D8;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-row {
  border-bottom: 1px solid #D8D8D8;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-row:last-child {
  border-bottom: none;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-row.expand .views-field-title a:after {
  transform: translateY(-50%) rotate(180deg);
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-row.expand .views-field-body {
  display: block;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-title a,
body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-body {
  padding: 16px 44px 16px 20px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-title a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.15s ease;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-title a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAOCAYAAADNGCeJAAAABGdBTUEAALGPC/xhBQAAAT5JREFUOBFjYEAD////Z0QTwslFV4ui0Xvik+r/DP+1uCVl4laHMf7FaQpQwmfikyKgYdam+jLhDY6Mf0Bq4YaBDfr/rwVsACPjMnwGggz69/9fL8QAxnUwA8GGoRgENg1kDXYDkQ2CK2WAGMjoM+lJyL9//1bDJFBoNAOxGQRTz8TA2M3YsP8/y+mLT1YCwyoIJoFCQw38/vxpPsxrKPJADiMj4xUuRhYnsDcJGcjIwHTuP8M/I3RDQHyYQavzJF/DI4CQgYQMAhuMrIgUA5FdBDMD7jKYADEGYjMIw2UwA9Nm/md9+v3JfWCkSMPE4DQj4w8WFnbdTdlid+BiUAaGy2AKcrf9Z79368ldFAOBBnEyMRuuzZW6AVOHTOM0DKQIxUACBoHUM4EIXGCyF+NPJTUZZcb/jKfwuQimHwCae63t2UstawAAAABJRU5ErkJggg==");
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-title a:hover {
  background: #f3f3f3;
}


body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-body {
  display: none;
  font-size: 16px;
  background: rgba(181, 79, 34, 0.17);
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(9) .views-field-body p:last-child {
  margin-bottom: 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) {
  margin-bottom: 150px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(../img/covid/covid-video-section-bg.png);
  background-color: #ebe0d5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: center center;
}

@media (max-width: 767px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) {
    margin-bottom: 100px;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) .field-collection-item-field-para-content .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-item-field-para-content .content {
    padding: 0;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) p:last-child, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) p:last-child {
  position: relative;
  border: 6px solid #fff;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) .video-player, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) img, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) > .content, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) > .content {
    position: relative;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) .field-name-field-para-title, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-name-field-para-title,
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) .field-collection-container,
  body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-container {
    width: 40%;
    flex-basis: 40%;
    padding-right: 30px;
  }
  
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) .field-collection-container,
  body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) .field-collection-container {
    min-height: 192px;
  }
  body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(10) p:last-child, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(6) p:last-child {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60%;
    margin-bottom: 0;
    overflow: hidden;
  }
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm {
  margin: 15px 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm table, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm table {
  position: relative;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm table .scroll, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm table .scroll {
  display: table;
  width: 100%;
  position: absolute;
  border: 1px solid;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm tbody tr:nth-child(odd), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm tbody tr:nth-child(odd) {
  background-color: transparent;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody tr, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody tr {
  text-transform: capitalize;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody tr a, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody tr a {
  position: relative;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th {
  background: #f5f5f5;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(1), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(1), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(1), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(1) {
  width: 198px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(2), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(2), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(2), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(2) {
  width: 215px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(3), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(3), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(3), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(3) {
  width: 159px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(4), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(4), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(4), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(4) {
  width: 139px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(5), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(5), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(5), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(5) {
  width: 211px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(6), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(6) {
  width: 192px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(7), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(7), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(7), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(7) {
  width: 126px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(8), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody th:nth-child(8), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(8), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm .table tbody td:nth-child(8) {
  width: 126px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table {
  position: relative;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table .scrol, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table .scrol {
  display: table;
  width: 100%;
  position: absolute;
  border: 1px solid;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(1), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(1), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(1), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(1) {
  width: 201px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(2), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(2), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(2), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(2) {
  width: 177px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(3), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(3), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(3), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(3) {
  width: 317px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(4), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(4), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(4), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(4) {
  width: 317px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(5), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(5), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(5), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(5) {
  width: 98px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table th:nth-child(6), body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(6), body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) #table-fm-chains table td:nth-child(6) {
  width: 160px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) p.disclaimer span, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) p.disclaimer span {
  color: #ff0000;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .helper, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .helper {
  padding: 0 15px;
  color: #f00;
  font-weight: bold;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .empty, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .empty {
  padding: 0 15px;
  color: #f00;
  font-weight: bold;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element {
  display: flex;
  flex-direction: column;
  width: 20%;
  margin: 0 15px 0 0;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element label, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element label {
  margin-bottom: 6px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element label span, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element label span {
  color: #ff0000;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element select, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element select {
  flex: auto;
  padding: 6px 4px;
  margin-top: 6px;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 0.8125rem;
  color: #333;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element button, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element button {
  background-color: #4A90E2;
  color: #fff;
  font-weight: 700;
  margin-top: 30px;
  padding: 8px;
  width: 60%;
  text-decoration: none;
  border: none;
  line-height: 14px;
  font-size: 12px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element button:focus, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element button:focus {
  outline: none;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single {
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  line-height: 24px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single div b, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single div b {
  background-position: 0 8px;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container {
  font-size: 15px;
  font-weight: 400;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container .chosen-results li.active-result, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container .chosen-results li.active-result {
  margin-bottom: 0 !important;
  font-size: 14px !important;
  text-transform: capitalize;
}

body:not(.lang-zh-cn) .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single, body.lang-zh-cn .view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item:nth-of-type(3) .form-FM .form-element .chosen-container-single .chosen-single {
  height: 30px;
  line-height: 27px;
}

.view-mode-covid_19 {
  background: #fff;
}

.view-mode-covid_19 .node-title {
  display: none;
}

.view-mode-covid_19 .content {
  max-width: 1300px !important;
  width: 100%;
  margin: 0 auto;
}

.view-mode-covid_19 .entity-paragraphs-item {
  padding: 0 15px;
}

.view-mode-covid_19 .entity-paragraphs-item h2, .view-mode-covid_19 .entity-paragraphs-item p, .view-mode-covid_19 .entity-paragraphs-item li {
  margin-bottom: 22px !important;
}

.view-mode-covid_19 .entity-paragraphs-item h2 {
  font-size: 28px !important;
  text-align: left;
  line-height: 1.3;
}

.view-mode-covid_19 .entity-paragraphs-item p, .view-mode-covid_19 .entity-paragraphs-item li {
  font-size: 18px !important;
}

.view-mode-covid_19 .entity-paragraphs-item li {
  margin-top: 0;
}

.view-mode-covid_19 .entity-paragraphs-item .field-collection-container {
  margin-bottom: 0;
}

.view-mode-covid_19 .entity-paragraphs-item .field-collection-container p:last-of-type,
.view-mode-covid_19 .entity-paragraphs-item .field-collection-container li:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .view-mode-covid_19 .entity-paragraphs-item .field-collection-container {
    width: 60%;
    flex-basis: 60%;
  }
  .view-mode-covid_19 .entity-paragraphs-item .field-name-field-para-image {
    width: 40%;
    flex-basis: 40%;
  }
}

.view-mode-covid_19 .entity-paragraphs-item .field-name-field-para-image img {
  display: inline-block;
}

.view-mode-covid_19 .m5_banner h2 {
  font-size: 48px !important;
  line-height: 1.1 !important;
}

@media (min-width: 992px) {
  .view-mode-covid_19 .m5_banner h2 {
    font-size: 64px !important;
  }
}

.view-mode-covid_19 .m5_banner .entity-paragraphs-item {
  padding: 0;
}

.view-mode-covid_19 .m5_banner .field-name-field-para-subtitle {
  flex-direction: column;
}

.view-mode-covid_19 .field-collection-view {
  margin: 0;
  padding: 0;
}

.view-mode-covid_19 > .paragraphs-items > .field > .entity-paragraphs-item .content {
  max-width: none;
}

.view-covid-19-news {
  max-width: 1300px;
  margin: 0 auto 46px;
}

.view-covid-19-news .block-title {
  margin-bottom: 4px;
  padding: 0 25px;
}

.view-covid-19-news .view-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.view-covid-19-news .views-row {
  display: flex;
  width: 100%;
  margin: 11px;
  padding: 15px 10px;
  background: #EAEAEA;
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .view-covid-19-news .views-row {
    width: calc(33% - 22px);
  }
}

@media (min-width: 1024px) {
  .view-covid-19-news .views-row {
    width: calc(25% - 22px);
  }
}

.view-covid-19-news .views-field-nothing,
.view-covid-19-news .views-field-nothing .field-content {
  display: flex;
  width: 100%;
}

.view-covid-19-news .news-wrapp {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.view-covid-19-news .views-field-created {
  width: 70px;
  margin-right: 8px;
  padding-right: 6px;
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border-right: 1px solid #4a4a4a;
}

.view-covid-19-news .views-field-created span {
  display: block;
  font-size: 11px;
}

.view-covid-19-news .views-field-title {
  flex: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.view-covid-19-news .views-field-title a {
  color: #E26329;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.view-covid-19-news .views-field-title a:hover {
  opacity: 0.8;
}

.covid-link-chat {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  transition: all 0.15s ease;
}

.covid-link-chat:hover {
  color: #fff;
  text-decoration: none;
}

.covid-link-chat span:before, .covid-link-chat:after {
  content: '';
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.covid-link-messenger {
  background: #006dff;
}

.covid-link-messenger:hover {
  background: rgba(0, 109, 255, 0.8);
}

.covid-link-messenger span:before, .covid-link-messenger:after {
  background-image: url(../img/covid/messenger-icon.svg);
}

.covid-link-whatsapp {
  background: #25b33d;
}

.covid-link-whatsapp:hover {
  background: rgba(37, 179, 61, 0.8);
}

.covid-link-whatsapp span:before, .covid-link-whatsapp:after {
  background-image: url(../img/covid/whatsapp-icon.svg);
}

.covid-header-links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: -24px;
  text-align: center;
}

@media screen and (min-width: 40em) {
  .covid-header-links {
    flex-direction: row;
    padding-top: 12px;
  }
}

.component_home_slider .covid-header-links {
  margin: 24px -12px -24px;
}

.covid-header-link {
  margin: 0 12px 24px;
  padding: 11px 22px;
  font-size: 13px;
  border-radius: 2px;
}

.covid-header-link:hover {
  text-decoration: none;
  color: #fff;
}

.covid-header-link:after {
  top: -14px;
  right: -12px;
}

.covid-header-link.primary-button, .l-footer-columns .covid-header-link.footer-contact-link, .paragraphs-item-m1-header > .content-wrapper .covid-header-link.field-name-field-para-cta, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .covid-header-link.field-name-field-para-cta, .paragraphs-item-m9-text-image-cta .covid-header-link.field-name-field-para-cta, .m9-v2-base .covid-header-link.field-name-field-para-cta, .paragraphs-item-m9-text-image-cta-v2 .covid-header-link.field-name-field-para-cta, .paragraphs-item-m11-slider-2 .covid-header-link.field-name-field-link-button, .paragraphs-item-m14-suggestion .block--suggestion .block-footer .covid-header-link.text-content, .paragraphs-item-m16-resources .covid-header-link.more-link, .paragraphs-item-m16-latest .covid-header-link.more-link, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .covid-header-link.btn-container {
  text-transform: uppercase;
  background: #E26329;
}

.covid-header-link.primary-button:hover, .l-footer-columns .covid-header-link.footer-contact-link:hover, .paragraphs-item-m1-header > .content-wrapper .covid-header-link.field-name-field-para-cta:hover, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .covid-header-link.field-name-field-para-cta:hover, .paragraphs-item-m9-text-image-cta .covid-header-link.field-name-field-para-cta:hover, .m9-v2-base .covid-header-link.field-name-field-para-cta:hover, .paragraphs-item-m9-text-image-cta-v2 .covid-header-link.field-name-field-para-cta:hover, .paragraphs-item-m11-slider-2 .covid-header-link.field-name-field-link-button:hover, .paragraphs-item-m14-suggestion .block--suggestion .block-footer .covid-header-link.text-content:hover, .paragraphs-item-m16-resources .covid-header-link.more-link:hover, .paragraphs-item-m16-latest .covid-header-link.more-link:hover, .entity.entity-paragraphs-item.paragraphs-item-m20-register .col-xs-12.col-form .marketo-form-right .content .covid-header-link.btn-container:hover {
  background: #EA8E5A;
}

.covid-header-link.covid-link-messenger:after {
  width: 26px;
  height: 26px;
}

.covid-header-link.covid-link-whatsapp:after {
  width: 26px;
  height: 27px;
}

.covid-links-chat-header {
  text-align: center;
  font-size: 20px;
  margin-bottom: -10px;
  margin-top: 40px;
}

.covid-links-chat-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-bottom: 50px;
}

.covid-links-chat-link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  padding: 18px;
}

.covid-links-chat-link span {
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  font-size: 20px;
}

.covid-links-chat-link span:before {
  top: 45%;
  transform: translateY(-50%);
}

.covid-links-chat-link.covid-link-messenger {
  justify-content: flex-start;
}

.covid-links-chat-link.covid-link-messenger span {
  padding-right: 115px;
  padding-left: 62px;
  text-align: left;
}

.covid-links-chat-link.covid-link-messenger span:before {
  right: 0;
  margin-left: 22px;
  width: 93px;
  height: 93px;
}

.covid-links-chat-link.covid-link-whatsapp {
  justify-content: flex-end;
}

.covid-links-chat-link.covid-link-whatsapp span {
  padding-right: 62px;
  padding-left: 115px;
  text-align: right;
}

.covid-links-chat-link.covid-link-whatsapp span:before {
  left: 0;
  margin-right: 22px;
  width: 93px;
  height: 96px;
}

/* --------- ESTILOS NUEVOS Y SOBRE ESCRITOS -------- */
.l-header .login-button i {
  font-style: normal;
}

.l-header .block-block-18 {
  margin-right: 15px;
  top: 60px;
}

.l-header .block-block-18 p a {
  display: inline-block;
  width: auto;
  padding: 4px 13px;
}

.l-header .l-header-region {
  width: auto;
  position: absolute;
}

.l-header .l-header-region .block-menu {
  max-width: none;
}

.menu-container {
  float: right;
}

.menu-container .header-phone {
  display: none;
}

.block-system-main-menu > ul.menu ul.menu {
  right: auto;
  left: 100%;
  margin-left: -442px;
  padding: 15px 0;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.pull-menu {
  width: 35px;
  height: 28px;
  display: inline-block;
  position: absolute;
  top: 65px;
  right: 15px;
  z-index: 97;
  border-radius: 3px;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
}

.pull-menu.close-menu {
  position: absolute;
  top: 35px;
  left: -300px;
  right: inherit;
  transition: all 0.3s ease-in-out 0.1s;
  border: 1px solid #4a4a4a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.pull-menu.close-menu span {
  left: 50%;
  margin-left: -15px;
  width: 30px;
  margin-top: -2px;
  transition-delay: 0.3s;
}

.pull-menu.close-menu.active {
  left: 145px;
}

.pull-menu span {
  transition: background 0s 0.3s;
  top: 50%;
  margin-top: -4px;
}

.pull-menu span:before, .pull-menu span:after {
  content: "";
  position: absolute;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.pull-menu span:before {
  top: -9px;
  transition-property: top, transform;
}

.pull-menu span:after {
  bottom: -9px;
  transition-property: bottom, transform;
}

.pull-menu span,
.pull-menu span:before,
.pull-menu span:after {
  border-radius: 2px;
  width: 100%;
  display: block;
  height: 2px;
  background-color: black;
  position: absolute;
  transition: background-color 400ms;
  content: "";
}

.pull-menu.active span {
  color: transparent;
  transition: none;
  background: transparent;
}

.pull-menu.active span:before, .pull-menu.active span:after {
  transition-delay: 0s, 0.3s;
}

.pull-menu.active span:before {
  top: 0;
  transform: rotate(45deg);
}

.pull-menu.active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Banner Azul Home*/
.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle,
.paragraphs-item-m3-slide-1-list .field-name-field-para-subtitle {
  max-width: 990px;
  width: 100%;
  padding-left: 80px;
}

/* Banner Azul Home Comillas */
.paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle::before,
.paragraphs-item-m3-slide-1-list .field-name-field-para-subtitle::before {
  left: 0;
  right: auto;
}

/* Banner Principal Home*/
.paragraphs-item-m1-header > .content-wrapper, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper,
.entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper {
  padding: 0 15px;
}

/* ------------ MODULO M9 Text Image CTA -------------*/
.paragraphs-item-m9-text-image-cta {
  overflow: hidden;
}

.paragraphs-item-m9-text-image-cta .container {
  padding: 0;
}

.paragraphs-item-m9-text-image-cta .group-content {
  max-width: none;
  position: static;
  float: left;
  width: 50%;
  margin-right: -50%;
  height: auto;
  padding: 25px;
  display: flex;
  justify-content: center;
  height: 100%;
}

.paragraphs-item-m9-text-image-cta .group-image {
  width: 50%;
  background: #dedede;
  float: right;
  position: relative;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-image {
  float: none;
  width: 22000px;
  z-index: -1;
}

.paragraphs-item-m9-text-image-cta.left-image .group-content {
  max-width: none;
  position: static;
  float: right;
  width: 50%;
  margin-right: 0;
  margin-left: -50%;
  height: auto;
  padding: 25px;
}

.paragraphs-item-m9-text-image-cta.left-image .group-image {
  text-align: right;
  float: left;
}

.paragraphs-item-m9-text-image-cta.left-image .field-name-field-para-image {
  float: right;
}

.paragraphs-item-m9-text-image-cta .field-name-field-para-title {
  width: 100%;
}

/* ------------ RESPONSIVE ------------- */
@media (min-width: 768px) and (max-width: 1235px) {
  .paragraphs-item-m9-text-image-cta .field-name-field-para-image {
    margin-left: 600px;
  }
  .paragraphs-item-m9-text-image-cta.left-image .group-content {
    padding: 0 0 0 50px;
  }
}

@media (min-width: 1235px) {
  .l-header .block-block-18 {
    margin-right: 0px;
  }
  .l-header .logo {
    margin-left: 0;
  }
  .paragraphs-item-m9-text-image-cta .group-content {
    padding: 5% 50px 0 0;
  }
  .paragraphs-item-m9-text-image-cta .field-name-field-para-image {
    margin-left: calc(50%);
  }
  .paragraphs-item-m9-text-image-cta.left-image .group-content {
    padding: 0 0 0 50px;
  }
}

@media (max-width: 990px) {
  .block-block-10 {
    display: none;
  }
  .paragraphs-item-m3-slise-1-list .slick-next,
  .paragraphs-item-m3-slide-1-list .slick-next {
    right: 10px;
  }
  .paragraphs-item-m3-slise-1-list .slick-prev,
  .paragraphs-item-m3-slide-1-list .slick-prev {
    left: 10px;
  }
  .paragraphs-item-m3-slide-1-item > .content {
    padding: 0 20px;
  }
}

@media (max-width: 880px) {
  .pull-active {
    overflow: hidden;
  }
  .pull-menu {
    display: block;
  }
  .l-header-region .block-menu,
  .l-header-region .block-block-18 {
    position: static;
    margin: 0;
  }
  .l-header .block-block-18 {
    text-align: center;
    padding-top: 0;
    padding-left: 25px;
    padding-bottom: 80px;
  }
  .l-header .block-block-18 p {
    margin: 0;
  }
  .block-system-main-menu > ul.menu {
    padding: 25px 25px 0;
  }
  .block-system-main-menu > ul.menu li {
    display: block;
    margin: 0;
  }
  .block-system-main-menu > ul.menu li:after {
    display: none;
  }
  .block-system-main-menu > ul.menu li.active-trail > a {
    color: #E26329;
  }
  .block-system-main-menu > ul.menu li ul.menu {
    margin: 0;
    position: static;
    box-shadow: none;
    background: none;
    margin: 0;
    padding: 15px 0 0px;
    min-width: inherit;
    display: block;
  }
  .block-system-main-menu > ul.menu li ul.menu li {
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    margin-bottom: 5px;
  }
  .block-system-main-menu > ul.menu li ul.menu li a,
  .block-system-main-menu > ul.menu li ul.menu li a.icon {
    background: none !important;
    padding-left: 15px;
    font-weight: 100;
    font-size: 16px;
  }
  .block-system-main-menu > ul.menu li ul.menu li a:before,
  .block-system-main-menu > ul.menu li ul.menu li a.icon:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #575757;
    width: 5px;
    height: 100%;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-portfolio:before {
    background: #E26329;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-benefits:before {
    background: #00A5D3;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-support:before {
    background: #C4D600;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-booking-platform:before {
    background: #4b738a;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-icon-management:before {
    background: #d74a5a;
  }
  .block-system-main-menu > ul.menu li ul.menu li a.icon-icon-payment:before {
    background: #c6a878;
  }
  .block-system-main-menu > ul.menu li a {
    height: auto;
    padding: 10px 0;
    font-size: 20px;
  }
  .menu-container {
    position: absolute;
    top: 115px;
    left: 0;
    z-index: 95;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease-in-out;
    background: #fff;
    filter-gradient: #ffffff, #f5f5f5, vertical;
    background-image: linear-gradient(top, rgba(255, 255, 255, 0) 0%, whitesmoke 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
  }
  .pull-active .menu-container {
    opacity: 1;
    top: 95px;
    visibility: visible;
    height: calc(100vh - 90px);
    overflow: auto;
  }
  .menu-container .header-phone {
    display: block;
    border-top: 1px solid #dedede;
    margin-top: -180px;
    margin-bottom: 80px;
    text-align: center;
    padding-top: 10px;
    position: relative;
    top: 0;
    right: 0;
    height: auto;
  }
}

@media (max-width: 767px) {
  #col-right-resource {
    position: static !important;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .paragraphs-item-m4-slider-text > .content {
    display: block;
    text-align: center;
  }
  .paragraphs-item-m4-slider-text > .content > .field-collection-container,
  .paragraphs-item-m4-slider-text > .content > .field-name-field-para-image {
    width: 100%;
  }
  .paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle,
  .paragraphs-item-m3-slide-1-list .field-name-field-para-subtitle {
    padding-left: 50px;
  }
  .paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle p,
  .paragraphs-item-m3-slide-1-list .field-name-field-para-subtitle p {
    font-size: 18px;
    line-height: 22px;
  }
  .paragraphs-item-m3-slise-1-list .field-name-field-para-title p,
  .paragraphs-item-m3-slide-1-list .field-name-field-para-title p, .paragraphs-item-m1-header > .content-wrapper .field-name-field-para-title p, .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title p,
  .entity-paragraphs-item.paragraphs-item-m5-banner > .content-wrapper .field-name-field-para-title p {
    font-size: 32px;
    line-height: 36px;
  }
  .paragraphs-item-m3-slise-1-list .field-name-field-para-subtitle::before,
  .paragraphs-item-m3-slide-1-list .field-name-field-para-subtitle::before {
    top: -10px;
    font-size: 100px;
  }
  paragraphs-item-m4-slider-text .field-name-field-para-image img {
    float: none;
  }
  .paragraphs-item-m9-text-image-cta-v2 .container,
  .paragraphs-item-m9-text-image-cta .container {
    padding: 0;
  }
  .paragraphs-item-m9-text-image-cta-v2 .group-content,
  .paragraphs-item-m9-text-image-cta .group-content {
    width: 100%;
    margin: 0;
    padding: 25px;
  }
  .paragraphs-item-m9-text-image-cta-v2 .group-image,
  .paragraphs-item-m9-text-image-cta .group-image {
    width: 100%;
  }
  .paragraphs-item-m9-text-image-cta-v2 .field-name-field-para-image,
  .paragraphs-item-m9-text-image-cta .field-name-field-para-image {
    width: 1400px;
  }
  .paragraphs-item-m9-text-image-cta-v2.left-image .group-content,
  .paragraphs-item-m9-text-image-cta.left-image .group-content {
    width: 100%;
    margin: 0;
    padding: 25px;
  }
  .paragraphs-item-m9-text-image-cta-v2.left-image .group-image,
  .paragraphs-item-m9-text-image-cta.left-image .group-image {
    text-align: right;
  }
  .section-register .equalHeight.align .btn-big {
    margin-top: 40px;
  }
}

#sliding-popup {
  font-family: Lato, Arial, sans-serif;
  background-color: #FFF;
  color: #0a0a0a;
  max-width: 100%;
  height: auto;
  box-shadow: #121212 2px 2px 14px 2px;
}

div#popup-text > h2 {
  font-weight: bold !important;
}

#sliding-popup .eu-cookie-compliance-secondary-button {
  padding: 10px !important;
  border-radius: 3px !important;
  border-top: 1px !important;
  border-right: 1px !important;
  border-left: 1px;
  border-bottom: 3px !important !important;
  background-color: #E26329 !important;
  box-shadow: 0 6px 0 #B74504 !important;
  border: 1px solid #B74504 !important;
  border-radius: 3.5px !important;
  font-weight: bold !important;
  color: #ffffff !important;
}

#popup-buttons .eu-cookie-compliance-secondary-button:hover {
  background-color: #EA8E5A !important;
}

.section-compass .view-travel-advisor .card--v1 .card__body {
  padding: 0.75rem 0.75rem 2.1875rem !important;
}

.section-compass .paragraphs-item-m3-slide-1-list .card__body {
  padding: 0 0 0 1.5625rem !important;
}

.section-compass .compass {
  padding: 0;
  background-color: #f8f8f8;
}

.section-compass .compass .compassContainer {
  background-image: url("../img/compass/BOL-Generic-bg-1920x1080.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.section-compass .compass .compassContainer .container {
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.03), 0 6.7px 5.3px rgba(0, 0, 0, 0.05), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.07), 0 41.8px 33.4px rgba(0, 0, 0, 0.09), 0 100px 80px rgba(0, 0, 0, 0.012);
  padding-left: 0;
  padding-right: 0;
  max-width: 1170px;
}

.section-compass .compass .compassContainer .container .row {
  display: flex;
}

.section-compass .compass .container .menu {
  position: relative;
  margin-top: 30px;
  background-color: #F1F1F1;
  padding: 26px;
  width: 29%;
}

.section-compass .compass .container .menu .compass-logo {
  margin-bottom: 10px;
}

.section-compass .compass .container .menu .input-group {
  margin-bottom: 10px;
}

.section-compass .compass .container .menu .custom-select {
  border: none;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ccc;
  color: #0077a3;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 7px;
}

.section-compass .compass .container .menu .custom-select:focus {
  outline-color: transparent;
}

.section-compass .compass .container .menu .custom-select option {
  font-size: 13px;
}

.section-compass .compass .container .menu h5.refine {
  padding-top: 5px;
  border-top: 1px solid #ddd;
  margin-top: 3px !important;
}

.section-compass .compass .container .menu .white {
  background-color: #f8f8f8;
  color: #333;
  font-size: 13px;
}

.section-compass .compass .container .menu .small {
  font-size: 10px;
}

.section-compass .compass .container .menu .filters {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.section-compass .compass .container .menu .filters .form {
  padding: 5px;
  flex: 33%;
  margin-bottom: 5px;
}

.section-compass .compass .container .menu .filters .form .form-check.form-check-inline {
  line-height: 1px;
  margin-bottom: 5px;
}

.section-compass .compass .container .menu .filters .form .form-check.form-check-inline input {
  height: 10px;
  width: 10px;
  clip: auto;
  margin: 0;
  position: relative;
}

.section-compass .compass .container .menu .filters .form .form-check.form-check-inline label {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 0.625rem;
}

.section-compass .compass .container .menu .filters .region {
  padding-left: 0;
}

.section-compass .compass .container .menu .filters .region select {
  margin-top: 0;
}

.section-compass .compass .container .menu .filters .leadtime select {
  padding-left: 12px;
  margin-top: 0;
}

.section-compass .compass .container .menu .types {
  display: flex;
  justify-content: space-between;
}

.section-compass .compass .container .menu .types .type {
  position: relative;
}

.section-compass .compass .container .menu .types .type p {
  position: absolute;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  text-align: center;
  z-index: 9;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.section-compass .compass .container .menu .types .type .image img {
  max-width: 140px;
}

.section-compass .compass .container .menu .types .type .image:after {
  content: '\A';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.section-compass .compass .container .menu .types .type:hover, .section-compass .compass .container .menu .types .type.selected {
  cursor: pointer;
}

.section-compass .compass .container .menu .types .type:hover p, .section-compass .compass .container .menu .types .type.selected p {
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.03), 0 6.7px 5.3px rgba(0, 0, 0, 0.05), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.07), 0 41.8px 33.4px rgba(0, 0, 0, 0.09), 0 100px 80px rgba(0, 0, 0, 0.012);
  border-bottom: 5px solid #e26329;
  height: 64px;
}

.section-compass .compass .container .menu .types .type:hover .image:after, .section-compass .compass .container .menu .types .type.selected .image:after {
  opacity: 0;
}

.section-compass .compass .container .menu h5 {
  font-size: 12px;
  font-weight: 600;
}

.section-compass .compass .container .menu .panel-body .card-body {
  width: 100%;
}

@media (max-width: 992px) {
  .section-compass .compass .container .menu {
    top: -25px;
  }
}

.section-compass .compass .container .main_title {
  font-family: 'Open Sans';
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #003057;
  letter-spacing: -0.5px;
  z-index: 9;
}

.section-compass .compass .container .sub_title {
  display: none;
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #003057;
  letter-spacing: -0.5px;
  z-index: 9;
}

.section-compass .compass .container .destination-table {
  display: flex;
  flex-wrap: wrap;
  width: 343px;
  position: relative;
  left: -26px;
  margin-top: 15px;
}

.section-compass .compass .container .destination-table #corridors-table {
  position: relative;
}

.section-compass .compass .container .destination-table #corridors-table :before {
  display: none;
}

.section-compass .compass .container .destination-table #corridors-table thead {
  border: none;
}

.section-compass .compass .container .destination-table #corridors-table thead th {
  font-size: 0.75rem;
  font-weight: 100;
}

.section-compass .compass .container .destination-table #corridors-table thead th.col1 {
  padding-left: 26px;
}

.section-compass .compass .container .destination-table #corridors-table thead th.col3 {
  padding-right: 26px;
  padding-left: 14px;
}

.section-compass .compass .container .destination-table #corridors-table thead th.col2 {
  padding-right: 4px;
  padding-left: 4px;
}

.section-compass .compass .container .destination-table #corridors-table thead th.col2, .section-compass .compass .container .destination-table #corridors-table thead th.col3 {
  text-align: center;
}

.section-compass .compass .container .destination-table #corridors-table tbody {
  border: none;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr {
  border-bottom: 1px solid #fff;
  height: 42px;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr:hover {
  cursor: pointer;
  background-color: rgba(21, 146, 230, 0.3);
}

.section-compass .compass .container .destination-table #corridors-table tbody tr[data-title]:hover::after, .section-compass .compass .container .destination-table #corridors-table tbody tr[data-title]:focus::after {
  content: attr(data-title);
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 16px;
  padding: 9px 15px;
  height: 44px;
  background-color: rgba(21, 146, 230, 0.8);
  text-align: right;
  color: #333;
  font-weight: 800;
  z-index: 9999;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr.selected td {
  background-color: #fff;
  color: #333;
  font-weight: 800;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr.selected td.dest span {
  border-left: 13px solid #F79256;
  padding-left: 13px !important;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr td {
  font-size: 0.875rem;
  font-weight: 400;
  vertical-align: middle;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr td img {
  max-width: 26px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr td.dest span {
  width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  padding-left: 26px;
  height: 42px;
  padding-top: 10px;
}

@media only screen and (min-width: 992px) {
  .section-compass .compass .container .destination-table #corridors-table tbody tr td.dest span {
    width: 200px;
  }
}

.section-compass .compass .container .destination-table #corridors-table tbody tr td.trend {
  text-align: center;
}

.section-compass .compass .container .destination-table #corridors-table tbody tr td.trend .arrow_type {
  display: inline-block;
}

.section-compass .compass .container .destination-table .bottom_help_links {
  display: none;
}

.section-compass .compass .container .destination-table .bottom_help_links span {
  padding-right: 0;
}

.section-compass .compass .col-12,
.section-compass .compass .col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.section-compass .compass .col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .section-compass .compass .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.section-compass .compass .dlpSharing__modal__shareSocial__optin__label {
  display: block;
  padding: 0 0 0 28px;
}

.section-compass .compass .dlpSharing__modal__shareSocial__optin__label:before {
  top: 3px;
  width: 17px;
  height: 17px;
}

.section-compass .compass .products {
  width: 71%;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}

@media (min-width: 992px) {
  .section-compass .compass .products .col-md-offset-3 {
    margin-left: 29%;
  }
}

.section-compass .compass .products .btnsHeader {
  margin-bottom: 30px;
}

.section-compass .compass .products .btnsHeader h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 47px;
  font-weight: 100;
}

.section-compass .compass .products .btnsHeader h1 strong {
  font-weight: 600;
}

@media (max-width: 992px) {
  .section-compass .compass .products .btnsHeader h1 {
    font-size: 2rem;
    line-height: 29px;
  }
}

.section-compass .compass .products .btnsHeader .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader {
  width: 14.375rem;
  padding: 1px 10px;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s ease,padding 0s linear;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader a {
  color: #fff;
  text-decoration: none;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader h4, .section-compass .compass .products .btnsHeader .bottom .btnHeader .figure-horizontal .figure-title-text, .figure-horizontal .section-compass .compass .products .btnsHeader .bottom .btnHeader .figure-title-text, .section-compass .compass .products .btnsHeader .bottom .btnHeader .circle-why-bedsonline .video-title .video-title-text, .circle-why-bedsonline .video-title .section-compass .compass .products .btnsHeader .bottom .btnHeader .video-title-text {
  font-size: 1rem;
  line-height: 14px;
  padding-top: 8px;
  font-weight: 600;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader p {
  font-size: 0.75rem;
  margin-bottom: 0;
  line-height: 15px;
  padding-bottom: 5px;
  padding-top: 3px;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader.btnHelp {
  background: url(../../hotelbeds_new/img/compass/help.png) no-repeat 195px center, #0074E7;
  box-shadow: 0 2px 0 #004080;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader.btnVideo {
  background: url(../../hotelbeds_new/img/compass/video.png) no-repeat 195px center, #FFA200;
  box-shadow: 0 2px 0 #7A4D00;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader.btnFeedback {
  background: url(../../hotelbeds_new/img/compass/feedback.png) no-repeat 185px center, #06BF00;
  box-shadow: 0 2px 0 #077B03;
}

.section-compass .compass .products .btnsHeader .bottom .btnHeader:active {
  transform: translateY(3px);
}

.section-compass .compass .products .btnsHeader .bottom:after {
  display: none;
}

@media (max-width: 992px) {
  .section-compass .compass .products .btnsHeader .bottom .btnHeader {
    margin: 0 2px;
  }
}

.section-compass .compass .products .productsContent {
  background-color: #fff;
  padding: 20px 15px;
  height: 1200px;
}

.section-compass .compass .products > h2 {
  font-size: 32px;
  line-height: 1.2;
}

.section-compass .compass .products .title {
  height: 100px;
}

.section-compass .compass .products .title .col-md-6 {
  padding-left: 0;
}

.section-compass .compass .products .s-query {
  margin-top: 15px;
  margin-bottom: 15px;
}

.section-compass .compass .products .s-query a {
  display: block;
  text-align: center;
  color: #0074e7;
  text-decoration: underline;
}

.section-compass #dlp-sharing {
  padding: 0 !important;
}

.section-compass #widget {
  width: 100%;
  clear: both;
}

.tippy-box {
  width: 260px;
  border-radius: 2px;
}

.tippy-box .tippy-content {
  padding: 10px;
}

.tippy-box thead tr {
  border-bottom: 2px solid #666;
}

.tippy-box tr {
  border-bottom: 1px solid #666;
}

.tippy-box tr td {
  padding: 5px 1px;
  font-weight: 100;
}

.tippy-box tbody tr:nth-child(5) {
  border-bottom: none;
}

.blocker {
  z-index: 9999 !important;
}

.blocker .modal {
  overflow: initial !important;
}

.login_form fieldset {
  max-width: 300px;
  display: flex;
  align-items: self-start;
  flex-direction: column;
  margin: 0 auto;
  overflow: hidden;
  border: none;
}

.login_form fieldset legend {
  display: none;
}

.login_form fieldset input {
  position: relative;
  z-index: 2;
  width: 100% !important;
  color: #3e3e3e;
  font-size: 13px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.2);
  border-color: #181818;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 0;
  margin-bottom: 10px;
}

.login_form fieldset .login_button {
  display: inline-block;
  width: auto;
  padding: 14px 20px 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  background-color: #e26329;
  box-shadow: 0 3px 0 #b74504;
  border: 1px solid #b74504;
  border-radius: 3.5px;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  user-select: none;
  margin: 25px 0;
}

.register-form-br .mktoFormRow,
.register-form-br .gdprRow,
.register-form-br .mktoButtonRow,
.register-form-br .form-actions {
  float: left;
  padding: 0 12px 0 0;
  width: 50%;
}

.register-form-br .mktoFormRow.webform-component--dados-de-contato--e-mail, .register-form-br .mktoFormRow.webform-component--dados-de-contato--comentarios,
.register-form-br .gdprRow.webform-component--dados-de-contato--e-mail,
.register-form-br .gdprRow.webform-component--dados-de-contato--comentarios,
.register-form-br .mktoButtonRow.webform-component--dados-de-contato--e-mail,
.register-form-br .mktoButtonRow.webform-component--dados-de-contato--comentarios,
.register-form-br .form-actions.webform-component--dados-de-contato--e-mail,
.register-form-br .form-actions.webform-component--dados-de-contato--comentarios {
  width: 100%;
}

.register-form-br .mktoField {
  background: rgba(0, 0, 0, 0.1);
  border-color: #fff;
}

.register-form-br .form-actions {
  float: none;
  width: 100%;
  padding: 0 22px 0 12px;
}

.register-form-br .webform-submit {
  border: 0;
  background-color: #e26329;
  border-radius: 4px;
  box-shadow: 0 2px 0 0 rgba(109, 109, 109, 0.5);
  color: #fff;
  font-size: .875rem;
  text-transform: uppercase;
  transition: .3s;
  padding: 0;
  min-height: 3.375rem;
  display: block;
  margin: 0 auto;
}

.register-form-br .webform-submit:hover {
  background-color: #d5561d;
}
