@charset "UTF-8";
/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 90%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.6666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.6666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
}

a:hover {
  color: #0FA0CE;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol, ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}

li {
  margin-bottom: 1rem;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px) {
  .container {
    width: 400px;
  }
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  .container {
    width: 514px;
  }
}
/* Larger than tablet */
@media (min-width: 750px) {
  .container {
    width: 740px;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {
  .container {
    width: 960px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1600px) {
  .container {
    width: 1520px;
  }
}
/* Lima Charlie addons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  max-width: 1180px;
}
.container.large {
  max-width: 1280px;
  /* Larger than tablet */
  /* Larger than desktop */
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 769px) {
  .container.large {
    width: 730px;
  }
}
@media (min-width: 1001px) {
  .container.large {
    width: 980px;
  }
}
@media (min-width: 1200px) {
  .container.large {
    width: 1180px;
  }
}
@media (min-width: 1600px) {
  .container.large {
    width: 1580px;
  }
}
@media (max-width: 550px) {
  .container.large {
    max-width: 92.5%;
  }
}
@media (max-width: 768px) {
  .container.large.full-width-phablet {
    width: 100%;
    padding: 0px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container.full-width-phablet {
    width: 100%;
    padding: 0px;
    max-width: 100%;
  }
}
.container.full-width {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}
.container.full-width-limit {
  width: 100%;
  box-sizing: border-box;
  max-width: 1180px;
  padding: 0px;
  margin: 0px auto;
}
@media (max-width: 550px) {
  .container {
    max-width: 92.5%;
  }
}

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

@media (min-width: 550px) {
  .one-fifth.columns {
    width: 19%;
    margin: 0 0.5%;
  }
  .container.no-margin .column,
  .container.no-margin .columns {
    margin-left: 0%;
  }
  .container.no-margin .column:first-child,
  .container.no-margin .columns:first-child {
    margin-left: 0;
  }
  .container.no-margin .one.column,
  .container.no-margin .one.columns {
    width: 8.3333333333%;
  }
  .container.no-margin .two.columns {
    width: 16.6666666667%;
  }
  .container.no-margin .three.columns {
    width: 25%;
  }
  .container.no-margin .four.columns {
    width: 33.3333333333%;
  }
  .container.no-margin .five.columns {
    width: 41.6666666667%;
  }
  .container.no-margin .six.columns {
    width: 50%;
  }
  .container.no-margin .seven.columns {
    width: 58.3333333333%;
  }
  .container.no-margin .eight.columns {
    width: 66.6666666667%;
  }
  .container.no-margin .nine.columns {
    width: 75%;
  }
  .container.no-margin .ten.columns {
    width: 83.3333333333%;
  }
  .container.no-margin .eleven.columns {
    width: 91.6666666667%;
  }
  .container.no-margin .twelve.columns {
    width: 100%;
  }
  .container.no-margin .one-third.column {
    width: 33.3333333333%;
  }
  .container.no-margin .two-thirds.column {
    width: 66.6666666667%;
  }
  .container.no-margin .one-half.column {
    width: 50%;
  }
}
@font-face {
  font-family: "Brandon Grotesque";
  font-display: swap;
  src: url("../fonts/BrandonGrotesqueWeb-Medium.eot");
  src: url("../fonts/BrandonGrotesqueWeb-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/BrandonGrotesqueWeb-Medium.woff2") format("woff2"), url("../fonts/BrandonGrotesqueWeb-Medium.woff") format("woff"), url("../fonts/BrandonGrotesqueWeb-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque";
  font-display: swap;
  src: url("../fonts/BrandonGrotesqueWeb-Light.eot");
  src: url("../fonts/BrandonGrotesqueWeb-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/BrandonGrotesqueWeb-Light.woff2") format("woff2"), url("../fonts/BrandonGrotesqueWeb-Light.woff") format("woff"), url("../fonts/BrandonGrotesqueWeb-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque";
  font-display: swap;
  src: url("../fonts/BrandonGrotesqueWeb-Thin.eot");
  src: url("../fonts/BrandonGrotesqueWeb-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/BrandonGrotesqueWeb-Thin.woff2") format("woff2"), url("../fonts/BrandonGrotesqueWeb-Thin.woff") format("woff"), url("../fonts/BrandonGrotesqueWeb-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque";
  font-display: swap;
  src: url("../fonts/BrandonGrotesqueWeb-Bold.eot");
  src: url("../fonts/BrandonGrotesqueWeb-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BrandonGrotesqueWeb-Bold.woff2") format("woff2"), url("../fonts/BrandonGrotesqueWeb-Bold.woff") format("woff"), url("../fonts/BrandonGrotesqueWeb-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Miller Display Light";
  font-display: swap;
  src: url("../fonts/MillerDisplay-Light.eot");
  src: url("../fonts/MillerDisplay-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/MillerDisplay-Light.woff2") format("woff2"), url("../fonts/MillerDisplay-Light.woff") format("woff"), url("../fonts/MillerDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
html {
  height: 100%;
}

body, html {
  background-color: #f6f3eb;
  color: #1F3B34;
  overflow-x: hidden;
}

body.mobile-menu-shown {
  left: 0;
  right: 0;
  overflow-y: scroll; /* render disabled scroll bar to keep the same width */
}

#page {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin-left: 0px;
  background: -moz-linear-gradient(top, #f6f3eb 9.93%, #ffe4e2 100%);
  background: -webkit-linear-gradient(top, #f6f3eb 9.93%, #ffe4e2 100%);
  background: linear-gradient(to bottom, #f6f3eb 9.93%, #ffe4e2 100%);
  -webkit-transition: width 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: width 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: width 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: width 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#page #main {
  clear: both;
}
#page.menu-shown {
  width: calc(100% - 250px);
  margin-left: 250px;
}
#page.menu-shown #header {
  left: 0;
}

#main {
  padding-bottom: 140px;
  min-height: 50vh;
}

#content {
  position: relative;
  min-height: 300px;
}

#overlay {
  display: none;
}

#page-title-container {
  background-color: #000;
  padding: 42px 0;
  margin-bottom: 42px;
}
#page-title-container #page-title {
  text-align: left;
  color: #FFF;
}

b, strong {
  font-weight: bold;
}

h1 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}
h2.subtext {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0;
  font-size: 1.26rem;
}
@media (min-width: 550px) {
  h2.subtext {
    font-size: 1.47rem;
  }
}

iframe {
  border: none !important;
}

a {
  color: #1F3B34;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  opacity: 0.85;
  color: #1F3B34;
  text-decoration: underline;
}

ul li, ol li {
  padding-left: 10px;
  list-style-position: outside;
  margin-left: 15px;
}

ul li {
  list-style-type: square;
  margin-left: 20px;
}

p {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}

img.preload {
  opacity: 1;
  -webkit-transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
img.preload.hidden {
  opacity: 0;
}

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

.admin-menu-icon img {
  height: 16px;
  width: 16px;
}

.center {
  text-align: center;
}

input[type=text], input[type=email] {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #bbb;
  color: #555;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
}

.max-width {
  margin: 0px auto;
  max-width: 1400px;
  width: 90%;
}
@media (min-width: 960px) {
  .max-width {
    width: 900px;
  }
}
@media (min-width: 1360px) {
  .max-width {
    width: 1300px;
  }
}
@media (max-width: 550px) {
  .max-width {
    width: 90%;
  }
}

form {
  max-width: 500px;
  padding-left: 10%;
}
form .form-item {
  margin: 0;
}
form .form-item .description {
  display: none;
}
form input[type=email],
form input[type=number],
form input[type=search],
form input[type=text],
form input[type=tel],
form input[type=url],
form input[type=password],
form textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 100%;
  line-height: 50px;
  height: 50px;
  font-size: 18px;
  margin-bottom: 20px;
}

.free-crm-disclaimer {
  padding: 10px 10px;
}
.free-crm-disclaimer p {
  display: block;
  text-align: center;
  font-size: 11px;
  margin: 0px;
  line-height: 1.3;
  letter-spacing: 0em;
  color: #A5A5A5;
}

body.maintenance-page #page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}
body.maintenance-page #page #main {
  min-height: 0;
  height: auto;
  padding-bottom: 0;
}
body.maintenance-page #page #main #content {
  min-height: 0;
}
body.maintenance-page #header {
  width: auto;
  max-width: 100%;
}
body.maintenance-page #header #logo img {
  max-width: 800%;
}

a.button,
span.button,
input[type=submit].button,
input[type=submit].button-search {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
}
a.button a,
span.button a,
input[type=submit].button a,
input[type=submit].button-search a {
  color: white;
}
a.button:hover, a.button:focus,
span.button:hover,
span.button:focus,
input[type=submit].button:hover,
input[type=submit].button:focus,
input[type=submit].button-search:hover,
input[type=submit].button-search:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
a.button:hover, a.button:active,
span.button:hover,
span.button:active,
input[type=submit].button:hover,
input[type=submit].button:active,
input[type=submit].button-search:hover,
input[type=submit].button-search:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
a.button.button-sm,
span.button.button-sm,
input[type=submit].button.button-sm,
input[type=submit].button-search.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
a.button.button-light,
span.button.button-light,
input[type=submit].button.button-light,
input[type=submit].button-search.button-light {
  padding: 15px 25px;
  font-weight: 300;
}

.button-holder .ajax-button {
  position: relative;
  display: inline-block;
  width: 180px;
  text-align: center;
}
.button-holder .ajax-button .form-submit,
.button-holder .ajax-button input[type=submit] {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  background: -moz-linear-gradient(left, rgba(211, 249, 250, 0.5) 0%, rgba(255, 107, 97, 0.1) 49%, rgba(255, 107, 97, 0.1) 50%, rgba(211, 249, 250, 0.5) 100%);
  background: -webkit-linear-gradient(left, rgba(211, 249, 250, 0.5) 0%, rgba(255, 107, 97, 0.1) 49%, rgba(255, 107, 97, 0.1) 50%, rgba(211, 249, 250, 0.5) 100%);
  background: linear-gradient(to right, rgba(211, 249, 250, 0.5) 0%, rgba(255, 107, 97, 0.1) 49%, rgba(255, 107, 97, 0.1) 50%, rgba(211, 249, 250, 0.5) 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  margin: 0px;
  padding: 20px 0px;
  width: 100%;
  -webkit-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.button-holder .ajax-button .form-submit a,
.button-holder .ajax-button input[type=submit] a {
  color: white;
}
.button-holder .ajax-button .form-submit:hover, .button-holder .ajax-button .form-submit:focus,
.button-holder .ajax-button input[type=submit]:hover,
.button-holder .ajax-button input[type=submit]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.button-holder .ajax-button .form-submit:hover, .button-holder .ajax-button .form-submit:active,
.button-holder .ajax-button input[type=submit]:hover,
.button-holder .ajax-button input[type=submit]:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
.button-holder .ajax-button .form-submit.button-sm,
.button-holder .ajax-button input[type=submit].button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
.button-holder .ajax-button .form-submit.button-light,
.button-holder .ajax-button input[type=submit].button-light {
  padding: 15px 25px;
  font-weight: 300;
}
.button-holder .ajax-button .form-submit:hover,
.button-holder .ajax-button input[type=submit]:hover {
  background-position: 100% 0%;
}
.button-holder .ajax-button .load {
  pointer-events: none;
  font-size: 0;
  width: 30px;
  height: 30px;
  margin-top: -18px;
  margin-left: -18px;
  border-radius: 30px;
  padding: 0;
  border: 3px solid #1F3B34;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  border-left: 3px solid rgba(255, 255, 255, 0);
  background-color: transparent !important;
  animation-name: rotateAnimation;
  -webkit-animation-name: wk-rotateAnimation;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.button-holder .ajax-button .done,
.button-holder .ajax-button .failed {
  pointer-events: none;
  color: #1F3B34;
  font-size: 24px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #17e1e3;
  background: -moz-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to right, #17e1e3 0%, #ff6b61 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
  -webkit-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.button-holder .ajax-button .done.finish,
.button-holder .ajax-button .failed.finish {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.button-holder .ajax-button .failed {
  color: #ff6b61;
}
.button-holder.loading .ajax-button .form-submit,
.button-holder.loading .ajax-button input[type=submit] {
  font-size: 0;
}
.button-holder.loading .ajax-button .load {
  opacity: 1;
}
.button-holder.hide-loading .ajax-button .load {
  opacity: 0;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transform: scale(0) !important;
  transform: scale(0) !important;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes wk-rotateAnimation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

#back-to-top {
  display: none;
  width: 30px;
  height: 30px;
  background: url(../images/down-arrow-graded.svg) center center no-repeat;
  background-size: 100%;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000;
  opacity: 1;
  -webkit-transform: rotate(180deg) translate(0, 0);
  -moz-transform: rotate(180deg) translate(0, 0);
  -ms-transform: rotate(180deg) translate(0, 0);
  -o-transform: rotate(180deg) translate(0, 0);
  transform: rotate(180deg) translate(0, 0);
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#back-to-top.hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: rotate(180deg) translate(0, -100%);
  -moz-transform: rotate(180deg) translate(0, -100%);
  -ms-transform: rotate(180deg) translate(0, -100%);
  -o-transform: rotate(180deg) translate(0, -100%);
  transform: rotate(180deg) translate(0, -100%);
}
@media (min-width: 769px) {
  #back-to-top {
    display: block;
  }
}

.messages {
  border: none;
  margin: 0px;
  padding: 35px 20px 35px 50px;
}
.messages.error, .messages.status {
  border: none;
  background-position: 8px 34px;
}
.messages pre {
  margin: 0;
}

#header {
  width: 100%;
  padding: 0px 0px 20px;
  margin-top: 0px;
  box-sizing: border-box;
  z-index: 10;
}
#header .mobile-toggle {
  position: absolute;
  z-index: 800;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  height: 20px;
  width: 29px;
  vertical-align: middle;
  margin: 0px 0px 0px 20px;
  cursor: pointer;
}
#header .mobile-toggle span {
  position: absolute;
  z-index: 800;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  text-indent: -9999px;
  height: 1px;
  width: 100%;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  -webkit-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.25s;
  -moz-transition-delay: 0.25s;
  -ms-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
#header .mobile-toggle span:before, #header .mobile-toggle span:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  position: absolute;
  left: 0;
  -webkit-transition-delay: 0.25s, 0s;
  -moz-transition-delay: 0.25s, 0s;
  -ms-transition-delay: 0.25s, 0s;
  transition-delay: 0.25s, 0s;
  -webkit-transition-duration: 0.25s, 0.25s;
  -moz-transition-duration: 0.25s, 0.25s;
  -ms-transition-duration: 0.25s, 0.25s;
  transition-duration: 0.25s, 0.25s;
}
#header .mobile-toggle span:before {
  top: -8px;
  -webkit-transition-property: top, transform;
  -moz-transition-property: top, transform;
  -ms-transition-property: top, transform;
  transition-property: top, transform;
}
#header .mobile-toggle span:after {
  bottom: -8px;
  -webkit-transition-property: bottom, transform;
  -moz-transition-property: bottom, transform;
  -ms-transition-property: bottom, transform;
  transition-property: bottom, transform;
}
#header .mobile-toggle.shown span {
  background: transparent;
}
#header .mobile-toggle.shown span:before, #header .mobile-toggle.shown span:after {
  -webkit-transition-delay: 0s, 0.25s;
  -moz-transition-delay: 0s, 0.25s;
  -ms-transition-delay: 0s, 0.25s;
  transition-delay: 0s, 0.25s;
}
#header .mobile-toggle.shown span:before {
  top: 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#header .mobile-toggle.shown span:after {
  bottom: 0px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 881px) {
  #header .mobile-toggle {
    display: none;
  }
}
#header #navigation {
  display: block;
  text-align: center;
}
#header #navigation:not(.is-vendor-dashboard) {
  width: 100%;
  max-width: 1600px;
  box-sizing: border-box;
  padding: 0px 30px;
}
#header #navigation .group-center {
  display: flex;
  align-items: center;
  padding: 0px 0px;
}
#header #navigation .group-center #logo {
  display: inline-block;
  float: none;
  vertical-align: middle;
  line-height: 0;
  margin-right: 80px;
  width: 140px;
  min-width: 140px;
}
#header #navigation .group-center #logo svg,
#header #navigation .group-center #logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#header #navigation .group-center #logo img {
  display: none;
}
#header #navigation .group-center #site-slogan {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: 15px;
}
#header #navigation .group-center .menus-bar {
  width: 100%;
}
#header #navigation .group-center #header-top-bar {
  border-bottom: 1px solid #b5b5b5;
  margin: 0;
  margin-left: auto;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #navigation .group-center #header-top-bar form {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: none;
  float: right;
  -webkit-transition: width 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: width 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: width 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: width 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: width 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 100;
}
#header #navigation .group-center #header-top-bar form .form-text {
  width: 300px;
  text-transform: none;
  font-size: 15px;
  font-weight: normal;
  box-sizing: border-box;
  padding-right: 33px;
  line-height: normal;
  margin-bottom: 0px;
  border: none;
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
  -webkit-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#header #navigation .group-center #header-top-bar form .form-text::-webkit-input-placeholder {
  color: #1F3B34;
}
#header #navigation .group-center #header-top-bar form .form-text:-moz-placeholder {
  color: #1F3B34;
}
#header #navigation .group-center #header-top-bar form .form-text::-moz-placeholder {
  color: #1F3B34;
}
#header #navigation .group-center #header-top-bar form .form-text:-ms-input-placeholder {
  color: #1F3B34;
}
#header #navigation .group-center #header-top-bar form .form-text::-webkit-input-placeholder {
  text-transform: uppercase;
}
#header #navigation .group-center #header-top-bar form .form-text:-moz-placeholder {
  text-transform: uppercase;
}
#header #navigation .group-center #header-top-bar form .form-text::-moz-placeholder {
  text-transform: uppercase;
}
#header #navigation .group-center #header-top-bar form .form-text:-ms-input-placeholder {
  text-transform: uppercase;
}
#header #navigation .group-center #header-top-bar form .form-submit {
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  display: block;
  outline: none;
  font-size: 0;
  border: none;
  background-image: url("../images/search.svg");
  background-size: 100% 100%;
}
#header #navigation .group-center #header-top-bar .region-header-top-bar {
  display: flex;
  align-items: center;
  position: relative;
}
#header #navigation .group-center #header-top-bar .group-right {
  display: flex;
  align-items: center;
}
#header #navigation .group-center #header-top-bar .group-right .ad-disclosure-container {
  margin-right: 20px;
}
#header #navigation .group-center #header-top-bar .group-right .ad-disclosure-container .ad-disclosure-trigger {
  color: #ff6b61;
}
#header #navigation .group-center #header-top-bar .group-right ul.socials-container {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
#header #navigation .group-center #header-top-bar .group-right ul.socials-container li {
  list-style: none;
  display: inline-block;
  margin: 0px 10px;
  padding: 0px;
}
#header #navigation .group-center #header-top-bar .group-right ul.socials-container li:last-child {
  margin-right: 0px;
}
#header #navigation .group-center #header-top-bar .group-right ul.socials-container li a {
  font-size: 22px;
  color: #ff6b61;
}
#header #navigation .group-center #header-top-menu {
  padding: 15px 10px;
  box-sizing: border-box;
  position: relative;
}
#header #navigation .group-center #header-top-menu .menu {
  display: flex;
  margin-right: 0px;
  justify-content: space-between;
  align-items: center;
}
#header #navigation .group-center #header-top-menu .menu li {
  padding: 0px;
  margin: 0px;
}
#header #navigation .group-center #header-top-menu .menu li:first-child {
  margin-left: 10px;
}
#header #navigation .group-center #header-top-menu .menu li a {
  font-size: 18px;
}
#header #navigation .group-center #header-top-menu .menu li.crm-experts-link a {
  color: #ff4033;
}
#header #navigation .group-center #header-top-menu .menu li.subscribe-link {
  border-radius: 10px;
  text-align: center;
  display: block;
  margin: 0px;
  background: #17e1e3;
}
#header #navigation .group-center #header-top-menu .menu li.subscribe-link a {
  display: block;
  padding: 5px 20px;
  color: #FFF;
}
#header #navigation .group-center #header-top-menu .menu li.subscribe-link a:hover {
  opacity: 1;
}
#header #navigation .group-center #header-top-menu .menu li.hide-in-header {
  display: none;
}
#header #navigation .separator {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #17e1e3;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  display: none !important;
}
#header #navigation #header-menus {
  position: fixed;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 700;
  background-color: #FFDBCF;
  background: -moz-linear-gradient(top, #FFDBCF 0%, #D3F9FA 100%);
  background: -webkit-linear-gradient(top, #FFDBCF 0%, #D3F9FA 100%);
  background: linear-gradient(to bottom, #FFDBCF 0%, #D3F9FA 100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#header #navigation #header-menus .header-menu {
  width: 100%;
  margin-top: -10vh;
  padding: 0px 10vw;
  box-sizing: border-box;
}
#header #navigation #header-menus .header-menu .menu {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
#header #navigation #header-menus .header-menu .menu li {
  display: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  -o-transform: translate(0, 10px);
  transform: translate(0, 10px);
  -webkit-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header #navigation #header-menus .header-menu .menu li:nth-child(1), #header #navigation #header-menus .header-menu .menu li:nth-child(2), #header #navigation #header-menus .header-menu .menu li:nth-child(3), #header #navigation #header-menus .header-menu .menu li:nth-child(4), #header #navigation #header-menus .header-menu .menu li:nth-child(5) {
  display: inline-block;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(1) a {
  color: #ff6b61;
}
#header #navigation #header-menus .header-menu .menu li a {
  color: #1F3B34;
  font-size: 48px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header #navigation #header-menus .header-menu .menu li a:hover {
  opacity: 1 !important;
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 4px;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(1) {
  transition-delay: 100ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(2) {
  transition-delay: 200ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(3) {
  transition-delay: 300ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(4) {
  transition-delay: 400ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(5) {
  transition-delay: 500ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(6) {
  transition-delay: 600ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(7) {
  transition-delay: 700ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(8) {
  transition-delay: 800ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(9) {
  transition-delay: 900ms;
}
#header #navigation #header-menus .header-menu .menu li:nth-child(10) {
  transition-delay: 1000ms;
}
#header #navigation #header-menus .header-menu .menu:hover li a {
  opacity: 0.5;
}
#header #navigation #header-menus .header-menu .menu:hover li a.active {
  opacity: 1;
}
#header #navigation #header-menus.shown {
  opacity: 1;
  pointer-events: auto;
}
#header #navigation #header-menus.shown .header-menu .menu li {
  opacity: 1;
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
#header .ad-disclosure-container-mobile {
  padding-top: 5px;
  text-align: center;
}
#header .ad-disclosure-container-mobile .ad-disclosure-trigger {
  color: #ff6b61;
  font-size: 14px;
}
@media (min-width: 881px) {
  #header .ad-disclosure-container-mobile {
    display: none;
  }
}
@media (max-width: 1000px) {
  #header #navigation .group-center #header-top-bar .region-header-top-bar .menu li {
    margin-left: 20px;
  }
  #header #navigation .group-center #header-top-bar form .form-text {
    width: 245px;
  }
  #header #navigation .group-center #header-top-bar .group-right .ad-disclosure-container {
    margin-right: 15px;
  }
  #header #navigation .group-center #header-top-bar .group-right .ad-disclosure-container .ad-disclosure-trigger {
    font-size: 13px;
  }
  #header #navigation .group-center #header-top-bar .group-right ul.socials-container li {
    margin: 4px;
  }
  #header #navigation .group-center #header-top-bar .group-right ul.socials-container li a {
    font-size: 16px;
  }
  #header #navigation .group-center #header-top-menu .menu li {
    margin-left: 15px;
  }
  #header #navigation .group-center #header-top-menu .menu li:first-child {
    margin-left: 5px;
  }
  #header #navigation .group-center #header-top-menu .menu li a {
    font-size: 15px;
  }
}
@media (max-width: 880px) {
  #header {
    margin-top: 0px;
  }
  #header #navigation {
    padding: 0px 0px;
  }
  #header #navigation .group-center {
    justify-content: center;
    position: relative;
    padding: 20px 0px;
  }
  #header #navigation .group-center #logo {
    margin: 0px;
  }
  #header #navigation .group-center #logo svg,
  #header #navigation .group-center #logo img {
    width: 75px;
  }
  #header #navigation .group-center .logo-lines {
    display: none;
  }
  #header #navigation .group-center #site-slogan {
    margin-left: 25px;
    font-size: 15px;
  }
  #header #navigation .group-center .menus-bar {
    width: auto;
  }
  #header #navigation .group-center #header-top-bar {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-right: 20px;
    margin-left: 0;
    width: auto;
    border: none;
    padding: 0px;
  }
  #header #navigation .group-center #header-top-bar .group-right {
    display: none;
  }
  #header #navigation .group-center #header-top-bar .form-item.form-type-textfield {
    order: 0;
  }
  #header #navigation .group-center #header-top-bar .form-submit {
    order: 1;
  }
  #header #navigation .group-center #header-top-bar form.active .form-text {
    width: 250px;
  }
  #header #navigation .group-center #header-top-bar form .form-text {
    width: 0;
  }
  #header #navigation .group-center #header-top-bar form .form-text:focus {
    background-color: #fff;
    border: 1px solid #33c3f0;
  }
  #header #navigation .group-center #header-top-bar form .form-submit {
    position: absolute;
    right: 5px;
    width: 18px;
    height: 18px;
  }
  #header #navigation .group-center #header-top-menu {
    display: none;
  }
}
@media (max-width: 550px) {
  #header .mobile-toggle {
    height: 28px;
    width: 28px;
    margin: 0px 0px 0px 15px;
  }
  #header .mobile-toggle span {
    height: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  #header .mobile-toggle span:before, #header .mobile-toggle span:after {
    height: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  #header .mobile-toggle span:before {
    top: -6px;
  }
  #header .mobile-toggle span:after {
    bottom: -6px;
  }
  #header #navigation .group-center #site-slogan {
    margin-left: 12px;
    font-size: 14px;
  }
  #header #navigation #header-top-bar {
    right: 8px;
  }
  #header #navigation #header-top-bar form .form-submit {
    width: 24px;
  }
}
@media (max-width: 440px) {
  #header #navigation #header-menus .header-menu .menu li a {
    font-size: 40px;
  }
}
@media (max-width: 360px) {
  #header #navigation #header-menus .header-menu .menu li a {
    font-size: 34px;
  }
  #header .mobile-toggle {
    height: 20px;
    width: 20px;
  }
  #header #navigation .group-center #logo svg,
  #header #navigation .group-center #logo img {
    width: 100px;
  }
  #header #navigation .group-center #site-slogan {
    margin-left: 10px;
    font-size: 11px;
  }
}

.mailchimp-form {
  display: flex;
  margin: 0 auto;
  padding: 0;
  max-width: none;
  justify-content: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mailchimp-form .form-item-email {
  line-height: 0;
  width: 300px;
}
.mailchimp-form .form-item-email input {
  margin: 0px;
  height: 59px;
  font-size: 15px;
  line-height: normal;
  padding: 10px 25px;
}
.mailchimp-form .form-item-email input::placeholder {
  text-transform: uppercase;
}
@media (max-width: 550px) {
  .mailchimp-form {
    flex-wrap: wrap;
  }
  .mailchimp-form .form-item-email {
    width: 100%;
  }
  .mailchimp-form .form-item-email input {
    line-height: 40px;
    height: 62px;
  }
  .mailchimp-form .button-holder {
    width: 100%;
  }
  .mailchimp-form .button-holder .ajax-button {
    width: 100%;
  }
}

.newsletter-container .form {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
  position: relative;
}
.newsletter-container .form p {
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.newsletter-container .form .newsletter-success-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.newsletter-container .form.form-sent-success .mailchimp-form,
.newsletter-container .form.form-sent-success p {
  opacity: 0;
  pointer-events: none;
}
.newsletter-container .form.form-sent-success .newsletter-success-text {
  opacity: 1;
}

#footer .newsletter-container .form {
  display: block;
}

#newsletter-popup-block-wrapper {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  width: 100%;
  padding: 20px 0px;
  background: #fff;
  border-top: 1px solid #b5b5b5;
  display: none;
  pointer-events: none !important;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#newsletter-popup-block-wrapper.shown {
  pointer-events: auto !important;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
#newsletter-popup-block-wrapper .newsletter-popup-close-btn {
  color: #414042 !important;
  background: #FFF;
  font-weight: normal;
  border: 1px solid #545454;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 18px;
  text-align: center;
}
#newsletter-popup-block-wrapper .newsletter-popup-close-btn:hover {
  text-decoration: none !important;
  background: none !important;
}
#newsletter-popup-block-wrapper .step {
  display: none;
}
#newsletter-popup-block-wrapper .step.step-1 {
  display: block;
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  #newsletter-popup-block-wrapper .step .newsletter-popup-block-container {
    flex-wrap: wrap;
  }
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .left p {
  margin-bottom: 5px;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.03em;
  line-height: 1.25em;
  font-size: 16px;
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .left p.large {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0.03em;
  font-size: 24px;
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .left p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1000px) {
  #newsletter-popup-block-wrapper .step .newsletter-popup-block-container .left {
    margin-bottom: 20px;
  }
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .right .newsletter-popup-btn {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 10px 50px;
  text-align: center;
  background: #FFF;
  color: #1F3B34;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: normal;
  margin-top: 5px;
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .right .newsletter-popup-btn[data-proceed=yes] {
  background: #17e1e3;
  font-weight: 500;
}
#newsletter-popup-block-wrapper .step .newsletter-popup-block-container .right .newsletter-container .form.form-sent-success p {
  width: 100%;
}

#footer {
  width: 100%;
  background: #f6f3eb;
  color: #284b44;
  text-align: center;
  margin: 0;
  padding: 60px 0 40px;
  position: relative;
  font-size: 15px;
}
#footer p {
  font-weight: 300;
}
#footer > .container {
  max-width: 900px;
}
#footer .block {
  margin: 0;
}
#footer .region-footer-two {
  padding: 40px 0;
}
#footer .region-footer-three {
  padding: 0 0 40px;
}
#footer .region-footer-three #block-crmorg-v2-footerdisclosure {
  padding: 20px 0 60px;
}
#footer .region-footer-three .menu {
  margin: 0;
}
#footer .region-footer-three .menu li {
  list-style: none;
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0;
  margin: 0 10px 0;
  font-weight: 300;
}
#footer .region-footer-three .menu li.hide-in-footer {
  display: none;
}
#footer .region-footer-three .menu li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
@media (max-width: 550px) {
  #footer .region-footer-three .menu li {
    display: block;
    margin: 0 auto 20px;
  }
}
#footer .region-footer-bottom p {
  letter-spacing: 0.02em;
  font-size: 14px;
  font-weight: 300;
}
#footer .region-footer-bottom p a {
  color: #ff6b61;
}
#footer .region-footer-bottom #footer_logo {
  display: inline-block;
  float: none;
  height: 100%;
  vertical-align: middle;
  line-height: 0;
}
#footer .region-footer-bottom #footer_logo svg, #footer .region-footer-bottom #footer_logo img {
  width: 100px;
  height: auto;
}
#footer .region-footer-bottom #footer_logo img {
  display: none;
}

.image-as-background-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.image-as-background-container a {
  width: 100%;
  height: 100%;
  display: block;
}
.image-as-background-container img {
  display: none;
}

.addtoany_list .addtoany_label {
  vertical-align: middle;
}
.addtoany_list ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.addtoany_list ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 10px;
  padding: 0px;
}
.addtoany_list ul li:last-child {
  margin-right: 0px;
}
.addtoany_list ul li a {
  font-size: 22px;
  color: #ff6b61;
}

.youtube-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 30px;
}
.youtube-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe.twitter-tweet {
  display: inline-block !important;
  vertical-align: top !important;
  padding: 0px 30px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  iframe.twitter-tweet {
    padding: 0px 0px !important;
  }
}

.table-of-contents {
  margin-bottom: 30px;
}
.table-of-contents.to-init {
  display: none;
}

.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents h3.collapsible-trigger, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents h3.collapsible-trigger {
  font-size: 26px;
  font-weight: bold;
}
.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul, .node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol {
  margin: 0px;
}
.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li, .node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li {
  margin-bottom: 0px;
}
.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li a, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li a, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li a {
  display: inline-block;
  margin-bottom: 10px;
  text-indent: 0;
}
.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content ol li:before, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ul li:before, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content ol li:before {
  content: "" !important;
}
.node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-article.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-article.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-news.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-news.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-crmland.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-crmland.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-newsletter.node--view-mode-full .layout-body-article .field--name-body .table-of-contents .collapsible-content > ol > li, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ul > li, .node--type-newsletter.node--view-mode-full .layout-body-news .field--name-body .table-of-contents .collapsible-content > ol > li {
  padding-left: 20px;
}

#right-side-panel {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 600;
  width: 400px;
  max-width: 100%;
  padding: 40px 25px;
  height: 100vh;
  box-sizing: border-box;
  background-color: #f6f3eb;
  color: #1F3B34;
  overflow-x: hidden;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
#right-side-panel.opened {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: auto;
}
#right-side-panel.opened #block-crmorg-v2-advertisingdisclosure > .block > * {
  display: block;
}
#right-side-panel .right-panel-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 20px;
  width: 29px;
}
#right-side-panel .right-panel-close-btn:before, #right-side-panel .right-panel-close-btn:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #1F3B34;
  position: absolute;
  left: 0;
}
#right-side-panel .right-panel-close-btn:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#right-side-panel .right-panel-close-btn:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure {
  overflow-y: auto;
  padding-top: 40px;
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure p,
#right-side-panel #block-crmorg-v2-advertisingdisclosure ul,
#right-side-panel #block-crmorg-v2-advertisingdisclosure ol {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 16px;
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure a {
  color: #ff6b61;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure h3 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0;
  text-decoration: underline;
  padding: 0px;
  text-align: center;
}
#right-side-panel #block-crmorg-v2-advertisingdisclosure > .block > * {
  display: none;
}
@media (max-width: 768px) {
  #right-side-panel {
    width: 100%;
    z-index: 1000;
  }
}

body.jmcouillard-manager #right-side-panel .right-panel-close-btn {
  top: 45px;
}
body.jmcouillard-manager #right-side-panel #block-crmorg-v2-advertisingdisclosure {
  padding-top: 70px;
}

body.admin-menu.jmcouillard-manager #right-side-panel .right-panel-close-btn {
  top: 65px;
}
body.admin-menu.jmcouillard-manager #right-side-panel #block-crmorg-v2-advertisingdisclosure {
  padding-top: 90px;
}

.listing-pagination-container {
  display: inline-block;
  max-width: 100%;
}
.listing-pagination-container ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  padding: 10px 10px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 14px -11px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 10px 14px -11px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 10px 14px -11px rgba(0, 0, 0, 0.6);
}
.listing-pagination-container ul li {
  list-style: none;
  display: inline-block;
  margin: 0 10px 0;
  padding: 0;
}
.listing-pagination-container ul li a, .listing-pagination-container ul li span {
  padding: 5px 10px;
  opacity: 0.5;
}
.listing-pagination-container ul li a.current, .listing-pagination-container ul li span.current {
  pointer-events: none;
  opacity: 1;
}
.listing-pagination-container ul li a.current.first, .listing-pagination-container ul li a.current.prev, .listing-pagination-container ul li a.current.next, .listing-pagination-container ul li a.current.last, .listing-pagination-container ul li span.current.first, .listing-pagination-container ul li span.current.prev, .listing-pagination-container ul li span.current.next, .listing-pagination-container ul li span.current.last {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .listing-pagination-container ul li {
    margin: 0 2px 0;
  }
  .listing-pagination-container ul li a, .listing-pagination-container ul li span {
    padding: 5px 4px;
  }
}

#block-crmorg-v2-cookiesui {
  height: 0;
  overflow: hidden;
}

#cookies {
  color: #1F3B34;
  text-align: left;
}
#cookies * {
  letter-spacing: 0.025em;
}
#cookies label {
  background: #f2f2f3;
  border-color: #f2f2f3;
}
#cookies label:after {
  background: #FFF;
}
#cookies input:checked + label {
  background: #1F3B34;
  border-color: #1F3B34;
}
#cookies input:focus + label {
  border-color: #1F3B34;
}
#cookies input:checked:focus + label {
  border-color: #1F3B34;
}
#cookies .cookies-banner,
#cookies .cookies-preferences {
  background: #FCE0D7;
  max-width: 650px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
#cookies .cookies-banner .cookies-title,
#cookies .cookies-preferences .cookies-title {
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}
#cookies .cookies-banner .cookies-back-trigger,
#cookies .cookies-preferences .cookies-back-trigger {
  top: 24px;
}
#cookies .cookies-banner .cookies-back-trigger img, #cookies .cookies-banner .cookies-back-trigger svg,
#cookies .cookies-preferences .cookies-back-trigger img,
#cookies .cookies-preferences .cookies-back-trigger svg {
  width: 30px;
}
#cookies .cookies-banner ul li.service-item,
#cookies .cookies-preferences ul li.service-item {
  margin-left: 0;
  padding-left: 0;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-weight: 500;
}
#cookies .cookies-back-trigger path {
  fill: #1F3B34;
}
#cookies .cookies-btn {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.03em;
  color: #1F3B34 !important;
  border: 1px solid transparent !important;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px;
  background-color: #FFF !important;
  opacity: 1 !important;
  cursor: pointer;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cookies .cookies-btn:focus, #cookies .cookies-btn:hover {
  color: #FFF !important;
  border-color: #1F3B34 !important;
  background-color: #1F3B34 !important;
  border-width: 2px;
}

.cookies-consent-frame .cookies-consent-frame-wrapper .cookies-consent-frame-btn {
  font-size: 14px;
  line-height: normal;
  color: #1F3B34;
  background: #FFF;
  border-width: 1px;
  border-radius: 18px;
  padding: 10px 20px 7px;
  margin-right: 10px;
  opacity: 1 !important;
  -webkit-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookies-consent-frame .cookies-consent-frame-wrapper .cookies-consent-frame-btn:hover {
  border-color: #1F3B34;
}
.cookies-consent-frame .cookies-consent-frame-wrapper .cookies-consent-frame-btn.important {
  background: #1F3B34;
  border-color: #1F3B34;
}
.cookies-consent-frame .cookies-consent-frame-wrapper .cookies-consent-frame-btn.important:hover {
  background: #2d564c;
}

.node--type-basic-page.node--view-mode-full > .container {
  padding-top: 80px;
  max-width: 1080px;
}
@media (max-width: 1000px) {
  .node--type-basic-page.node--view-mode-full > .container {
    padding-top: 4vw;
  }
}
.node--type-basic-page.node--view-mode-full .layout-banner {
  padding: 80px 0px 180px;
}
.node--type-basic-page.node--view-mode-full .layout-banner .field--name-field-top-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 1000px) {
  .node--type-basic-page.node--view-mode-full .layout-banner {
    padding: 4vw 0px 10vw;
  }
}
.node--type-basic-page.node--view-mode-full .layout-body {
  position: relative;
  box-sizing: border-box;
  padding: 8vw 8vw;
}
.node--type-basic-page.node--view-mode-full .layout-body:before {
  content: "";
  position: absolute;
  border-top: 2px solid #ff6b61;
  border-left: 2px solid #ff6b61;
  width: 95%;
  height: 240px;
  top: 0;
  left: 0;
  pointer-events: none;
}
.node--type-basic-page.node--view-mode-full .layout-body:after {
  content: "";
  position: absolute;
  border-top: 1px solid #ff6b61;
  width: 95%;
  height: 0px;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-node-title {
  text-align: center;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-node-title h1 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 49px;
  margin-bottom: 40px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body img {
  max-width: 100%;
  height: auto;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body p,
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul,
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 26px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body a {
  color: #ff6b61;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.button-link {
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 10px 50px;
  text-align: center;
  background: #17e1e3;
  color: #FFF;
  text-transform: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 75%;
  margin-top: 5px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.st-link.button-link,
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.vt-link.button-link {
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 10px 50px;
  text-align: center;
  background: #ff6b61;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 500;
  font-size: 75%;
  margin-top: 5px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 49px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body h3 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 26px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol {
  margin: 0px 0px 1.5em 2vw;
  padding: 0;
  counter-reset: item;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol li {
  margin: 0px 0px 10px 0px;
  padding: 0 0 0 2em;
  text-indent: -2em;
  list-style-type: none;
  counter-increment: item;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol li p {
  display: inline;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol li:before {
  vertical-align: top;
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul {
  margin: 0px 0px 1.5em 2vw;
  padding: 0;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul li {
  margin: 0px 0px 10px 2em;
  padding: 0 0 0 10px;
}
.node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul li p {
  display: inline;
}
@media (max-width: 1000px) {
  .node--type-basic-page.node--view-mode-full .layout-body {
    padding: 6vw;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-node-title h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body p,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol {
    font-size: 22px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h2 {
    font-size: 40px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h3 {
    font-size: 22px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul {
    margin: 0px 0px 1.5em 0;
  }
}
@media (max-width: 768px) {
  .node--type-basic-page.node--view-mode-full .layout-body {
    padding: 40px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-node-title h1 {
    font-size: 36px;
    margin-bottom: 26px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body p,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol {
    font-size: 20px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h2 {
    font-size: 36px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h3 {
    font-size: 20px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul {
    margin: 0px 0px 1.5em 0;
  }
}
@media (max-width: 550px) {
  .node--type-basic-page.node--view-mode-full .layout-body {
    padding: 30px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-node-title h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.button-link {
    width: 100%;
    padding: 10px 10px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.st-link.button-link,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body a.vt-link.button-link {
    width: 100%;
    padding: 10px 10px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body p,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ul,
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body ol {
    font-size: 18px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h2 {
    font-size: 28px;
  }
  .node--type-basic-page.node--view-mode-full .layout-body .field--name-body h3 {
    font-size: 18px;
  }
}

.node--type-type-front-page #page {
  background: #F6F3EB;
}

.node--type-front-page.node--view-mode-full .down-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/down-arrow-graded.svg") center center no-repeat;
  background-size: 100%;
  margin: 70px auto 120px;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .down-arrow {
    display: none;
  }
}
.node--type-front-page.node--view-mode-full .section-front-header {
  text-align: center;
  margin-top: 3vw;
  margin-bottom: 4vw;
}
.node--type-front-page.node--view-mode-full .section-front-header h1 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-weight: 500;
  letter-spacing: 0em;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-size: 70px;
  line-height: 1.25;
  background-color: #17e1e3;
  background: -moz-linear-gradient(top, #17e1e3 25%, #ff6b61 90%);
  background: -webkit-linear-gradient(top, #17e1e3 25%, #ff6b61 90%);
  background: linear-gradient(to bottom, #17e1e3 25%, #ff6b61 90%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0;
}
.node--type-front-page.node--view-mode-full .section-front-header p.subtext {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.05em;
  display: inline-block;
  font-size: 30px;
  line-height: 1.8em;
  margin: 0px;
}
.node--type-front-page.node--view-mode-full .section-front-header .separator {
  display: none;
}
@media (max-width: 1000px) {
  .node--type-front-page.node--view-mode-full .section-front-header h1 {
    font-size: 55px;
  }
  .node--type-front-page.node--view-mode-full .section-front-header p.subtext {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .section-front-header {
    margin-top: 5vw;
    margin-bottom: 8vw;
  }
  .node--type-front-page.node--view-mode-full .section-front-header h1 {
    font-size: 10vw;
    line-height: 1.2;
    margin-bottom: 4vw;
  }
  .node--type-front-page.node--view-mode-full .section-front-header h1 span:last-child {
    margin-top: -20px;
  }
  .node--type-front-page.node--view-mode-full .section-front-header p.subtext {
    font-size: 21px;
    line-height: 1.25em;
  }
}
@media (max-width: 500px) {
  .node--type-front-page.node--view-mode-full .section-front-header h1 span:last-child {
    margin-top: -10px;
  }
}
@media (max-width: 400px) {
  .node--type-front-page.node--view-mode-full .section-front-header p.subtext {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .node--type-front-page.node--view-mode-full .section-front-header h1 span:last-child {
    margin-top: -6px;
  }
}
.node--type-front-page.node--view-mode-full .listing-label {
  margin-bottom: 30px;
}
.node--type-front-page.node--view-mode-full .listing-label span {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.05em;
  display: inline-block;
  font-size: 30px;
  line-height: 1.8em;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .listing-label {
    margin: 0 auto 30px;
    text-align: center;
  }
  .node--type-front-page.node--view-mode-full .listing-label span {
    font-weight: 300;
  }
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box {
  margin: 0 auto 4vw;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-crm-experts-box {
    margin-bottom: 8vw;
  }
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container {
  border-radius: 20px;
  position: relative;
  background: #FCE0D7;
  padding: 30px 40px 30px;
  margin-bottom: 0px;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container span.title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container span.red {
  color: #ff564e;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container h2 {
  color: #14BBBC;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: bold;
  max-width: 600px;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container p {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 23px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container p {
    font-weight: 300;
  }
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container {
  text-align: right;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container {
    text-align: center;
  }
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  margin: 0px;
  margin-left: 20px;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  background: #ff4033;
  color: #FFF;
  user-select: auto;
  border: none;
  font-weight: bold;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button a {
  color: white;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button:hover, .node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button:hover, .node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button.button-light {
  padding: 15px 25px;
  font-weight: 300;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button:hover {
  border: none;
  color: #FFF;
  text-decoration: underline;
}
.node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button.button-blue {
  background: #17e1e3;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-crm-experts-box .inner-container .buttons-container a.button {
    margin-bottom: 20px;
  }
}
.node--type-front-page.node--view-mode-full .front-newsletter-box {
  margin: 0 auto 4vw;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-newsletter-box {
    margin-bottom: 8vw;
  }
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container {
  border-radius: 20px;
  position: relative;
  background: #FCE0D7;
  padding: 30px 40px 30px;
  margin-bottom: 0px;
  display: flex;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .column {
  float: none;
  width: 50%;
}
@media (max-width: 1000px) {
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container {
    flex-direction: column;
  }
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .column {
    width: 100%;
    margin: 0px;
  }
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .column:first-child {
    margin-bottom: 20px;
  }
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container span.title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container h2 {
  color: #14BBBC;
  margin-bottom: 0;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container p {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 18px;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container p.slogan {
  font-size: 23px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container p {
    font-weight: 300;
  }
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form p {
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  font-size: 16px;
  text-align: center;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form {
  margin: 0px;
  width: 100%;
  max-width: 500px;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .form-item-email {
  width: 100%;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .form-item-email input {
  border-radius: 10px 0px 0px 10px;
  border-color: #17e1e3;
  text-transform: none;
  font-size: 18px;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .form-item-email input::placeholder {
  text-transform: none;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .button-holder.loading .ajax-button .form-submit,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .button-holder.loading .ajax-button input[type=submit] {
  font-size: 0;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .button-holder.loading .ajax-button .load {
  opacity: 1;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .button-holder.hide-loading .ajax-button .load {
  opacity: 0;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transform: scale(0) !important;
  transform: scale(0) !important;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button {
  height: 100%;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .done,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .failed {
  color: #ff6b61;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit] {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  margin: 0px;
  height: 100%;
  padding: 15px 25px;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  background: #17e1e3;
  color: #000;
  user-select: auto;
  border: none;
  border-radius: 0px 10px 10px 0px;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit a,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit] a {
  color: white;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit:hover, .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit:focus,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit]:hover,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit:hover, .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit:active,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit]:hover,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit]:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit.button-sm,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit].button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit.button-light,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit].button-light {
  padding: 15px 25px;
  font-weight: 300;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button .form-submit:hover,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .ajax-button input[type=submit]:hover {
  border: none;
  color: #000;
  text-decoration: underline;
}
@media (max-width: 550px) {
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .form-item-email input {
    border-radius: 10px 10px 0px 0px;
  }
  .node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .mailchimp-form .form-submit {
    border-radius: 0px 0px 10px 10px;
  }
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form .newsletter-success-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0px;
  pointer-events: none;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form.form-sent-success .mailchimp-form,
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form.form-sent-success p {
  opacity: 0;
  pointer-events: none;
}
.node--type-front-page.node--view-mode-full .front-newsletter-box .inner-container .form.form-sent-success .newsletter-success-text {
  opacity: 1;
}
.node--type-front-page.node--view-mode-full .front-body-content {
  margin: 0 auto 4vw;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-body-content {
    margin-bottom: 8vw;
  }
}
.node--type-front-page.node--view-mode-full .front-body-content h3 {
  font-size: 24px;
}
.node--type-front-page.node--view-mode-full .front-embed-content {
  margin: 0 auto 4vw;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-embed-content {
    margin-bottom: 8vw;
    padding: 0px 25px;
  }
}
.node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper {
  position: relative;
  width: 80%;
  padding-bottom: 45%; /* 16:9 */
  height: 0;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper {
    width: 90%;
    padding-bottom: 50.625%; /* 16:9 */
  }
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
  }
}
.node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper iframe,
.node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper object,
.node--type-front-page.node--view-mode-full .front-embed-content .embed-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.node--type-front-page.node--view-mode-full .articles {
  margin-bottom: 4vw;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .articles {
    margin-bottom: 8vw;
  }
}
.node--type-front-page.node--view-mode-full .articles,
.node--type-front-page.node--view-mode-full .most-viewed-articles {
  text-align: center;
}
.node--type-front-page.node--view-mode-full .articles > h2,
.node--type-front-page.node--view-mode-full .articles .section-title h2,
.node--type-front-page.node--view-mode-full .most-viewed-articles > h2,
.node--type-front-page.node--view-mode-full .most-viewed-articles .section-title h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 60px;
  text-align: center;
  display: inline-block;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 10px;
}
.node--type-front-page.node--view-mode-full .articles .section-title,
.node--type-front-page.node--view-mode-full .most-viewed-articles .section-title {
  margin-bottom: 100px;
}
.node--type-front-page.node--view-mode-full .articles .section-title p,
.node--type-front-page.node--view-mode-full .most-viewed-articles .section-title p {
  font-size: 17px;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .articles .section-title,
  .node--type-front-page.node--view-mode-full .most-viewed-articles .section-title {
    margin-bottom: 50px;
  }
}
.node--type-front-page.node--view-mode-full .articles .articles-list,
.node--type-front-page.node--view-mode-full .articles .most-viewed-articles-list,
.node--type-front-page.node--view-mode-full .most-viewed-articles .articles-list,
.node--type-front-page.node--view-mode-full .most-viewed-articles .most-viewed-articles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.node--type-front-page.node--view-mode-full .articles .articles-list .article,
.node--type-front-page.node--view-mode-full .articles .most-viewed-articles-list .article,
.node--type-front-page.node--view-mode-full .most-viewed-articles .articles-list .article,
.node--type-front-page.node--view-mode-full .most-viewed-articles .most-viewed-articles-list .article {
  width: 33%;
  margin-bottom: 50px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .articles .articles-list .article,
  .node--type-front-page.node--view-mode-full .articles .most-viewed-articles-list .article,
  .node--type-front-page.node--view-mode-full .most-viewed-articles .articles-list .article,
  .node--type-front-page.node--view-mode-full .most-viewed-articles .most-viewed-articles-list .article {
    width: 100%;
    padding: 0px;
    margin-bottom: 10px;
    border: 0px;
  }
}
.node--type-front-page.node--view-mode-full .articles #load-more,
.node--type-front-page.node--view-mode-full .most-viewed-articles #load-more {
  display: inline-block;
}
.node--type-front-page.node--view-mode-full .articles #load-more.disabled,
.node--type-front-page.node--view-mode-full .most-viewed-articles #load-more.disabled {
  display: none;
}
@media (max-width: 768px) {
  .node--type-front-page.node--view-mode-full .articles,
  .node--type-front-page.node--view-mode-full .most-viewed-articles {
    margin-bottom: 50px;
  }
}
.node--type-front-page.node--view-mode-full .newsletter-container {
  background-color: #EAEFF6;
}
.node--type-front-page.node--view-mode-full .newsletter-container > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1250px;
  width: 100%;
  text-align: center;
  padding: 50px 20px 75px 20px;
  margin-top: 70px;
}
@media (max-width: 550px) {
  .node--type-front-page.node--view-mode-full .newsletter-container {
    display: none;
  }
}
.node--type-front-page.node--view-mode-full .newsletter-container p {
  margin-bottom: 2px;
}
.node--type-front-page.node--view-mode-full .newsletter-container .form {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 35px;
}
.node--type-front-page.node--view-mode-full .newsletter-container .form p {
  margin-right: 20px;
  padding-bottom: 10px;
}
.node--type-front-page.node--view-mode-full .newsletter-container .form .mailchimp-form {
  margin: 0;
}
@media (max-width: 830px) {
  .node--type-front-page.node--view-mode-full .newsletter-container .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .node--type-front-page.node--view-mode-full .newsletter-container .form p {
    margin-right: 0;
  }
}

.node--type-listing.node--view-mode-full .section-front-header {
  margin-bottom: 2.4vw;
}
.node--type-listing.node--view-mode-full .articles {
  padding-top: 0;
}

html.ie .node--type-front-page.node--view-mode-full .section-front-header h1.splitted span, html.ie .node-type-listing .section-front-header h1.splitted span {
  background: none;
  color: #1F3B34;
}

#main,
.field--name-field-slides {
  -webkit-transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.field--name-field-slides > .field-items > .field-item:first-child .front-slide {
  min-height: calc(100vh - 126px);
}
.field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top {
  padding: 10px 0 25px;
}
.field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 {
  display: block;
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-weight: 500;
  letter-spacing: 0em;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-size: 120px;
  line-height: 0.8;
  background-color: #17e1e3;
  background: -moz-linear-gradient(top, #17e1e3 10%, #ff6b61 90%);
  background: -webkit-linear-gradient(top, #17e1e3 10%, #ff6b61 90%);
  background: linear-gradient(to bottom, #17e1e3 10%, #ff6b61 90%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}
.field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 span {
  color: #17e1e3;
}
@media (max-width: 750px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top {
    padding: 0px 0 25px;
  }
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top .front-slide-text h2 {
    margin-bottom: 10px;
  }
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top .front-slide-text h3.subtext {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top .front-slide-graphic svg {
    max-width: none;
    margin-left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 115%;
    max-height: 100%;
  }
}
@media (max-width: 400px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top {
    min-height: 80vh;
    padding: 0px 0 25px;
  }
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top .front-slide-graphic svg {
    max-width: none;
    margin-left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 105%;
    max-height: 100%;
  }
}
@media (max-width: 1200px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 {
    font-size: 100px;
  }
}
@media (max-width: 1000px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 {
    font-size: 13vw;
    line-height: 1;
    background-color: #17e1e3;
    background: -moz-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
    background: -webkit-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
    background: linear-gradient(to bottom, #17e1e3 0%, #ff6b61 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline;
    display: inline-block;
  }
}
@media (max-width: 360px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top h2 {
    font-size: 50px;
  }
}
@media (max-width: 320px) {
  .field--name-field-slides > .field-items > .field-item:first-child .front-slide.layout-image-top .front-slide-text h2 {
    font-size: 13vw;
  }
}

.field--name-slides-clone .field--name-field-slides > .field-items > .field-item:nth-child(1) .front-slide h1 {
  display: inline-block;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
  -webkit-font-smoothing: subpixel-antialiased;
}
.field--name-slides-clone .field--name-field-slides > .field-items > .field-item:nth-child(3) .front-slide .front-slide-graphic {
  margin-top: 0px;
}
.field--name-slides-clone .field--name-field-slides > .field-items > .field-item:last-child .front-slide h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 3.6rem;
  line-height: 1.6;
  display: block;
  background: none;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased;
}

.front-slide,
.node--type-front-page.node--view-mode-full .front-slide {
  min-height: 55vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .front-slide,
  .node--type-front-page.node--view-mode-full .front-slide {
    min-height: auto;
    padding: 50px 0;
  }
}
@media (max-width: 750px) {
  .front-slide,
  .node--type-front-page.node--view-mode-full .front-slide {
    min-height: auto;
    padding: 50px 0;
  }
}
.front-slide .down-arrow,
.node--type-front-page.node--view-mode-full .front-slide .down-arrow {
  width: 30px;
  height: 30px;
  margin-bottom: 0px;
  display: block;
}
@media (max-width: 750px) {
  .front-slide .down-arrow,
  .node--type-front-page.node--view-mode-full .front-slide .down-arrow {
    margin-top: 15px;
  }
}
@media (max-width: 320px) {
  .front-slide .down-arrow,
  .node--type-front-page.node--view-mode-full .front-slide .down-arrow {
    margin-top: 0px;
  }
}
.front-slide .front-slide-graphic,
.node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic {
  text-align: center;
}
.front-slide .front-slide-graphic svg, .front-slide .front-slide-graphic img,
.node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic svg,
.node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic img {
  max-width: 100%;
  height: auto;
}
.front-slide.layout-image-top,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-top {
  text-align: center;
}
.front-slide.layout-image-top .front-slide-graphic,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-top .front-slide-graphic {
  margin-top: 0px;
  margin-bottom: 25px;
}
@media (max-width: 1000px) {
  .front-slide.layout-image-top .front-slide-text h3.subtext,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-top .front-slide-text h3.subtext {
    margin-top: 20px;
    margin-left: 20%;
    margin-right: 20%;
  }
}
@media (max-width: 750px) {
  .front-slide.layout-image-top,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-top {
    min-height: auto;
    padding: 50px 0 25px;
  }
}
@media (max-width: 400px) {
  .front-slide.layout-image-top,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-top {
    padding: 10px 0 25px;
  }
}
.front-slide.layout-image-right .front-slide-graphic,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-right .front-slide-graphic {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .front-slide.layout-image-right .front-slide-graphic,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-right .front-slide-graphic {
    margin-top: 0px;
  }
}
.front-slide.layout-image-left .front-slide-graphic,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-left .front-slide-graphic {
  margin-top: 200px;
}
@media (max-width: 750px) {
  .front-slide.layout-image-left .front-slide-graphic,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-left .front-slide-graphic {
    margin-top: 0px;
  }
}
.front-slide.layout-image-quote .front-slide-graphic,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .front-slide-graphic {
  margin-top: 100px;
}
.front-slide.layout-image-quote .block-quote,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote {
  background: transparent;
  border: 2px solid #ff6b61;
  border-image: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  border-image: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  border-image: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  border-image-slice: 1;
  text-align: center;
  padding: 30px;
}
.front-slide.layout-image-quote .block-quote, .front-slide.layout-image-quote .block-quote p,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote p {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}
.front-slide.layout-image-quote .block-quote p,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote p {
  margin-bottom: 20px;
}
.front-slide.layout-image-quote .block-quote .quote-source,
.node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote .quote-source {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 1em;
}
@media (max-width: 1000px) {
  .front-slide.layout-image-quote,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-quote {
    margin-top: 0px;
  }
  .front-slide.layout-image-quote .block-quote,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .block-quote {
    border: 0;
  }
}
@media (max-width: 750px) {
  .front-slide.layout-image-quote .front-slide-graphic,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .front-slide-graphic {
    margin: 50px 0px 0px;
  }
  .front-slide.layout-image-quote .front-slide-graphic svg,
  .node--type-front-page.node--view-mode-full .front-slide.layout-image-quote .front-slide-graphic svg {
    width: 140px;
  }
}
.front-slide h1,
.node--type-front-page.node--view-mode-full .front-slide h1 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: subpixel-antialiased;
}
.front-slide h2,
.node--type-front-page.node--view-mode-full .front-slide h2 {
  display: inline-block;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
  -webkit-font-smoothing: subpixel-antialiased;
}
.front-slide h3.subtext,
.node--type-front-page.node--view-mode-full .front-slide h3.subtext {
  font-size: 36px;
}
.front-slide h4,
.node--type-front-page.node--view-mode-full .front-slide h4 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 4.5rem;
  line-height: 5rem;
}
.front-slide .category-title,
.node--type-front-page.node--view-mode-full .front-slide .category-title {
  font-weight: 400;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.15em;
  margin-bottom: 10px;
}
.front-slide .category-title:after,
.node--type-front-page.node--view-mode-full .front-slide .category-title:after {
  content: "";
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
}
.front-slide .collapsible .collapsible-trigger,
.node--type-front-page.node--view-mode-full .front-slide .collapsible .collapsible-trigger {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
}
.front-slide .collapsible .collapsible-trigger:before,
.node--type-front-page.node--view-mode-full .front-slide .collapsible .collapsible-trigger:before {
  content: "";
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  margin-bottom: 15px;
}
.front-slide .collapsible .collapsible-trigger:after,
.node--type-front-page.node--view-mode-full .front-slide .collapsible .collapsible-trigger:after {
  content: "";
  background: transparent url("../images/down-arrow-graded-notail.svg") no-repeat;
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -2px;
  right: 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: -moz-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: -o-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.front-slide .collapsible .collapsible-trigger strong,
.node--type-front-page.node--view-mode-full .front-slide .collapsible .collapsible-trigger strong {
  font-weight: 400;
}
.front-slide .collapsible.opened .collapsible-trigger:after,
.node--type-front-page.node--view-mode-full .front-slide .collapsible.opened .collapsible-trigger:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.front-slide .collapsible-content,
.node--type-front-page.node--view-mode-full .front-slide .collapsible-content {
  margin-bottom: 20px;
}
.front-slide p,
.node--type-front-page.node--view-mode-full .front-slide p {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 23px;
}
@media (max-width: 768px) {
  .front-slide p,
  .node--type-front-page.node--view-mode-full .front-slide p {
    font-weight: 300;
  }
}
.front-slide .arrow-link,
.node--type-front-page.node--view-mode-full .front-slide .arrow-link {
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  padding-right: 25px;
}
.front-slide .arrow-link:after,
.node--type-front-page.node--view-mode-full .front-slide .arrow-link:after {
  content: "";
  background: transparent url("../images/down-arrow-graded.svg") no-repeat;
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 1200px) {
  .front-slide h3.subtext,
  .node--type-front-page.node--view-mode-full .front-slide h3.subtext {
    font-size: 30px;
  }
  .front-slide h4,
  .node--type-front-page.node--view-mode-full .front-slide h4 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .front-slide p,
  .node--type-front-page.node--view-mode-full .front-slide p {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .front-slide h3.subtext,
  .node--type-front-page.node--view-mode-full .front-slide h3.subtext {
    font-size: 26px;
  }
  .front-slide p,
  .node--type-front-page.node--view-mode-full .front-slide p {
    font-size: 20px;
  }
  .front-slide .front-slide-graphic,
  .node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic {
    margin: 50px 0;
  }
  .front-slide .front-slide-graphic svg, .front-slide .front-slide-graphic img,
  .node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic svg,
  .node--type-front-page.node--view-mode-full .front-slide .front-slide-graphic img {
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .front-slide .column, .front-slide .columns,
  .node--type-front-page.node--view-mode-full .front-slide .column,
  .node--type-front-page.node--view-mode-full .front-slide .columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
    margin: 0;
  }
  .front-slide .column.offset-by-one, .front-slide .column.offset-by-one, .front-slide .column.offset-by-two, .front-slide .column.offset-by-two, .front-slide .columns.offset-by-one, .front-slide .columns.offset-by-one, .front-slide .columns.offset-by-two, .front-slide .columns.offset-by-two,
  .node--type-front-page.node--view-mode-full .front-slide .column.offset-by-one,
  .node--type-front-page.node--view-mode-full .front-slide .column.offset-by-one,
  .node--type-front-page.node--view-mode-full .front-slide .column.offset-by-two,
  .node--type-front-page.node--view-mode-full .front-slide .column.offset-by-two,
  .node--type-front-page.node--view-mode-full .front-slide .columns.offset-by-one,
  .node--type-front-page.node--view-mode-full .front-slide .columns.offset-by-one,
  .node--type-front-page.node--view-mode-full .front-slide .columns.offset-by-two,
  .node--type-front-page.node--view-mode-full .front-slide .columns.offset-by-two {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .front-slide h3.subtext,
  .node--type-front-page.node--view-mode-full .front-slide h3.subtext {
    font-size: 22px;
  }
  .front-slide p,
  .node--type-front-page.node--view-mode-full .front-slide p {
    font-size: 18px;
  }
  .front-slide .category-title,
  .node--type-front-page.node--view-mode-full .front-slide .category-title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .front-slide .split-text,
  .node--type-front-page.node--view-mode-full .front-slide .split-text {
    display: flex;
    flex-direction: column;
  }
  .front-slide .arrow-link,
  .node--type-front-page.node--view-mode-full .front-slide .arrow-link {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .front-slide p,
  .node--type-front-page.node--view-mode-full .front-slide p {
    font-size: 16px;
  }
}

body.page-node-34 .node--type-basic-page.node--view-mode-full .layout-body:before {
  content: "";
  position: absolute;
  border-left: 0px;
  border-top: 2px solid #ff6b61;
  border-right: 2px solid #ff6b61;
  width: 240px;
  height: 330px;
  top: 0;
  right: 0;
  left: auto;
  pointer-events: none;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full .layout-body:after {
  content: "";
  position: absolute;
  border-top: 1px solid #ff6b61;
  width: 95%;
  height: 0px;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full .layout-body .field--name-body {
  text-align: center;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form {
  padding: 0px;
  width: 100%;
  max-width: 768px;
  margin: 80px auto 0px;
  text-align: center;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .form-item {
  width: 100%;
  margin-bottom: 50px;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0px;
  width: 100%;
  vertical-align: top;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field {
  position: relative;
  display: block;
  float: right;
  line-height: normal;
  height: 96px;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 16px;
  margin-bottom: 0px;
  padding: 20px 25px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  border-radius: 0;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field:focus {
  outline: none;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field.input__field--yoshiko {
  -webkit-transition: background-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__label {
  display: inline-block;
  float: right;
  width: 100%;
  box-sizing: border-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 16px;
  margin-bottom: 0px;
  padding: 0px 25px;
  color: #1F3B34;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__label.input__label--yoshiko {
  text-align: left;
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  overflow: hidden;
  text-transform: uppercase;
  -webkit-transform: translate3d(0, 60px, 0);
  -moz-transform: translate3d(0, 60px, 0);
  -ms-transform: translate3d(0, 60px, 0);
  -o-transform: translate3d(0, 60px, 0);
  transform: translate3d(0, 60px, 0);
  -webkit-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__label .input__label-content {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__label .input__label-content.input__label-content--yoshiko {
  color: #1F3B34;
  padding: 0px;
  -webkit-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__label .input__label-content.input__label-content--yoshiko:after {
  content: attr(data-content);
  position: absolute;
  bottom: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  color: #ff6b61;
  padding: 0.25em 0;
  font-size: 0.85em;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--textarea .input__field {
  height: 300px;
  resize: none;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--textarea .input__label.input__label--yoshiko {
  -webkit-transform: translate3d(0, 48px, 0);
  -moz-transform: translate3d(0, 48px, 0);
  -ms-transform: translate3d(0, 48px, 0);
  -o-transform: translate3d(0, 48px, 0);
  transform: translate3d(0, 48px, 0);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field--yoshiko:focus + .input__label--yoshiko, body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--filled .input__label--yoshiko, body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--filled.input--textarea .input__label--yoshiko {
  -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);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko, body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--filled .input__label-content--yoshiko, body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input.input--filled.input--textarea .input__label-content--yoshiko {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field--yoshiko.error {
  color: red;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .input .input__field--yoshiko.error + .input__label--yoshiko .input__label-content--yoshiko {
  color: red;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .button-holder .ajax-button {
  position: relative;
  display: inline-block;
  width: 300px;
  text-align: center;
}
body.page-node-34 .node--type-basic-page.node--view-mode-full #crmorg-contact-form .messages {
  display: none;
}
.node--type-listing.node--view-mode-full .down-arrow, .path-taxonomy .down-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: url("../images/down-arrow-graded.svg") center center no-repeat;
  background-size: 100%;
  margin: 70px auto 120px;
}
@media (max-width: 768px) {
  .node--type-listing.node--view-mode-full .down-arrow, .path-taxonomy .down-arrow {
    display: none;
  }
}
.node--type-listing.node--view-mode-full .featured-articles,
.node--type-listing.node--view-mode-full .featured-news,
.node--type-listing.node--view-mode-full .featured-nodes, .path-taxonomy .featured-articles,
.path-taxonomy .featured-news,
.path-taxonomy .featured-nodes {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .node--type-listing.node--view-mode-full .featured-articles,
  .node--type-listing.node--view-mode-full .featured-news,
  .node--type-listing.node--view-mode-full .featured-nodes, .path-taxonomy .featured-articles,
  .path-taxonomy .featured-news,
  .path-taxonomy .featured-nodes {
    margin-bottom: 60px;
  }
}
.node--type-listing.node--view-mode-full .section-front-header, .path-taxonomy .section-front-header {
  text-align: center;
  margin-bottom: 5vw;
}
.node--type-listing.node--view-mode-full .section-front-header h1, .path-taxonomy .section-front-header h1 {
  margin: 40px 0px 2.5vw;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  text-transform: uppercase;
  font-size: 120px;
}
.node--type-listing.node--view-mode-full .section-front-header h1 span, .path-taxonomy .section-front-header h1 span {
  color: #17e1e3;
}
.node--type-listing.node--view-mode-full .section-front-header h1.split-text span, .path-taxonomy .section-front-header h1.split-text span {
  background-color: #17e1e3;
  background: -moz-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to bottom, #17e1e3 0%, #ff6b61 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
  display: inline-block;
}
.node--type-listing.node--view-mode-full .section-front-header h1.split-text h2, .path-taxonomy .section-front-header h1.split-text h2 {
  background-color: #17e1e3;
  background: -moz-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(top, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to bottom, #17e1e3 0%, #ff6b61 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.node--type-listing.node--view-mode-full .section-front-header p.subtext, .path-taxonomy .section-front-header p.subtext {
  font-size: 24px;
  text-transform: uppercase;
  margin: 0px 0px 3vw;
}
.node--type-listing.node--view-mode-full .section-front-header .separator, .path-taxonomy .section-front-header .separator {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  background-color: #17e1e3;
  background: -moz-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to right, #17e1e3 0%, #ff6b61 100%);
}
@media (max-width: 1200px) {
  .node--type-listing.node--view-mode-full .section-front-header h1, .path-taxonomy .section-front-header h1 {
    font-size: 100px;
  }
  .node--type-listing.node--view-mode-full .section-front-header p, .path-taxonomy .section-front-header p {
    font-size: 22px;
  }
}
@media (max-width: 1000px) {
  .node--type-listing.node--view-mode-full .section-front-header h1, .path-taxonomy .section-front-header h1 {
    font-size: 80px;
  }
  .node--type-listing.node--view-mode-full .section-front-header p, .path-taxonomy .section-front-header p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-listing.node--view-mode-full .section-front-header h1, .path-taxonomy .section-front-header h1 {
    font-size: 18vw;
  }
  .node--type-listing.node--view-mode-full .section-front-header p, .path-taxonomy .section-front-header p {
    font-size: 3vw;
  }
  .node--type-listing.node--view-mode-full .section-front-header .split-text, .path-taxonomy .section-front-header .split-text {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 360px) {
  .node--type-listing.node--view-mode-full .section-front-header h1, .path-taxonomy .section-front-header h1 {
    font-size: 50px;
  }
  .node--type-listing.node--view-mode-full .section-front-header p, .path-taxonomy .section-front-header p {
    font-size: 3vw;
  }
}
.node--type-listing.node--view-mode-full .articles, .node--type-listing.node--view-mode-full .news, .node--type-listing.node--view-mode-full .crmland, .path-taxonomy .articles, .path-taxonomy .news, .path-taxonomy .crmland {
  text-align: center;
  padding-top: 50px;
}
.node--type-listing.node--view-mode-full .articles > h2,
.node--type-listing.node--view-mode-full .articles .section-title h2, .node--type-listing.node--view-mode-full .news > h2,
.node--type-listing.node--view-mode-full .news .section-title h2, .node--type-listing.node--view-mode-full .crmland > h2,
.node--type-listing.node--view-mode-full .crmland .section-title h2, .path-taxonomy .articles > h2,
.path-taxonomy .articles .section-title h2, .path-taxonomy .news > h2,
.path-taxonomy .news .section-title h2, .path-taxonomy .crmland > h2,
.path-taxonomy .crmland .section-title h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 60px;
  text-align: center;
  display: inline-block;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 10px;
}
.node--type-listing.node--view-mode-full .articles .section-title, .node--type-listing.node--view-mode-full .news .section-title, .node--type-listing.node--view-mode-full .crmland .section-title, .path-taxonomy .articles .section-title, .path-taxonomy .news .section-title, .path-taxonomy .crmland .section-title {
  margin-bottom: 100px;
}
.node--type-listing.node--view-mode-full .articles .section-title p, .node--type-listing.node--view-mode-full .news .section-title p, .node--type-listing.node--view-mode-full .crmland .section-title p, .path-taxonomy .articles .section-title p, .path-taxonomy .news .section-title p, .path-taxonomy .crmland .section-title p {
  font-size: 17px;
}
@media (max-width: 768px) {
  .node--type-listing.node--view-mode-full .articles .section-title, .node--type-listing.node--view-mode-full .news .section-title, .node--type-listing.node--view-mode-full .crmland .section-title, .path-taxonomy .articles .section-title, .path-taxonomy .news .section-title, .path-taxonomy .crmland .section-title {
    margin-bottom: 50px;
  }
}
.node--type-listing.node--view-mode-full .articles .articles-list, .node--type-listing.node--view-mode-full .articles .news-list, .node--type-listing.node--view-mode-full .news .articles-list, .node--type-listing.node--view-mode-full .news .news-list, .node--type-listing.node--view-mode-full .crmland .articles-list, .node--type-listing.node--view-mode-full .crmland .news-list, .path-taxonomy .articles .articles-list, .path-taxonomy .articles .news-list, .path-taxonomy .news .articles-list, .path-taxonomy .news .news-list, .path-taxonomy .crmland .articles-list, .path-taxonomy .crmland .news-list {
  display: flex;
  flex-wrap: wrap;
}
.node--type-listing.node--view-mode-full .articles .articles-list .article, .node--type-listing.node--view-mode-full .articles .articles-list .news-item, .node--type-listing.node--view-mode-full .articles .news-list .article, .node--type-listing.node--view-mode-full .articles .news-list .news-item, .node--type-listing.node--view-mode-full .news .articles-list .article, .node--type-listing.node--view-mode-full .news .articles-list .news-item, .node--type-listing.node--view-mode-full .news .news-list .article, .node--type-listing.node--view-mode-full .news .news-list .news-item, .node--type-listing.node--view-mode-full .crmland .articles-list .article, .node--type-listing.node--view-mode-full .crmland .articles-list .news-item, .node--type-listing.node--view-mode-full .crmland .news-list .article, .node--type-listing.node--view-mode-full .crmland .news-list .news-item, .path-taxonomy .articles .articles-list .article, .path-taxonomy .articles .articles-list .news-item, .path-taxonomy .articles .news-list .article, .path-taxonomy .articles .news-list .news-item, .path-taxonomy .news .articles-list .article, .path-taxonomy .news .articles-list .news-item, .path-taxonomy .news .news-list .article, .path-taxonomy .news .news-list .news-item, .path-taxonomy .crmland .articles-list .article, .path-taxonomy .crmland .articles-list .news-item, .path-taxonomy .crmland .news-list .article, .path-taxonomy .crmland .news-list .news-item {
  width: 50%;
  padding-bottom: 2.5vw;
  margin-bottom: 4vw;
  box-sizing: border-box;
  border-bottom: 1px solid #ff6b61;
}
.node--type-listing.node--view-mode-full .articles .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .news-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .news-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .news-list .news-item:nth-child(2n+1), .path-taxonomy .articles .articles-list .article:nth-child(2n+1), .path-taxonomy .articles .articles-list .news-item:nth-child(2n+1), .path-taxonomy .articles .news-list .article:nth-child(2n+1), .path-taxonomy .articles .news-list .news-item:nth-child(2n+1), .path-taxonomy .news .articles-list .article:nth-child(2n+1), .path-taxonomy .news .articles-list .news-item:nth-child(2n+1), .path-taxonomy .news .news-list .article:nth-child(2n+1), .path-taxonomy .news .news-list .news-item:nth-child(2n+1), .path-taxonomy .crmland .articles-list .article:nth-child(2n+1), .path-taxonomy .crmland .articles-list .news-item:nth-child(2n+1), .path-taxonomy .crmland .news-list .article:nth-child(2n+1), .path-taxonomy .crmland .news-list .news-item:nth-child(2n+1) {
  padding-right: 2.5vw;
  border-right: 1px solid #ff6b61;
}
.node--type-listing.node--view-mode-full .articles .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .news-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .news-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .news-list .news-item:nth-child(2n+2), .path-taxonomy .articles .articles-list .article:nth-child(2n+2), .path-taxonomy .articles .articles-list .news-item:nth-child(2n+2), .path-taxonomy .articles .news-list .article:nth-child(2n+2), .path-taxonomy .articles .news-list .news-item:nth-child(2n+2), .path-taxonomy .news .articles-list .article:nth-child(2n+2), .path-taxonomy .news .articles-list .news-item:nth-child(2n+2), .path-taxonomy .news .news-list .article:nth-child(2n+2), .path-taxonomy .news .news-list .news-item:nth-child(2n+2), .path-taxonomy .crmland .articles-list .article:nth-child(2n+2), .path-taxonomy .crmland .articles-list .news-item:nth-child(2n+2), .path-taxonomy .crmland .news-list .article:nth-child(2n+2), .path-taxonomy .crmland .news-list .news-item:nth-child(2n+2) {
  padding-left: 2.5vw;
}
@media (max-width: 768px) {
  .node--type-listing.node--view-mode-full .articles .articles-list .article, .node--type-listing.node--view-mode-full .articles .articles-list .news-item, .node--type-listing.node--view-mode-full .articles .news-list .article, .node--type-listing.node--view-mode-full .articles .news-list .news-item, .node--type-listing.node--view-mode-full .news .articles-list .article, .node--type-listing.node--view-mode-full .news .articles-list .news-item, .node--type-listing.node--view-mode-full .news .news-list .article, .node--type-listing.node--view-mode-full .news .news-list .news-item, .node--type-listing.node--view-mode-full .crmland .articles-list .article, .node--type-listing.node--view-mode-full .crmland .articles-list .news-item, .node--type-listing.node--view-mode-full .crmland .news-list .article, .node--type-listing.node--view-mode-full .crmland .news-list .news-item, .path-taxonomy .articles .articles-list .article, .path-taxonomy .articles .articles-list .news-item, .path-taxonomy .articles .news-list .article, .path-taxonomy .articles .news-list .news-item, .path-taxonomy .news .articles-list .article, .path-taxonomy .news .articles-list .news-item, .path-taxonomy .news .news-list .article, .path-taxonomy .news .news-list .news-item, .path-taxonomy .crmland .articles-list .article, .path-taxonomy .crmland .articles-list .news-item, .path-taxonomy .crmland .news-list .article, .path-taxonomy .crmland .news-list .news-item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
    border: 0px;
  }
  .node--type-listing.node--view-mode-full .articles .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .articles .news-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .articles .news-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .news .news-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .news .news-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .articles-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .articles-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .articles-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .articles-list .news-item:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .news-list .article:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .news-list .article:nth-child(2n+2), .node--type-listing.node--view-mode-full .crmland .news-list .news-item:nth-child(2n+1), .node--type-listing.node--view-mode-full .crmland .news-list .news-item:nth-child(2n+2), .path-taxonomy .articles .articles-list .article:nth-child(2n+1), .path-taxonomy .articles .articles-list .article:nth-child(2n+2), .path-taxonomy .articles .articles-list .news-item:nth-child(2n+1), .path-taxonomy .articles .articles-list .news-item:nth-child(2n+2), .path-taxonomy .articles .news-list .article:nth-child(2n+1), .path-taxonomy .articles .news-list .article:nth-child(2n+2), .path-taxonomy .articles .news-list .news-item:nth-child(2n+1), .path-taxonomy .articles .news-list .news-item:nth-child(2n+2), .path-taxonomy .news .articles-list .article:nth-child(2n+1), .path-taxonomy .news .articles-list .article:nth-child(2n+2), .path-taxonomy .news .articles-list .news-item:nth-child(2n+1), .path-taxonomy .news .articles-list .news-item:nth-child(2n+2), .path-taxonomy .news .news-list .article:nth-child(2n+1), .path-taxonomy .news .news-list .article:nth-child(2n+2), .path-taxonomy .news .news-list .news-item:nth-child(2n+1), .path-taxonomy .news .news-list .news-item:nth-child(2n+2), .path-taxonomy .crmland .articles-list .article:nth-child(2n+1), .path-taxonomy .crmland .articles-list .article:nth-child(2n+2), .path-taxonomy .crmland .articles-list .news-item:nth-child(2n+1), .path-taxonomy .crmland .articles-list .news-item:nth-child(2n+2), .path-taxonomy .crmland .news-list .article:nth-child(2n+1), .path-taxonomy .crmland .news-list .article:nth-child(2n+2), .path-taxonomy .crmland .news-list .news-item:nth-child(2n+1), .path-taxonomy .crmland .news-list .news-item:nth-child(2n+2) {
    padding-right: 0px;
    padding-left: 0px;
    border: 0px;
  }
}
.node--type-listing.node--view-mode-full .articles #load-more,
.node--type-listing.node--view-mode-full .articles #load-listing, .node--type-listing.node--view-mode-full .news #load-more,
.node--type-listing.node--view-mode-full .news #load-listing, .node--type-listing.node--view-mode-full .crmland #load-more,
.node--type-listing.node--view-mode-full .crmland #load-listing, .path-taxonomy .articles #load-more,
.path-taxonomy .articles #load-listing, .path-taxonomy .news #load-more,
.path-taxonomy .news #load-listing, .path-taxonomy .crmland #load-more,
.path-taxonomy .crmland #load-listing {
  display: inline-block;
}
.node--type-listing.node--view-mode-full .articles #load-more.disabled,
.node--type-listing.node--view-mode-full .articles #load-listing.disabled, .node--type-listing.node--view-mode-full .news #load-more.disabled,
.node--type-listing.node--view-mode-full .news #load-listing.disabled, .node--type-listing.node--view-mode-full .crmland #load-more.disabled,
.node--type-listing.node--view-mode-full .crmland #load-listing.disabled, .path-taxonomy .articles #load-more.disabled,
.path-taxonomy .articles #load-listing.disabled, .path-taxonomy .news #load-more.disabled,
.path-taxonomy .news #load-listing.disabled, .path-taxonomy .crmland #load-more.disabled,
.path-taxonomy .crmland #load-listing.disabled {
  display: none;
}

.node--type-article .field--name-field-categories .field-items > .field-item, .node--type-news .field--name-field-categories .field-items > .field-item, .node--type-crmland .field--name-field-categories .field-items > .field-item, .node--type-newsletter .field--name-field-categories .field-items > .field-item {
  display: inline-block;
  background: #FFDBCF;
  text-transform: uppercase;
  padding: 4px 7px;
  font-size: 13px;
  margin-right: 6px;
}
.node--type-article.node--view-mode-full .layout-banner, .node--type-news.node--view-mode-full .layout-banner, .node--type-crmland.node--view-mode-full .layout-banner, .node--type-newsletter.node--view-mode-full .layout-banner {
  position: relative;
  z-index: 0;
}
.node--type-article.node--view-mode-full .layout-banner > .field--name-field-image, .node--type-news.node--view-mode-full .layout-banner > .field--name-field-image, .node--type-crmland.node--view-mode-full .layout-banner > .field--name-field-image, .node--type-newsletter.node--view-mode-full .layout-banner > .field--name-field-image {
  width: 100%;
  height: 0;
  padding-top: 28.7878787879%;
  position: relative;
  overflow: hidden;
}
.node--type-article.node--view-mode-full .layout-banner > .field--name-field-image > .field-items, .node--type-news.node--view-mode-full .layout-banner > .field--name-field-image > .field-items, .node--type-crmland.node--view-mode-full .layout-banner > .field--name-field-image > .field-items, .node--type-newsletter.node--view-mode-full .layout-banner > .field--name-field-image > .field-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.node--type-article.node--view-mode-full .layout-banner > .field--name-field-image img, .node--type-news.node--view-mode-full .layout-banner > .field--name-field-image img, .node--type-crmland.node--view-mode-full .layout-banner > .field--name-field-image img, .node--type-newsletter.node--view-mode-full .layout-banner > .field--name-field-image img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 78px;
}
.node--type-article.node--view-mode-full .field--name-field-image img, .node--type-news.node--view-mode-full .field--name-field-image img, .node--type-crmland.node--view-mode-full .field--name-field-image img, .node--type-newsletter.node--view-mode-full .field--name-field-image img {
  width: 100%;
  height: auto;
  display: block;
}
.node--type-article.node--view-mode-full .field--name-field-animated-header + .field--name-field-image, .node--type-news.node--view-mode-full .field--name-field-animated-header + .field--name-field-image, .node--type-crmland.node--view-mode-full .field--name-field-animated-header + .field--name-field-image, .node--type-newsletter.node--view-mode-full .field--name-field-animated-header + .field--name-field-image {
  display: none;
}
.node--type-article.node--view-mode-full .layout-info, .node--type-news.node--view-mode-full .layout-info, .node--type-crmland.node--view-mode-full .layout-info, .node--type-newsletter.node--view-mode-full .layout-info {
  margin-top: -40px;
  margin-bottom: 40px;
  padding: 0px 25px 30px 25px;
  border-bottom: 2px solid #ff6b61;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-top, .node--type-news.node--view-mode-full .layout-info .layout-info-top, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top {
  width: 80%;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-top .field--name-field-categories, .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-field-categories, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-field-categories, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-field-categories {
  margin-bottom: 20px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1 {
  font-size: 60px;
  padding-top: 10px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom {
  width: 100%;
  text-align: right;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date {
  margin-right: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 13px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date .date-label, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date .date-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date .date-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date .date-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date .date-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date .date-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date .date-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-date .date-label {
  display: block;
  text-transform: none;
  font-size: 15px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author > .field-items > .field-item, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors > .field-items > .field-item, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author > .field-items > .field-item, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors > .field-items > .field-item, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author > .field-items > .field-item, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors > .field-items > .field-item, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author > .field-items > .field-item, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors > .field-items > .field-item, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author > .field-items > .field-item, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors > .field-items > .field-item, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author > .field-items > .field-item, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors > .field-items > .field-item, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author > .field-items > .field-item, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors > .field-items > .field-item, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author > .field-items > .field-item, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors > .field-items > .field-item {
  display: flex;
  flex-wrap: wrap;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group {
  margin-right: 60px;
  margin-bottom: 10px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group .role-label, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group .role-label, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group .role-label, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group .role-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group .role-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group .role-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group .role-label, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group .role-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group .role-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group .role-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group .role-label, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group .role-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group .role-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group .role-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group .role-label, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group .role-label {
  text-transform: none;
  font-size: 15px;
  display: block;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people {
  margin: 0px;
  padding: 0px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people li, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people li, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people li, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people li, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people li, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people li, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people li, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people li, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people li, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people li, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people li, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people li, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group ul.role-people li, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group ul.role-people li, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group ul.role-people li, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group ul.role-people li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group:last-child, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group:last-child, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group:last-child, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group:last-child, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group:last-child, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group:last-child, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group:last-child, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group:last-child, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group:last-child, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group:last-child, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group:last-child, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group:last-child, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-author .role-group:last-child, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-authors .role-group:last-child, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-author .role-group:last-child, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-new-details .field--name-field-authors .role-group:last-child {
  margin-right: 0;
}
.node--type-article.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .node--type-article.node--view-mode-full .layout-info .layout-info-top, .node--type-news.node--view-mode-full .layout-info .layout-info-top, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1 {
    font-size: 40px;
  }
  .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-news-details .field--name-field-date, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-news-details .field--name-field-date, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-news-details .field--name-field-date, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details .field--name-field-date, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-news-details .field--name-field-date {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1 {
    font-size: 36px;
  }
  .node--type-article.node--view-mode-full .layout-info .layout-info-bottom, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }
  .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .group-news-details, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .group-news-details, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .group-news-details, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-article-details, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .group-news-details {
    width: 100%;
    margin-bottom: 20px;
  }
  .node--type-article.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-news.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .node--type-article.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1, .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1 {
    font-size: 28px;
  }
}
.node--type-article.node--view-mode-full .layout-body, .node--type-news.node--view-mode-full .layout-body, .node--type-crmland.node--view-mode-full .layout-body, .node--type-newsletter.node--view-mode-full .layout-body {
  background: #f6f3eb;
  padding: 40px;
  position: relative;
}
.node--type-article.node--view-mode-full .layout-body:before, .node--type-news.node--view-mode-full .layout-body:before, .node--type-crmland.node--view-mode-full .layout-body:before, .node--type-newsletter.node--view-mode-full .layout-body:before {
  content: "";
  position: absolute;
  border-top: 2px solid #ff6b61;
  border-left: 2px solid #ff6b61;
  width: 33.3333333333%;
  height: 240px;
  top: 0;
  left: 0;
  pointer-events: none;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article, .node--type-article.node--view-mode-full .layout-body .layout-body-news, .node--type-news.node--view-mode-full .layout-body .layout-body-article, .node--type-news.node--view-mode-full .layout-body .layout-body-news, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news {
  padding: 4vw 4vw;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body {
  padding-bottom: 30px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body img, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body img, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body img, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body img, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body img, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body img, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body img, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body img {
  max-width: 100%;
  height: auto;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
.node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
.node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
.node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
.node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 26px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a {
  color: #ff6b61;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a:hover, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a:hover, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a:hover, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a:hover, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a:hover, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a:hover, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a:hover, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link {
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 10px 50px;
  text-align: center;
  background: #17e1e3;
  color: #FFF;
  text-transform: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 75%;
  margin-top: 5px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link,
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a.vt-link.button-link, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link,
.node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a.vt-link.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a.vt-link.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link,
.node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a.vt-link.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a.vt-link.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a.vt-link.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a.vt-link.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a.vt-link.button-link {
  box-sizing: border-box;
  display: inline-block;
  min-width: 200px;
  padding: 10px 50px;
  text-align: center;
  background: #ff6b61;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 500;
  font-size: 75%;
  margin-top: 5px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h2 {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 49px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 26px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol {
  margin: 0px 0px 1.5em 2vw;
  padding: 0;
  counter-reset: item;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li {
  margin: 0px 0px 10px 0px;
  padding: 0 0 0 2em;
  text-indent: -2em;
  list-style-type: none;
  counter-increment: item;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li p, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li p, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li p, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li p {
  display: inline;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li:before, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol > li:before {
  vertical-align: top;
  display: inline-block;
  width: 1.5em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-letters > li:before, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-letters > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-letters > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-letters > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-letters > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-letters > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-letters > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-letters > li:before {
  content: counter(item, lower-alpha) ".";
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-capital-letters > li:before, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-capital-letters > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-capital-letters > li:before, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-capital-letters > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-capital-letters > li:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-capital-letters > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol.type-capital-letters > li:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol.type-capital-letters > li:before {
  content: counter(item, upper-alpha) ".";
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul {
  margin: 0px 0px 1.5em 2vw;
  padding: 0;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li {
  margin: 0px 0px 10px 2em;
  padding: 0 0 0 10px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li p, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li p, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li p, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul li p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul li p {
  display: inline;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible {
  position: relative;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible + p, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible + p, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible + p, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible + p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible + p, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible + p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible + p, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible + p {
  padding-top: 30px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:before, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:before, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:before, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:before, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:before, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:before {
  content: "";
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:after, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:after, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:after, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible:after {
  content: "";
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: -webkit-linear-gradient(left, #ff6b61 50%, #17e1e3 75%);
  background: linear-gradient(to right, #ff6b61 50%, #17e1e3 75%);
  display: block;
  height: 1px;
  width: 100%;
  bottom: -1px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger {
  position: relative;
  padding: 15px 20px 15px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:hover, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:hover, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:hover, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:hover, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:hover, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:hover, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:hover, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:hover {
  text-decoration: none;
  color: #ff6b61;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:after, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:after, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:after, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger:after {
  content: "";
  background: transparent url("../images/down-arrow-graded-notail.svg") no-repeat;
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -2px;
  right: 20px;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: -moz-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: -o-transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger strong, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger strong, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger strong, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger strong, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger strong, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger strong, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible .collapsible-trigger strong, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible .collapsible-trigger strong {
  font-weight: 400;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger-bottom, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger-bottom {
  display: none;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible.opened .collapsible-trigger:after, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible.opened .collapsible-trigger:after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible-content, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible-content, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible-content, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible-content, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible-content, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible-content, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .collapsible-content, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body .collapsible-content {
  padding-bottom: 20px;
  min-height: 1px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box {
  background-color: #FDE4DB;
  border-left: 2px solid #ff6b61;
  padding: 40px 4vw !important;
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box {
    padding: 40px 25px !important;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p.definition-box, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p.definition-box {
    padding: 40px 20px !important;
  }
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-full .layout-body .layout-body-article, .node--type-article.node--view-mode-full .layout-body .layout-body-news, .node--type-news.node--view-mode-full .layout-body .layout-body-article, .node--type-news.node--view-mode-full .layout-body .layout-body-news, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news {
    padding: 1.5vw;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol {
    font-size: 22px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h2 {
    font-size: 40px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 22px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul {
    margin: 0px 0px 1.5em 0;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-full .layout-body, .node--type-news.node--view-mode-full .layout-body, .node--type-crmland.node--view-mode-full .layout-body, .node--type-newsletter.node--view-mode-full .layout-body {
    padding: 20px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article, .node--type-article.node--view-mode-full .layout-body .layout-body-news, .node--type-news.node--view-mode-full .layout-body .layout-body-article, .node--type-news.node--view-mode-full .layout-body .layout-body-news, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news {
    padding: 1.5vw;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol {
    font-size: 20px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h2 {
    font-size: 36px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 20px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul {
    margin: 0px 0px 1.5em 0;
  }
}
@media (max-width: 550px) {
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body ol, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body p,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ul,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body ol {
    font-size: 18px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a.button-link {
    width: 100%;
    padding: 10px 10px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body a.st-link.button-link, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body a.st-link.button-link {
    width: 100%;
    padding: 10px 10px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h2, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h2 {
    font-size: 28px;
  }
  .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-article.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-crmland.node--view-mode-full .layout-body .layout-body-news .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-newsletter.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 18px;
  }
}
.node--type-article.node--view-mode-full .layout-body .field--name-dynamic-block-fieldnode-addtoany-copy, .node--type-news.node--view-mode-full .layout-body .field--name-dynamic-block-fieldnode-addtoany-copy, .node--type-crmland.node--view-mode-full .layout-body .field--name-dynamic-block-fieldnode-addtoany-copy, .node--type-newsletter.node--view-mode-full .layout-body .field--name-dynamic-block-fieldnode-addtoany-copy {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.node--type-article.node--view-mode-full .layout-body-section-2, .node--type-news.node--view-mode-full .layout-body-section-2, .node--type-crmland.node--view-mode-full .layout-body-section-2, .node--type-newsletter.node--view-mode-full .layout-body-section-2 {
  padding: 50px 0;
  max-width: 90%;
  margin: 0 auto;
}
.node--type-article.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-news.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-crmland.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-newsletter.node--view-mode-full .layout-body-section-2 .newsletter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.node--type-article.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-news.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-crmland.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-newsletter.node--view-mode-full .layout-body-section-2 .newsletter-container p {
  margin: 0;
  padding-right: 30px;
}
.node--type-article.node--view-mode-full .layout-body-section-2 .newsletter-container form, .node--type-news.node--view-mode-full .layout-body-section-2 .newsletter-container form, .node--type-crmland.node--view-mode-full .layout-body-section-2 .newsletter-container form, .node--type-newsletter.node--view-mode-full .layout-body-section-2 .newsletter-container form {
  margin: 0;
}
@media (max-width: 1200px) {
  .node--type-article.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-news.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-crmland.node--view-mode-full .layout-body-section-2 .newsletter-container, .node--type-newsletter.node--view-mode-full .layout-body-section-2 .newsletter-container {
    flex-wrap: wrap;
  }
  .node--type-article.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-news.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-crmland.node--view-mode-full .layout-body-section-2 .newsletter-container p, .node--type-newsletter.node--view-mode-full .layout-body-section-2 .newsletter-container p {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.node--type-article.node--view-mode-full .crmorg-extra-fields-related-items,
.node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items,
.node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items,
.node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items,
.node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items {
  text-align: center;
  padding: 50px 0px;
}
.node--type-article.node--view-mode-full .crmorg-extra-fields-related-items > h4,
.node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items > h4, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items > h4,
.node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items > h4, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items > h4,
.node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items > h4, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items > h4,
.node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items > h4 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 32px;
  text-transform: uppercase;
  display: inline-block;
  background-color: #1F3B34;
  background: -moz-linear-gradient(left, #1F3B34 0%, #1F3B34 100%);
  background: -webkit-linear-gradient(left, #1F3B34 0%, #1F3B34 100%);
  background: linear-gradient(to right, #1F3B34 0%, #1F3B34 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.node--type-article.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
.node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
.node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
.node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
.node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items .related-items {
  display: flex;
  justify-content: space-between;
}
.node--type-article.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
.node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
.node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
.node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
.node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item {
  width: 30%;
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
  .node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
  .node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
  .node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items .related-items, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items .related-items,
  .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items .related-items {
    flex-wrap: wrap;
  }
  .node--type-article.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
  .node--type-article.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-news.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
  .node--type-news.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-crmland.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
  .node--type-crmland.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item, .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-related-items .related-items .item,
  .node--type-newsletter.node--view-mode-full .crmorg-extra-fields-latest-items .related-items .item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.node--type-article.node--view-mode-full .separator, .node--type-news.node--view-mode-full .separator, .node--type-crmland.node--view-mode-full .separator, .node--type-newsletter.node--view-mode-full .separator {
  display: block;
  width: 90%;
  height: 1px;
  background: #ff6b61;
  margin: 0 auto;
}
.node--type-article.node--view-mode-featured, .node--type-news.node--view-mode-featured, .node--type-crmland.node--view-mode-featured, .node--type-newsletter.node--view-mode-featured {
  display: flex;
  flex-wrap: nowrap;
}
.node--type-article.node--view-mode-featured .group-left, .node--type-news.node--view-mode-featured .group-left, .node--type-crmland.node--view-mode-featured .group-left, .node--type-newsletter.node--view-mode-featured .group-left {
  flex: 1 1 40%;
  border-left: 2px solid #ff6b61;
  border-bottom: 2px solid #ff6b61;
  padding: 40px 30px;
  text-align: left;
}
.node--type-article.node--view-mode-featured .group-right, .node--type-news.node--view-mode-featured .group-right, .node--type-crmland.node--view-mode-featured .group-right, .node--type-newsletter.node--view-mode-featured .group-right {
  flex: 1 0 60%;
  position: relative;
}
.node--type-article.node--view-mode-featured .field--name-node-title, .node--type-news.node--view-mode-featured .field--name-node-title, .node--type-crmland.node--view-mode-featured .field--name-node-title, .node--type-newsletter.node--view-mode-featured .field--name-node-title {
  padding: 15px 0px 35px;
}
.node--type-article.node--view-mode-featured .field--name-node-title h2, .node--type-news.node--view-mode-featured .field--name-node-title h2, .node--type-crmland.node--view-mode-featured .field--name-node-title h2, .node--type-newsletter.node--view-mode-featured .field--name-node-title h2 {
  margin: 0px;
}
.node--type-article.node--view-mode-featured .field--name-node-title h2 a, .node--type-news.node--view-mode-featured .field--name-node-title h2 a, .node--type-crmland.node--view-mode-featured .field--name-node-title h2 a, .node--type-newsletter.node--view-mode-featured .field--name-node-title h2 a {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 49px;
  line-height: 1.1em;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-featured .field--name-node-title h2 a:hover, .node--type-news.node--view-mode-featured .field--name-node-title h2 a:hover, .node--type-crmland.node--view-mode-featured .field--name-node-title h2 a:hover, .node--type-newsletter.node--view-mode-featured .field--name-node-title h2 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-article.node--view-mode-featured .field--name-body, .node--type-news.node--view-mode-featured .field--name-body, .node--type-crmland.node--view-mode-featured .field--name-body, .node--type-newsletter.node--view-mode-featured .field--name-body {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 26px;
  line-height: 1.2em;
}
.node--type-article.node--view-mode-featured .field--name-body img, .node--type-news.node--view-mode-featured .field--name-body img, .node--type-crmland.node--view-mode-featured .field--name-body img, .node--type-newsletter.node--view-mode-featured .field--name-body img {
  display: none;
}
.node--type-article.node--view-mode-featured .field--name-field-image, .node--type-news.node--view-mode-featured .field--name-field-image, .node--type-crmland.node--view-mode-featured .field--name-field-image, .node--type-newsletter.node--view-mode-featured .field--name-field-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.node--type-article.node--view-mode-featured .field--name-field-image .field-items,
.node--type-article.node--view-mode-featured .field--name-field-image .field-items .field-item, .node--type-news.node--view-mode-featured .field--name-field-image .field-items,
.node--type-news.node--view-mode-featured .field--name-field-image .field-items .field-item, .node--type-crmland.node--view-mode-featured .field--name-field-image .field-items,
.node--type-crmland.node--view-mode-featured .field--name-field-image .field-items .field-item, .node--type-newsletter.node--view-mode-featured .field--name-field-image .field-items,
.node--type-newsletter.node--view-mode-featured .field--name-field-image .field-items .field-item {
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .node--type-article.node--view-mode-featured .group-left,
  .node--type-article.node--view-mode-featured .group-right, .node--type-news.node--view-mode-featured .group-left,
  .node--type-news.node--view-mode-featured .group-right, .node--type-crmland.node--view-mode-featured .group-left,
  .node--type-crmland.node--view-mode-featured .group-right, .node--type-newsletter.node--view-mode-featured .group-left,
  .node--type-newsletter.node--view-mode-featured .group-right {
    flex-basis: 50%;
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-featured .group-left, .node--type-news.node--view-mode-featured .group-left, .node--type-crmland.node--view-mode-featured .group-left, .node--type-newsletter.node--view-mode-featured .group-left {
    flex-basis: 60%;
    width: 60%;
  }
  .node--type-article.node--view-mode-featured .group-right, .node--type-news.node--view-mode-featured .group-right, .node--type-crmland.node--view-mode-featured .group-right, .node--type-newsletter.node--view-mode-featured .group-right {
    flex-basis: 40%;
    width: 40%;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-featured, .node--type-news.node--view-mode-featured, .node--type-crmland.node--view-mode-featured, .node--type-newsletter.node--view-mode-featured {
    flex-wrap: wrap;
  }
  .node--type-article.node--view-mode-featured .group-left,
  .node--type-article.node--view-mode-featured .group-right, .node--type-news.node--view-mode-featured .group-left,
  .node--type-news.node--view-mode-featured .group-right, .node--type-crmland.node--view-mode-featured .group-left,
  .node--type-crmland.node--view-mode-featured .group-right, .node--type-newsletter.node--view-mode-featured .group-left,
  .node--type-newsletter.node--view-mode-featured .group-right {
    flex-basis: 100%;
    width: 100%;
  }
  .node--type-article.node--view-mode-featured .group-left, .node--type-news.node--view-mode-featured .group-left, .node--type-crmland.node--view-mode-featured .group-left, .node--type-newsletter.node--view-mode-featured .group-left {
    order: 2;
    margin-left: 4vw;
    padding: 40px 15px;
  }
  .node--type-article.node--view-mode-featured .group-left .field--name-node-title h2 a, .node--type-news.node--view-mode-featured .group-left .field--name-node-title h2 a, .node--type-crmland.node--view-mode-featured .group-left .field--name-node-title h2 a, .node--type-newsletter.node--view-mode-featured .group-left .field--name-node-title h2 a {
    font-size: 36px;
  }
  .node--type-article.node--view-mode-featured .group-left .field--name-body, .node--type-news.node--view-mode-featured .group-left .field--name-body, .node--type-crmland.node--view-mode-featured .group-left .field--name-body, .node--type-newsletter.node--view-mode-featured .group-left .field--name-body {
    font-size: 22px;
  }
  .node--type-article.node--view-mode-featured .group-right, .node--type-news.node--view-mode-featured .group-right, .node--type-crmland.node--view-mode-featured .group-right, .node--type-newsletter.node--view-mode-featured .group-right {
    order: 1;
  }
  .node--type-article.node--view-mode-featured .group-right .field--name-field-image, .node--type-news.node--view-mode-featured .group-right .field--name-field-image, .node--type-crmland.node--view-mode-featured .group-right .field--name-field-image, .node--type-newsletter.node--view-mode-featured .group-right .field--name-field-image {
    position: static;
  }
  .node--type-article.node--view-mode-featured .group-right .field--name-field-image .image-as-background-container, .node--type-news.node--view-mode-featured .group-right .field--name-field-image .image-as-background-container, .node--type-crmland.node--view-mode-featured .group-right .field--name-field-image .image-as-background-container, .node--type-newsletter.node--view-mode-featured .group-right .field--name-field-image .image-as-background-container {
    height: 56.25vw;
  }
}
.node--type-article.node--view-mode-teaser, .node--type-news.node--view-mode-teaser, .node--type-crmland.node--view-mode-teaser, .node--type-newsletter.node--view-mode-teaser {
  text-align: left;
}
.node--type-article.node--view-mode-teaser .field--name-field-image, .node--type-news.node--view-mode-teaser .field--name-field-image, .node--type-crmland.node--view-mode-teaser .field--name-field-image, .node--type-newsletter.node--view-mode-teaser .field--name-field-image {
  margin-bottom: 2vw;
}
.node--type-article.node--view-mode-teaser .field--name-field-image img, .node--type-news.node--view-mode-teaser .field--name-field-image img, .node--type-crmland.node--view-mode-teaser .field--name-field-image img, .node--type-newsletter.node--view-mode-teaser .field--name-field-image img {
  width: 100%;
  height: auto;
  display: block;
}
.node--type-article.node--view-mode-teaser .group-text-container, .node--type-news.node--view-mode-teaser .group-text-container, .node--type-crmland.node--view-mode-teaser .group-text-container, .node--type-newsletter.node--view-mode-teaser .group-text-container {
  padding: 0px 20px;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title {
  padding: 15px 0px 35px;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title h3 {
  margin: 0px;
  line-height: 1.1em;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title h3 a {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 49px;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title h3 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-body, .node--type-news.node--view-mode-teaser .group-text-container .field--name-body, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-body {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 26px;
  line-height: 1.2em;
}
.node--type-article.node--view-mode-teaser .group-text-container .field--name-body img, .node--type-news.node--view-mode-teaser .group-text-container .field--name-body img, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-body img, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-body img {
  display: none;
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title {
    padding: 10px 0px 20px;
  }
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 32px;
  }
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-body, .node--type-news.node--view-mode-teaser .group-text-container .field--name-body, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-body {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title {
    padding: 10px 0px 20px;
  }
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 28px;
  }
  .node--type-article.node--view-mode-teaser .group-text-container .field--name-body, .node--type-news.node--view-mode-teaser .group-text-container .field--name-body, .node--type-crmland.node--view-mode-teaser .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-teaser .group-text-container .field--name-body {
    display: none;
  }
}
.node--type-article.node--view-mode-minimal-teaser, .node--type-news.node--view-mode-minimal-teaser, .node--type-crmland.node--view-mode-minimal-teaser, .node--type-newsletter.node--view-mode-minimal-teaser {
  text-align: left;
}
.node--type-article.node--view-mode-minimal-teaser .field--name-field-image, .node--type-news.node--view-mode-minimal-teaser .field--name-field-image, .node--type-crmland.node--view-mode-minimal-teaser .field--name-field-image, .node--type-newsletter.node--view-mode-minimal-teaser .field--name-field-image {
  margin-bottom: 30px;
}
.node--type-article.node--view-mode-minimal-teaser .field--name-field-image img, .node--type-news.node--view-mode-minimal-teaser .field--name-field-image img, .node--type-crmland.node--view-mode-minimal-teaser .field--name-field-image img, .node--type-newsletter.node--view-mode-minimal-teaser .field--name-field-image img {
  width: 100%;
  height: auto;
  display: block;
}
.node--type-article.node--view-mode-minimal-teaser .group-text-container, .node--type-news.node--view-mode-minimal-teaser .group-text-container, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container {
  padding: 0px 12px;
}
.node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title {
  padding: 0px;
}
.node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 {
  margin: 0px;
  line-height: 1.1em;
}
.node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 30px;
}
.node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
@media (max-width: 999px) {
  .node--type-article.node--view-mode-minimal-teaser .field--name-field-image, .node--type-news.node--view-mode-minimal-teaser .field--name-field-image, .node--type-crmland.node--view-mode-minimal-teaser .field--name-field-image, .node--type-newsletter.node--view-mode-minimal-teaser .field--name-field-image {
    margin-bottom: 20px;
  }
  .node--type-article.node--view-mode-minimal-teaser .group-text-container, .node--type-news.node--view-mode-minimal-teaser .group-text-container, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container {
    padding: 0px 10px;
  }
  .node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 {
    line-height: 0.6em;
  }
  .node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-minimal-teaser .group-text-container, .node--type-news.node--view-mode-minimal-teaser .group-text-container, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container {
    padding: 0px 10px;
  }
  .node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 {
    line-height: 1em;
  }
  .node--type-article.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-minimal-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 24px;
  }
}
.node--type-article.node--view-mode-front-featured, .node--type-news.node--view-mode-front-featured, .node--type-crmland.node--view-mode-front-featured, .node--type-newsletter.node--view-mode-front-featured {
  text-align: left;
  cursor: pointer;
  display: flex;
}
.node--type-article.node--view-mode-front-featured .field--name-field-image, .node--type-news.node--view-mode-front-featured .field--name-field-image, .node--type-crmland.node--view-mode-front-featured .field--name-field-image, .node--type-newsletter.node--view-mode-front-featured .field--name-field-image {
  width: 50%;
}
.node--type-article.node--view-mode-front-featured .field--name-field-image > .field-items, .node--type-news.node--view-mode-front-featured .field--name-field-image > .field-items, .node--type-crmland.node--view-mode-front-featured .field--name-field-image > .field-items, .node--type-newsletter.node--view-mode-front-featured .field--name-field-image > .field-items {
  height: 100%;
}
.node--type-article.node--view-mode-front-featured .field--name-field-image > .field-items > .field-item, .node--type-news.node--view-mode-front-featured .field--name-field-image > .field-items > .field-item, .node--type-crmland.node--view-mode-front-featured .field--name-field-image > .field-items > .field-item, .node--type-newsletter.node--view-mode-front-featured .field--name-field-image > .field-items > .field-item {
  height: 100%;
}
.node--type-article.node--view-mode-front-featured .field--name-field-image img, .node--type-news.node--view-mode-front-featured .field--name-field-image img, .node--type-crmland.node--view-mode-front-featured .field--name-field-image img, .node--type-newsletter.node--view-mode-front-featured .field--name-field-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.node--type-article.node--view-mode-front-featured .group-text-container, .node--type-news.node--view-mode-front-featured .group-text-container, .node--type-crmland.node--view-mode-front-featured .group-text-container, .node--type-newsletter.node--view-mode-front-featured .group-text-container {
  width: 50%;
  padding: 20px 25px;
  background: #FFF;
  background-color: #17e1e3;
  background: -moz-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to right, #17e1e3 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 0%;
  background-size: 100% 2px;
  background-color: #FFF;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title {
  padding: 0px 0px 15px;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 {
  margin: 0px;
  font-size: 30px;
  line-height: 1.25em;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0.03em;
  font-size: 30px;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a:hover, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a:hover, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a:hover, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-body {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.058em;
  font-size: 26px;
  line-height: 1.35em;
}
.node--type-article.node--view-mode-front-featured .group-text-container .field--name-body img, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-body img, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-body img, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-body img {
  display: none;
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 {
    font-size: 24px;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a {
    font-size: 24px;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-body {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-front-featured, .node--type-news.node--view-mode-front-featured, .node--type-crmland.node--view-mode-front-featured, .node--type-newsletter.node--view-mode-front-featured {
    flex-wrap: wrap;
  }
  .node--type-article.node--view-mode-front-featured .field--name-field-image, .node--type-news.node--view-mode-front-featured .field--name-field-image, .node--type-crmland.node--view-mode-front-featured .field--name-field-image, .node--type-newsletter.node--view-mode-front-featured .field--name-field-image {
    width: 100%;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container, .node--type-news.node--view-mode-front-featured .group-text-container, .node--type-crmland.node--view-mode-front-featured .group-text-container, .node--type-newsletter.node--view-mode-front-featured .group-text-container {
    width: 100%;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 {
    font-size: 24px;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-node-title h3 a {
    font-size: 24px;
  }
  .node--type-article.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-news.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-crmland.node--view-mode-front-featured .group-text-container .field--name-body, .node--type-newsletter.node--view-mode-front-featured .group-text-container .field--name-body {
    font-weight: 300;
  }
}
.node--type-article.node--view-mode-front-minimal-teaser, .node--type-news.node--view-mode-front-minimal-teaser, .node--type-crmland.node--view-mode-front-minimal-teaser, .node--type-newsletter.node--view-mode-front-minimal-teaser {
  text-align: left;
  padding: 1.5vw 2vw 0vw 2vw;
  -webkit-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-front-minimal-teaser:hover, .node--type-news.node--view-mode-front-minimal-teaser:hover, .node--type-crmland.node--view-mode-front-minimal-teaser:hover, .node--type-newsletter.node--view-mode-front-minimal-teaser:hover {
  background: #FFF;
  cursor: pointer;
}
.node--type-article.node--view-mode-front-minimal-teaser:hover .field--name-node-link:after, .node--type-news.node--view-mode-front-minimal-teaser:hover .field--name-node-link:after, .node--type-crmland.node--view-mode-front-minimal-teaser:hover .field--name-node-link:after, .node--type-newsletter.node--view-mode-front-minimal-teaser:hover .field--name-node-link:after {
  opacity: 0;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title {
  padding: 0px 0px 15px;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 {
  margin: 0px;
  font-size: 24px;
  line-height: 1.25em;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 a {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0.02em;
  font-size: 24px;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3 a:hover, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3 a:hover, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3 a:hover, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-body, .node--type-news.node--view-mode-front-minimal-teaser .field--name-body, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-body, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-body {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.036em;
  font-size: 16px;
  line-height: 1.5em;
  padding-bottom: 15px;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-body img, .node--type-news.node--view-mode-front-minimal-teaser .field--name-body img, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-body img, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-body img {
  display: none;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link {
  position: relative;
  padding-bottom: 1.5vw;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link:after, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link:after, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link:after, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link:after {
  position: absolute;
  top: 100%;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #17e1e3;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  opacity: 1;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link a {
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  padding-right: 20px;
}
.node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link a:after, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link a:after, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link a:after, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link a:after {
  content: "";
  background: transparent url("../images/down-arrow-graded.svg") no-repeat;
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(-90deg);
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title {
    padding: 0px 0px 15px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 {
    font-size: 20px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-front-minimal-teaser, .node--type-news.node--view-mode-front-minimal-teaser, .node--type-crmland.node--view-mode-front-minimal-teaser, .node--type-newsletter.node--view-mode-front-minimal-teaser {
    padding: 20px 25px 0px 25px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title {
    padding: 0px 0px 15px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 {
    font-size: 18px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-title h3 a {
    font-size: 18px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-body, .node--type-news.node--view-mode-front-minimal-teaser .field--name-body, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-body, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-body {
    font-weight: 300;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link {
    padding-bottom: 20px;
  }
  .node--type-article.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-news.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-crmland.node--view-mode-front-minimal-teaser .field--name-node-link a, .node--type-newsletter.node--view-mode-front-minimal-teaser .field--name-node-link a {
    font-size: 12px;
  }
}
.node--type-article.node--view-mode-front-teaser, .node--type-news.node--view-mode-front-teaser, .node--type-crmland.node--view-mode-front-teaser, .node--type-newsletter.node--view-mode-front-teaser {
  text-align: left;
  padding: 4%;
  -webkit-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-article.node--view-mode-front-teaser:hover, .node--type-news.node--view-mode-front-teaser:hover, .node--type-crmland.node--view-mode-front-teaser:hover, .node--type-newsletter.node--view-mode-front-teaser:hover {
  background: #FFF;
  cursor: pointer;
}
.node--type-article.node--view-mode-front-teaser .field--name-field-image, .node--type-news.node--view-mode-front-teaser .field--name-field-image, .node--type-crmland.node--view-mode-front-teaser .field--name-field-image, .node--type-newsletter.node--view-mode-front-teaser .field--name-field-image {
  margin-bottom: 2vw;
}
.node--type-article.node--view-mode-front-teaser .field--name-field-image img, .node--type-news.node--view-mode-front-teaser .field--name-field-image img, .node--type-crmland.node--view-mode-front-teaser .field--name-field-image img, .node--type-newsletter.node--view-mode-front-teaser .field--name-field-image img {
  width: 100%;
  height: auto;
  display: block;
}
.node--type-article.node--view-mode-front-teaser .group-text-container, .node--type-news.node--view-mode-front-teaser .group-text-container, .node--type-crmland.node--view-mode-front-teaser .group-text-container, .node--type-newsletter.node--view-mode-front-teaser .group-text-container {
  padding: 0px 0px;
}
.node--type-article.node--view-mode-front-teaser .group-text-container .node-type-link, .node--type-news.node--view-mode-front-teaser .group-text-container .node-type-link, .node--type-crmland.node--view-mode-front-teaser .group-text-container .node-type-link, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .node-type-link {
  display: inline-block;
  background: #FFDBCF;
  text-transform: uppercase;
  padding: 4px 7px;
  font-size: 13px;
  margin-right: 6px;
}
.node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title {
  padding-top: 15px;
}
.node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 {
  margin: 0px;
  line-height: 1.25em;
  font-size: 24px;
}
.node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a {
  font-family: "Miller Display Light", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  letter-spacing: 0.03em;
  font-size: 24px;
}
.node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a:hover, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
@media (max-width: 1000px) {
  .node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 {
    font-size: 20px;
  }
  .node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .node--type-article.node--view-mode-front-teaser, .node--type-news.node--view-mode-front-teaser, .node--type-crmland.node--view-mode-front-teaser, .node--type-newsletter.node--view-mode-front-teaser {
    padding: 20px 25px 20px 25px;
  }
  .node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 {
    font-size: 24px;
  }
  .node--type-article.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-news.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-crmland.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a, .node--type-newsletter.node--view-mode-front-teaser .group-text-container .field--name-node-title h3 a {
    font-size: 24px;
  }
}

.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
  font-size: 36px;
}
@media (max-width: 1000px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body h3, .node--type-news.node--view-mode-full .layout-body .layout-body-news .field--name-body h3 {
    font-size: 22px;
  }
}

.node--type-crmland.node--view-mode-full .layout-info .layout-info-top {
  padding-top: 50px;
}
.node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-field-categories {
  display: none;
}
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3 {
  font-size: 35px;
  font-weight: normal;
}
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h4 {
  font-weight: bold;
}
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body b, .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body strong {
  font-weight: normal;
}
@media (max-width: 1000px) {
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3 {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body h3 {
    font-size: 22px;
  }
}
.node--type-crmland.node--view-mode-featured .group-left .field--name-field-crmland-categories {
  display: none;
}
.node--type-crmland.node--view-mode-teaser .field--name-field-crmland-categories {
  display: none;
}

.path-search .search-results-count {
  text-align: center;
  margin: 40px auto 80px;
}
.path-search .search-results {
  display: flex;
  flex-wrap: wrap;
}
.path-search .search-results .article {
  width: 50%;
  padding-bottom: 2.5vw;
  margin-bottom: 4vw;
  box-sizing: border-box;
  border-bottom: 1px solid #ff6b61;
}
.path-search .search-results .article:nth-child(2n+1) {
  padding-right: 2.5vw;
  border-right: 1px solid #ff6b61;
}
.path-search .search-results .article:nth-child(2n+2) {
  padding-left: 2.5vw;
}
@media (max-width: 768px) {
  .path-search .search-results .article {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    border: 0;
  }
  .path-search .search-results .article:nth-child(2n+1), .path-search .search-results .article:nth-child(2n+2) {
    padding-right: 0;
    padding-left: 0;
    border: 0;
  }
}
.path-search .row.pager {
  text-align: center;
}

body.template-crmorg_v2_crm_softwares .crmorg-article > .layout-info {
  display: none;
}
body.template-crmorg_v2_crm_softwares .crmorg-article > .layout-banner > .field--name-field-image,
body.template-crmorg_v2_crm_softwares .crmorg-article > .layout-banner > .field--name-field-animated-header {
  display: none;
}
body.template-crmorg_v2_crm_softwares .layout-top {
  text-align: center;
  padding-top: 25px;
  margin-bottom: 25px;
  color: #545454;
}
body.template-crmorg_v2_crm_softwares .layout-top h1 {
  color: #545454;
}
body.template-crmorg_v2_crm_softwares .layout-top p {
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 40px;
}
body.template-crmorg_v2_crm_softwares .layout-top h2 {
  color: #545454;
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
  color: #545454;
  text-align: left;
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two h2, body.template-crmorg_v2_crm_softwares .layout-top .top-text-two h3 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0;
  font-size: 1.8rem;
  padding: 0 10%;
}
@media (min-width: 550px) {
  body.template-crmorg_v2_crm_softwares .layout-top .top-text-two h2, body.template-crmorg_v2_crm_softwares .layout-top .top-text-two h3 {
    font-size: 2.1rem;
  }
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two p {
  padding: 0 10%;
  font-weight: 300;
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two blockquote {
  padding: 25px 10%;
  background: #FDE4DB;
  border-left: 1px solid #ff6b61;
  margin: 0 auto 40px;
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two blockquote p {
  padding-left: 0;
  padding-right: 0;
}
body.template-crmorg_v2_crm_softwares .layout-top .top-text-two blockquote p:last-child {
  margin-bottom: 0;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters {
  margin-bottom: 40px;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 0%;
  background-size: 100% 1px;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #17e1e3 100%);
  background: linear-gradient(to right, #ff6b61 0%, #17e1e3 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li {
  list-style: none;
  padding: 0px 10px;
  margin: 0px;
  display: inline-block;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a {
  color: #ff6b61;
  position: relative;
  display: block;
  font-size: 24px;
  padding: 8px 4px;
  line-height: 1;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a:hover {
  color: #1F3B34;
  text-decoration: none;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a.active {
  color: #1F3B34;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a.active:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ff6b61;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a {
    font-size: 20px;
  }
}
@media (max-width: 550px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li {
    width: 50%;
    padding: 3px 10px;
    box-sizing: border-box;
    text-align: center;
  }
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a {
    font-size: 18px;
    display: inline-block;
  }
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-filters #softwares-filters-list li a.active:after {
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
  }
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px 40px;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper {
  width: 20%;
  padding: 0px 10px;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 20px;
  min-height: 326px;
}
body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper .node--type-crm-software {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1200px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper {
    width: 25%;
  }
}
@media (max-width: 1000px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper {
    width: 33%;
  }
}
@media (max-width: 750px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper {
    width: 50%;
  }
}
@media (max-width: 400px) {
  body.template-crmorg_v2_crm_softwares .layout-listing #softwares-list .entity-wrapper {
    width: 100%;
  }
}
body.template-crmorg_v2_crm_softwares #shadow-softwares-list {
  display: none !important;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper {
  position: fixed;
  top: 889px;
  z-index: 100;
  background: #FFF;
  width: 100%;
  display: none;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper #software-details-content {
  height: 400px;
  overflow: auto;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper #software-details-tabs {
  height: 50px;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper #software-details-tabs .tab {
  display: block;
  margin: 0;
  padding: 0px 20px;
  list-style: none;
  height: 100%;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper #software-details-tabs .tab a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  line-height: 0;
  text-transform: uppercase;
}
body.template-crmorg_v2_crm_softwares #software-details-wrapper #software-details-tabs .tab a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 4px;
}

.node--type-crm-software.node--view-mode-software-details {
  position: relative;
  width: 100%;
  height: 100%;
}
.node--type-crm-software.node--view-mode-software-details .group-tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.node--type-crm-software.node--view-mode-software-details .group-tab.active {
  display: block;
}

.node--type-crm-software.node--view-mode-teaser .link-wrapper,
.node--type-crm-software.node--view-mode-teaser .group-wrapper,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper {
  border: 1px solid #FFF;
  background: #FFF;
  padding: 25px 25px 15px;
  display: flex;
  width: 100%;
  flex: 1 0 auto;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: #1F3B34;
  -webkit-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-image,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-image,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-image {
  margin-bottom: 20px;
  line-height: 0;
  font-size: 0;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image img,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-image img,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-image img,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-image img {
  max-width: 125px;
  max-height: 75px;
  width: auto;
  height: auto;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-node-title,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-node-title,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-node-title,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-node-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-body,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-body,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-body {
  display: flex;
  width: 100%;
  flex: 1 0 auto;
  padding-bottom: 0px;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body p,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-body p,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-body p,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-body p {
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link {
  width: 100%;
  padding-top: 20px;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  margin: 0px;
  padding: 10px 0px;
  font-size: 13px;
  width: 100%;
  -webkit-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: #ff4033;
  color: #FFF;
  user-select: auto;
  border: none;
  font-weight: bold;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box a {
  color: white;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover, .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover, .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box.button-light {
  padding: 15px 25px;
  font-weight: 300;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box:hover {
  border: none;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box.external span {
  position: relative;
  display: inline-block;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-crm-software.node--view-mode-teaser .group-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link .crm-software-link-box.external span:after {
  content: "";
  background: transparent url("../images/external-arrow-graded-full.png") no-repeat center center;
  display: inline-block;
  position: absolute;
  background-size: 100%;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -2px;
  left: calc(100% + 4px);
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper.no-link,
.node--type-crm-software.node--view-mode-teaser .group-wrapper.no-link,
.node--type-crm-software.node--view-mode-software-teaser .link-wrapper.no-link,
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper.no-link {
  pointer-events: none;
}

.node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box {
  pointer-events: none;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper:hover {
  text-decoration: none;
  border: 1px solid #ff6b61;
  opacity: 1;
}
.node--type-crm-software.node--view-mode-teaser .link-wrapper:hover .field--name-field-link .crm-software-link-box {
  background: #ff584d;
}
.node--type-crm-software.node--view-mode-software-teaser {
  position: relative;
}
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper {
  cursor: pointer;
}
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper .field--name-field-link:hover .crm-software-link-box {
  background: #ff584d;
}
.node--type-crm-software.node--view-mode-software-teaser .group-wrapper:hover {
  text-decoration: none;
  border: 1px solid #ff6b61;
  opacity: 1;
}
.node--type-crm-software.node--view-mode-software-teaser.details-opened:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #FFF;
}

.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .disclaimer-container p,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .disclaimer-container p,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .disclaimer-container p,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .disclaimer-container p {
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 8px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container > span,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container > span,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container > span,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container > span {
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper {
  border: 1px solid #FFF;
  background: #FFF;
  padding: 25px 25px 15px;
  display: flex;
  width: 100%;
  flex: 1 0 auto;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: #1F3B34;
  -webkit-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image {
  margin-bottom: 20px;
  line-height: 0;
  font-size: 0;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image img,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image img,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image img,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-image img {
  max-width: 125px;
  max-height: 75px;
  width: auto;
  height: auto;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-node-title,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-node-title,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-node-title,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-node-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body {
  display: flex;
  width: 100%;
  flex: 1 0 auto;
  padding-bottom: 0px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body p,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body p,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body p,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-body p {
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link {
  width: 100%;
  padding-top: 20px;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 20px 74px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: none;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0.14em;
  outline: none;
  height: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1F3B34;
  border: 1px solid #ff6b61;
  background: #FFF;
  margin: 0px;
  padding: 10px 0px;
  font-size: 13px;
  width: 100%;
  -webkit-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: #ff4033;
  color: #FFF;
  user-select: auto;
  border: none;
  font-weight: bold;
  pointer-events: none;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box a,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box a {
  color: white;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover, .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover, .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:hover,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box:active {
  color: #ff6b61;
  opacity: 1;
  border: 1px solid #ff6b61;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  margin: 0;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.button-light {
  padding: 15px 25px;
  font-weight: 300;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span {
  position: relative;
  display: inline-block;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper .field--name-field-link .crm-software-link-box.external span:after {
  content: "";
  background: transparent url("../images/external-arrow-graded-full.png") no-repeat center center;
  display: inline-block;
  position: absolute;
  background-size: 100%;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -2px;
  left: calc(100% + 4px);
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper.no-link,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper.no-link,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper.no-link,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper.no-link {
  pointer-events: none;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover {
  text-decoration: none;
  border: 1px solid #ff4033;
  opacity: 1;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover .field--name-field-link .crm-software-link-box,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover .field--name-field-link .crm-software-link-box,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover .field--name-field-link .crm-software-link-box,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser .link-wrapper:hover .field--name-field-link .crm-software-link-box {
  background: #ff584d;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="599"] .link-wrapper .field--name-node-title, .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="621"] .link-wrapper .field--name-node-title, .node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="599"] .link-wrapper .field--name-node-title,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="621"] .link-wrapper .field--name-node-title,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="599"] .link-wrapper .field--name-node-title,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="621"] .link-wrapper .field--name-node-title,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="599"] .link-wrapper .field--name-node-title,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="621"] .link-wrapper .field--name-node-title,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title {
  position: relative;
  font-size: 21px;
  margin-bottom: 8px;
  text-align: center;
  overflow: visible;
  line-height: 1.2;
}
.node--type-article.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-news.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article .field--name-body .softwares-list-container .node--type-crm-software.node--view-mode-teaser[data-nid="1152"] .link-wrapper .field--name-node-title {
  max-width: 90%;
}

.softwares-list-container {
  position: relative;
  background: #FCE0D7;
  padding: 20px 20px 0px;
  margin-bottom: 30px;
}
.softwares-list-container span {
  padding: 0px 20px;
  text-align: center;
}
.softwares-list-container .softwares-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}
.softwares-list-container .softwares-list .software {
  width: 25%;
  padding: 0px 10px;
  box-sizing: border-box;
  display: flex;
  min-height: 326px;
  margin-bottom: 20px;
}
.softwares-list-container .softwares-list .software .node-crm-software {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1199px) {
  .softwares-list-container .softwares-list .software {
    width: 50%;
  }
}
@media (max-width: 749px) {
  .softwares-list-container .softwares-list .software {
    width: 100%;
    min-height: 250px;
  }
}
.softwares-list-container .disclaimer-container {
  display: none;
  margin-top: 40px;
}
.softwares-list-container .disclaimer-container p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}
.softwares-list-container .sponsorship-info-tip {
  color: #414042 !important;
  font-weight: bold;
  border: 1px solid #545454;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
}
.softwares-list-container .sponsorship-info-tip:hover {
  text-decoration: none !important;
  background: none !important;
}
.softwares-list-container .sponsorship-info-tip-container {
  position: absolute;
  bottom: calc(100% - 10px);
  right: 10px;
  width: 250px;
  max-width: 95%;
  height: auto;
  background: #909090;
  display: block;
  z-index: 10000;
  pointer-events: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: #FFF;
  border: 1px solid #707070;
}
.softwares-list-container .be-a-sponsor-container {
  text-align: right;
  padding-bottom: 10px;
  display: block;
  font-weight: 300;
}
.softwares-list-container .be-a-sponsor-container a {
  color: #1F3B34 !important;
}

.node--type-news.node--view-mode-full .layout-banner,
.node--type-crmland.node--view-mode-full .layout-banner,
.node--type-newsletter.node--view-mode-full .layout-banner {
  max-height: 78px;
  overflow: hidden;
}
.node--type-news.node--view-mode-full .layout-info,
.node--type-crmland.node--view-mode-full .layout-info,
.node--type-newsletter.node--view-mode-full .layout-info {
  border-bottom: none;
  margin-bottom: 0px;
}
.node--type-news.node--view-mode-full .layout-info .layout-info-top,
.node--type-crmland.node--view-mode-full .layout-info .layout-info-top,
.node--type-newsletter.node--view-mode-full .layout-info .layout-info-top {
  width: 100%;
}
@media (min-width: 1000px) {
  .node--type-news.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1,
  .node--type-crmland.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1,
  .node--type-newsletter.node--view-mode-full .layout-info .layout-info-top .field--name-node-title h1 {
    font-size: 50px;
  }
}
.node--type-news.node--view-mode-full .layout-info .layout-info-bottom,
.node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom,
.node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom {
  padding: 0 4vw;
}
@media (max-width: 1000px) {
  .node--type-news.node--view-mode-full .layout-info .layout-info-bottom,
  .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom,
  .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom {
    padding: 0 1.5vw;
  }
}
@media (max-width: 768px) {
  .node--type-news.node--view-mode-full .layout-info .layout-info-bottom,
  .node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom,
  .node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom {
    padding: 0;
  }
}
.node--type-news.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list,
.node--type-crmland.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list,
.node--type-newsletter.node--view-mode-full .layout-info .layout-info-bottom .addtoany_list {
  display: none !important;
}
.node--type-news.node--view-mode-full .layout-body,
.node--type-crmland.node--view-mode-full .layout-body,
.node--type-newsletter.node--view-mode-full .layout-body {
  padding-top: 0px;
  padding-left: 25px;
  padding-right: 25px;
}
.node--type-news.node--view-mode-full .layout-body:before,
.node--type-crmland.node--view-mode-full .layout-body:before,
.node--type-newsletter.node--view-mode-full .layout-body:before {
  display: none !important;
}
.node--type-news.node--view-mode-full .layout-body .layout-body-article,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article {
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container) {
  padding: 0 4vw;
}
@media (max-width: 1000px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container) {
    padding: 0 1.5vw;
  }
}
@media (max-width: 768px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container),
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body > .field-items > .field-item > *:not(.softwares-list-container) {
    padding: 0;
  }
}
.node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software {
  width: 20%;
}
@media (max-width: 1199px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software {
    width: 25%;
  }
}
@media (max-width: 999px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software {
    width: 33%;
  }
}
@media (max-width: 749px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software {
    width: 50%;
  }
}
@media (max-width: 549px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .softwares-list .software {
    width: 100%;
    min-height: 250px;
  }
}
.node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
.node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
.node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container {
  display: block;
  padding: 0 4vw;
}
@media (max-width: 1000px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container {
    padding: 0 1.5vw;
  }
}
@media (max-width: 768px) {
  .node--type-news.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
  .node--type-crmland.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container,
  .node--type-newsletter.node--view-mode-full .layout-body .layout-body-article > .field--name-body .softwares-list-container .disclaimer-container {
    padding: 0;
  }
}

.node--type-article.node--view-mode-full .layout-banner {
  max-height: 78px;
  overflow: hidden;
}

.node--type-newsletter.node--view-mode-full .layout-banner {
  max-height: 78px;
  overflow: hidden;
}
.node--type-newsletter.node--view-mode-full .layout-info {
  padding-top: 48px;
}

.node--type-author.node--view-mode-full > .container {
  padding-top: 40px;
}
.node--type-author.node--view-mode-full .separator {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  background-color: #17e1e3;
  background: -moz-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #17e1e3 0%, #ff6b61 100%);
  background: linear-gradient(to right, #17e1e3 0%, #ff6b61 100%);
}
.node--type-author.node--view-mode-full .layout-top {
  margin-bottom: 60px;
}
@media (max-width: 1000px) {
  .node--type-author.node--view-mode-full .layout-top {
    margin-bottom: 40px;
  }
}
.node--type-author.node--view-mode-full .group-info {
  display: flex;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-info-left-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-node-title {
  display: inline-block;
  padding: 0px;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-node-title h1 {
  margin: 0px;
  line-height: 1.25em;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0;
  font-weight: bold;
  font-size: 30px;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-socials {
  margin-left: 40px;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-socials .field--type-string {
  list-style: none;
  display: inline-block;
  margin: 0 10px;
  padding: 0;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-socials .field--type-string:first-child {
  margin-left: 0;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-socials .field--type-string:last-child {
  margin-right: 0;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .group-socials .field--type-string a.link-as-icon {
  font-size: 22px;
  color: #ff6b61;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-body p,
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-body ul,
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-body ol {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 26px;
}
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-body a {
  color: #ff6b61;
  -webkit-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.node--type-author.node--view-mode-full .group-info .group-info-left .field--name-body a:hover {
  text-decoration: none;
  background-color: #ff6b61;
  background: -moz-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: -webkit-linear-gradient(left, #ff6b61 0%, #ff6b61 100%);
  background: linear-gradient(to right, #ff6b61 0%, #ff6b61 100%);
  background-repeat: repeat-x;
  background-position: 0 95%;
  background-size: 100% 2px;
}
.node--type-author.node--view-mode-full .group-info .group-info-right {
  margin-left: 40px;
}
.node--type-author.node--view-mode-full .group-info .group-info-right .field--name-field-image {
  width: 240px;
}
.node--type-author.node--view-mode-full .group-info .group-info-right .field--name-field-image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media (max-width: 1000px) {
  .node--type-author.node--view-mode-full .group-info {
    flex-wrap: wrap;
    justify-content: center;
  }
  .node--type-author.node--view-mode-full .group-info .group-info-left {
    order: 2;
  }
  .node--type-author.node--view-mode-full .group-info .group-info-right {
    order: 1;
    margin-bottom: 40px;
  }
  .node--type-author.node--view-mode-full .group-info .group-info-right .field--name-field-image {
    width: 90%;
    max-width: 360px;
  }
}
.node--type-author.node--view-mode-full .group-articles {
  padding-top: 80px;
}
.node--type-author.node--view-mode-full .group-articles .listing-label {
  margin: 0px;
  margin-bottom: 20px;
  line-height: 1.25em;
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  letter-spacing: 0;
  font-weight: bold;
  font-size: 24px;
}
.node--type-author.node--view-mode-full .group-articles .articles {
  text-align: center;
}
.node--type-author.node--view-mode-full .group-articles .articles-list {
  display: flex;
  flex-wrap: wrap;
}
.node--type-author.node--view-mode-full .group-articles .articles-list .article, .node--type-author.node--view-mode-full .group-articles .articles-list .news-item {
  width: 50%;
  padding-bottom: 2.5vw;
  margin-bottom: 4vw;
  box-sizing: border-box;
  border-bottom: 1px solid #ff6b61;
}
.node--type-author.node--view-mode-full .group-articles .articles-list .article:nth-child(2n+1), .node--type-author.node--view-mode-full .group-articles .articles-list .news-item:nth-child(2n+1) {
  padding-right: 2.5vw;
  border-right: 1px solid #ff6b61;
}
.node--type-author.node--view-mode-full .group-articles .articles-list .article:nth-child(2n+2), .node--type-author.node--view-mode-full .group-articles .articles-list .news-item:nth-child(2n+2) {
  padding-left: 2.5vw;
}
@media (max-width: 768px) {
  .node--type-author.node--view-mode-full .group-articles .articles-list .article {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
    border: 0px;
  }
  .node--type-author.node--view-mode-full .group-articles .articles-list .article:nth-child(2n+1), .node--type-author.node--view-mode-full .group-articles .articles-list .article:nth-child(2n+2) {
    padding-right: 0px;
    padding-left: 0px;
    border: 0px;
  }
}
.node--type-author.node--view-mode-full .group-articles #load-more {
  display: inline-block;
}
.node--type-author.node--view-mode-full .group-articles #load-more.disabled {
  display: none;
}

#user-login-form,
#user-pass,
#user-register-form,
#crmorg-user-profile-form {
  margin: 42px auto;
  padding: 0;
  color: #1F3B34;
  max-width: 600px;
}
#user-login-form h1,
#user-pass h1,
#user-register-form h1,
#crmorg-user-profile-form h1 {
  font-family: "Brandon Grotesque", Calibri, Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #1F3B34;
  margin-bottom: 40px;
}
#user-login-form .form-actions,
#user-pass .form-actions,
#user-register-form .form-actions,
#crmorg-user-profile-form .form-actions {
  padding: 10px 0 20px;
}
#user-login-form input[type=submit],
#user-pass input[type=submit],
#user-register-form input[type=submit],
#crmorg-user-profile-form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: #ff564e;
  color: #FFF;
  border-radius: 0;
  border: 1px solid #ff564e;
  -webkit-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#user-login-form input[type=submit]#edit-submit,
#user-pass input[type=submit]#edit-submit,
#user-register-form input[type=submit]#edit-submit,
#crmorg-user-profile-form input[type=submit]#edit-submit {
  margin-right: 12px;
}
#user-login-form input[type=submit]#edit-submit:hover,
#user-pass input[type=submit]#edit-submit:hover,
#user-register-form input[type=submit]#edit-submit:hover,
#crmorg-user-profile-form input[type=submit]#edit-submit:hover {
  color: #ff564e;
  background: #FFF;
}
#user-login-form input[type=submit]#edit-create,
#user-pass input[type=submit]#edit-create,
#user-register-form input[type=submit]#edit-create,
#crmorg-user-profile-form input[type=submit]#edit-create {
  border: 1px solid #ff564e;
  color: #ff564e;
  background: transparent;
}
#user-login-form input[type=submit]#edit-create:hover,
#user-pass input[type=submit]#edit-create:hover,
#user-register-form input[type=submit]#edit-create:hover,
#crmorg-user-profile-form input[type=submit]#edit-create:hover {
  color: #FFF;
  background: #ff564e;
}

#user-login-form .user-login-links {
  margin-bottom: 30px;
}

#user-register-form .register-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#user-register-form .register-form > p, #user-register-form .register-form .captcha,
#user-register-form .register-form #edit-actions {
  width: 100%;
}
#user-register-form .register-form > .field-type-text {
  display: inline-block;
  width: 46%;
}
#user-register-form .register-form > .field-type-text .form-item {
  margin: 0;
}
#user-register-form .register-form .field-type-text-long {
  width: 100%;
}
#user-register-form .register-form .field-type-text-long textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.5em;
}
#user-register-form .register-form > .captcha {
  margin-top: 20px;
}
#user-register-form #edit-account {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
#user-register-form #edit-account .form-item {
  display: inline-block;
}
#user-register-form #edit-account .form-item:not(.form-item-pass) {
  width: 46%;
}
#user-register-form #edit-account .form-item.form-item-pass {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 input:focus + .password-specs-popup, #user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 input:active + .password-specs-popup {
  opacity: 1;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  color: #1F3B34;
  background-color: #FFDBCF;
  text-align: left;
  padding: 20px 25px;
  margin: 0;
  pointer-events: none;
  opacity: 0;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup:after, #user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup:before {
  top: 100%;
  left: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup:after {
  border-top-color: #FFDBCF;
  border-width: 15px;
  margin-left: -15px;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup:before {
  border-width: 16px;
  margin-left: -16px;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup p {
  margin: 0 0 0.8em 0;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup ul {
  padding: 0;
  margin: 0;
}
#user-register-form #edit-account .form-item.form-item-pass .form-item-pass-pass1 .password-specs-popup ul li {
  margin: 0px;
  padding: 0px;
  list-style-position: inside;
}
#user-register-form #edit-account .form-item.form-item-pass .description {
  display: none;
}
#user-register-form #edit-account .form-item.form-item-mail, #user-register-form #edit-account .form-item.form-item-pass {
  width: 100%;
}

.user-confirm-container {
  margin-top: 100px;
}

body.page-user-profile .tfa {
  text-align: center;
}
body.page-user-profile #crmorg-user-profile-form {
  margin-top: 0px;
}
body.page-user-profile #crmorg-user-profile-form #edit-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.page-user-profile #crmorg-user-profile-form .form-header {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
body.page-user-profile #crmorg-user-profile-form .form-header .trigger-form-edit-button {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 21px;
  height: 22px;
  padding: 0px;
  margin: 0px;
  background: transparent url(../images/edit-button.png) center center no-repeat;
  background-size: 100%;
  border: none;
  font-size: 0;
}
body.page-user-profile #crmorg-user-profile-form .form-header input[type=submit] {
  pointer-events: auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 28px;
  height: 21px;
  padding: 0px;
  margin: 0px;
  background: transparent url(../images/save-button.png) center center no-repeat;
  background-size: 100%;
  border: none;
  outline: none;
  font-size: 0;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper input[type=text],
body.page-user-profile #crmorg-user-profile-form .form-wrapper input[type=password] {
  pointer-events: auto;
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper input[type=text].force-disabled {
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  padding-left: 0px;
  margin-left: -1px;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper.edit-disabled .trigger-form-edit-button {
  pointer-events: auto;
  display: inline-block;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper.edit-disabled .form-item {
  pointer-events: none;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper.edit-disabled input[type=submit] {
  display: none;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper.edit-disabled input[type=text],
body.page-user-profile #crmorg-user-profile-form .form-wrapper.edit-disabled input[type=password] {
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  padding-left: 0px;
  margin-left: -1px;
}
body.page-user-profile #crmorg-user-profile-form .form-wrapper#edit-bottom {
  margin-top: 50px;
  clear: both;
}
@media (max-width: 767px) {
  body.page-user-profile #crmorg-user-profile-form #edit-info {
    flex-direction: column;
  }
  body.page-user-profile #crmorg-user-profile-form #edit-info .form-item {
    display: inline-block;
    width: 100%;
  }
}

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