@import url('//fonts.googleapis.com/css?family=Montserrat:100,300,300i,400,400i,500,600,700,900');

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

.post-gradient {
    background: -o-linear-gradient(18deg, rgba(237, 69, 75, 0.9528186274509804) 21%, rgba(130, 200, 19, 1) 89%);
    background: linear-gradient(72deg, rgba(237, 69, 75, 0.9528186274509804) 21%, rgba(130, 200, 19, 1) 89%);
}

.blog__continue__link span {
    white-space: nowrap;
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
    min-width: 320px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #7c7777;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a[href^="tel"] {
    text-decoration: none;
}

ul,
ol,
dl,
hr,
table,
blockquote {
    margin-bottom: 1.75em;
}

ul,
ol {
    list-style-position: inside;
}

blockquote {
    border-left: 3px solid #f04d54;
    padding-left: 15px;
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 87px;
    font-weight: 800;
    line-height: .78;
}

h2 {
    font-size: 59px;
    font-weight: 900;
    letter-spacing: -0.006em;
    line-height: 1.19;
}

h3 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.008em;
    line-height: 0.92;
}

h4 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 0.96;
}

h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.12;
}

.header--accent--line {
    position: relative;
}

.header--accent--line:after {
    content: "";
    background-color: #26a49f;
    width: 146px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 5px;
}

.header--accent--line__white:after {
    background-color: #fff;
}

.header--accent--line__md:after {
    width: 167px;
}

.header--accent--line__lg:after {
    width: 257px;
}

.lg-green {
    font-size: 26px !important;
    text-transform: uppercase;
    color: #26a49f;
}

/* Animations */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

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

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

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

.animate__fadeInDown {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Bounce */
@-webkit-keyframes bounce {

    from,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

@keyframes bounce {

    from,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.animate__bounce {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }
}

@media (max-width: 374px) {
    .lg-green {
        font-size: 21px !important;
    }
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
.white-space {
    white-space: nowrap;
}

/*  Background Colors  */
.light-blue .article__body {
    background-color: #26a49f;
}

.green .article__body {
    background-color: #82c813;
}

.red .article__body {
    background-color: #c73339;
}

/*  Text Colors  */
.text--light-blue {
    color: #26a49f;
}

/*  FONTS  */
.line-height--small {
    line-height: 1em;
}

/*  Clear  */
.clear:after {
    content: '';
    display: block;
    clear: both;
}

/*  Notext  */
.notext {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
}

/*  Hidden  */
[hidden],
.hidden {
    display: none !important;
}

/*  Alignleft  */
.alignleft {
    float: left;
}

/*  Alignright  */
.alignright {
    float: right;
}

/*  Disabled  */
[disabled],
.disabled {
    cursor: default;
}

/*  Grid  */
.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.col {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.col--1of2 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

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

@media (min-width: 768px) and (max-width: 1023px) {
    .hidden-sm {
        display: none !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

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

@media (min-width: 1024px) and (max-width: 1200px) {
    .hidden-md {
        display: none !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

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

@media (min-width: 1201px) {
    .hidden-lg {
        display: none !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

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

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
* {
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

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

template {
    display: none;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
    max-width: 100%;
}

img,
iframe {
    border: 0 none;
}

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

b,
strong {
    font-weight: bold;
}

address {
    font-style: normal;
}

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

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] {
    cursor: pointer;
}

a[href^="tel"],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
    cursor: default;
}

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

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

textarea {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

button,
select {
    text-transform: none;
}

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

nav ul,
nav ol {
    list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Pagination
\* ------------------------------------------------------------ */
.paging {
    padding: 0 0 20px;
    text-align: center;
}

.paging ul {
    list-style: none outside none;
}

.paging ul,
.paging li {
    display: inline-block;
    vertical-align: top;
}

.paging a+a {
    margin-left: 20px;
}

.paging-label {
    padding-right: 10px;
}

/* ------------------------------------------------------------ *\
	Comments
\* ------------------------------------------------------------ */
.section-comments {
    padding-top: 15px;
}

.section-comments a {
    text-decoration: none;
}

.section-comments p {
    padding-bottom: 18.2px;
}

.section-comments ol,
.section-comments ul {
    padding: 0;
    margin: 0;
    list-style: none outside none;
}

.section-comments h3 {
    position: relative;
    padding: 0 0 10px;
}

.section-comments h3 small {
    position: absolute;
    top: 0;
    right: 0;
}

.comments,
.comments .children {
    position: relative;
}

.comments .children:before,
.comments .children:after {
    content: '';
    position: absolute;
    display: block;
}

.comments .children:before {
    top: 33px;
    left: 23px;
    width: 32px;
    height: 27px;
    border-left: 8px solid #c3c3c3;
    border-bottom: 8px solid #c3c3c3;
    border-radius: 0 0 0 8px;
}

.comments .children:after {
    top: -5px;
    left: 8px;
    border: 20px solid transparent;
    border-width: 20px 19px;
    border-bottom-color: #c3c3c3;
}

.comments .comment {
    position: relative;
    border-top: 1px dashed #363636;
}

.comments .children {
    padding-left: 70px;
}

.comments .avatar {
    position: absolute;
    top: 28px;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.comments .says {
    padding-left: 5px;
}

.comments .moderation-notice {
    display: inline-block;
    margin: 3px 0 8px;
    color: #999;
}

.comments .comment-entry {
    position: relative;
    padding: 30px 0 30px 65px;
}

.comments .comment-text p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.comments .comment-meta {
    padding-bottom: 12px;
}

.comments .comment-meta a {
    color: #363636;
}

.comments .comment-reply {
    padding-top: 10px;
    text-align: right;
}

.comments .comment-reply a {
    display: inline-block;
    padding: 5px 10px;
    background: #363636;
    color: #fff;
    border-radius: 6px;
}

.comments .comment-reply a:hover {
    text-decoration: none;
    opacity: .8;
}

.comment-respond {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid #363636;
}

.comment-respond h3 {
    position: relative;
}

.comment-respond small {
    position: absolute;
    top: 0;
    right: 0;
}

.comment-respond label {
    display: block;
    padding-bottom: 4px;
}

.comment-respond input[type="text"],
.comment-respond textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f7f7f7;
}

.comment-respond textarea {
    height: 100px;
}

.comment-respond input[type="text"]:focus {
    background-color: #fff;
}

.comment-respond input[type="text"]::-webkit-input-placeholder {
    color: #777;
}

.comment-respond input[type="text"]::-moz-placeholder {
    color: #777;
}

.comment-respond input[type="text"]:-ms-input-placeholder {
    color: #777;
}

.comment-respond input[type="text"]::-ms-input-placeholder {
    color: #777;
}

.comment-respond input[type="text"]::placeholder {
    color: #777;
}

.comment-respond .required {
    color: #e40000;
}

.comment-respond .comment-notes {
    padding-top: 15px;
}

.comment-respond .form-submit input {
    display: block;
    width: 160px;
    height: 40px;
    border: 0;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #363636;
    cursor: pointer;
    border-radius: 4px;
}

.nocomments {
    padding-top: 12px;
    font-weight: bold;
    font-size: 18px;
}

/* ------------------------------------------------------------ *\
	Blog
\* ------------------------------------------------------------ */
.articles {
    margin-bottom: 50px;
}

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

.articles .article+.article {
    margin-top: 40px;
}

.articles .article .article__image {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-right: 50px;
}

.articles .article .article__body {
    -ms-flex-item-align: center;
    align-self: center;
}

.articles .article a:not(.btn) {
    color: #ed454b;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.articles .article a:not(.btn):hover {
    color: #26a49f;
}

.articles .article p {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: -.028em;
    font-weight: 400;
    line-height: 1.5;
}

.article--not-found h3 {
    color: #26a49f;
    font-size: 25px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .articles .article {
        display: block;
    }

    .articles .article .article__image {
        margin-right: 0;
    }
}

/* ------------------------------------------------------------ *\
	Regions
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */
.main {
    padding-top: 78px;
}

.main>.section:last-child {
    padding-bottom: 100px;
}

/*  Main Single  */
.main--single .article__entry:after {
    content: '';
    display: block;
    clear: both;
}

/* ------------------------------------------------------------ *\
	Main Contact
\* ------------------------------------------------------------ */
.main--contact {
    padding-top: 0 !important;
    margin-top: -20px;
}

/* Small Desktop */
/* Mobile */
/* ------------------------------------------------------------ *\
	Modules
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article h3 {
    margin-bottom: 20px;
}

.article p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.61;
    letter-spacing: -0.01667em;
}

.article p~p {
    margin-top: 30px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .article h3 br {
        display: none;
    }
}

/*  Article White  */
.article--white {
    color: #fff;
}

/*  Article Single  */
.article--single h1,
.article--single h2,
.article--single h3,
.article--single h4,
.article--single h5,
.article--single h6 {
    color: #2c2b2c;
    font-weight: 900;
    margin-bottom: 0px;
    line-height: 1.3;
    text-transform: uppercase;
}

.page-template-contact .article--single h6 {
    font-size: 17px;
    font-weight: 400;
    color: #292828;
    text-transform: initial;
}

.article--single img {
    max-width: 100%;
    -webkit-box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1);
}

.article--single h1 {
    font-size: 64px;
    margin-bottom: 0px;
}

.article--single h2 {
    font-size: 36px;
}

.article--single h3 {
    font-size: 21px;
}

.article--single h4 {
    font-size: 20px;
}

.article--single h5 {
    font-size: 17px;
    line-height: 1.37;
    font-weight: bold;
    text-transform: none;
}

.article--single blockquote {
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
}

.article--single ul,
.article--single ol {
    margin: 10px 20px;
}

ul.career_perks {
    margin-left: 2rem !important;
}

.article--single hr {
    margin: 20px 0;
}

.article--single p {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: -0.028em;
    font-weight: 400;
    line-height: 1.5;
    color: #7c7777;
}

.article--single p strong {
    color: #4e4f4f;
}

.article--single p a:not(.btn) {
    color: #ed454b;
    text-decoration: none;
}

.article--single p a:not(.btn):hover {
    color: #26a49f;
}

.article--single p~p {
    margin-top: 0;
}

.article--single .shell>* {
    max-width: 100% !important;
}

.article .wp-caption-text {
    margin-bottom: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 20px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .article--single h1 {
        font-size: 50px;
    }

    .article--single h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .article--single h1 {
        font-size: 40px;
    }

    .article--single h2 {
        font-size: 32px;
    }

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

/* ------------------------------------------------------------ *\
	Brand
\* ------------------------------------------------------------ */
.brand img {
    max-width: 186px;
    max-height: 60px;
    height: auto;
    opacity: .7;

    -webkit-transition: opacity .4s;

    -o-transition: opacity .4s;

    transition: opacity .4s;
}

@media (max-width: 1023px) {
    .brand img {
        max-width: 150px;
    }
}

.brand:hover img {
    opacity: 1;
}

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.015em;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

/*  Button Block  */
.btn-block {
    display: block;
    padding-left: 0;
    padding-right: 0;
}

/*  Button Rounded  */
.btn--rounded {
    border-radius: 8px;
    line-height: 1;
    white-space: nowrap;
    padding: 10px 15px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 700;
}

/*  Button Rounded and White  */
.btn--rounded.btn--white {
    color: #fff;
}

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

.btn--rounded.btn--white.loading:hover {
    background-color: #ed454b;
    color: #fff;

}

/*  Button Rounded and Red  */
.btn--rounded.btn--red {
    border-color: #ed454b;
    color: #ed454b;
}

.btn--rounded.btn--red:hover {
    background-color: #ed454b;
    color: #fff;
}

/*  Button Large  */
.btn--large {
    height: 52px;
    line-height: 52px;
}

/*  Button Small  */
.btn--small {
    height: 36px;
    line-height: 36px;
    padding-left: 13px;
    padding-right: 13px;
}

/* Button Text */
.btn--text {
    position: relative;
    font-weight: 600;
    color: #2c2a2a;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.06em;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding-left: 35px;
    text-align: left;
}

.btn--text:before {
    content: "";
    background-color: #edcd32;
    width: 30px;
    height: 3px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    -webkit-transition: top .4s .4s, left .4s, width .4s, background-color .4s;
    -o-transition: top .4s .4s, left .4s, width .4s, background-color .4s;
    transition: top .4s .4s, left .4s, width .4s, background-color .4s;
}

.btn--text:hover {
    color: #2c2a2a;
}

.btn--text:hover:before {
    top: 100%;
    left: 35px;
    width: calc(100% - 35px);
    -webkit-transition: top .4s, left .4s .4s, width .4s .4s, background-color .4s;
    -o-transition: top .4s, left .4s .4s, width .4s .4s, background-color .4s;
    transition: top .4s, left .4s .4s, width .4s .4s, background-color .4s;
}

.btn--text__white {
    color: #fff !important;
    text-decoration: none !important;
}

.btn--text__white:hover {
    color: #fff;
}

.btn--text__white:before {
    content: "";
    width: 30px;
    height: 3px;
}

.btn--text-lowercase {
    text-transform: capitalize;
}

.btn--text+.btn--text {
    margin-left: 25px;
}

.btn--text-small {
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .btn--text+.btn--text {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Button Text Large */
.btn--text--large {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 48px;
    color: #9B9B9B;
}

.btn--text--large:before {
    content: "";
    background-color: #D0021B;
    width: 260px;
    height: 1px;
    position: absolute;
    bottom: -5px;
    right: -15px;
}

.btn--text--large:after {
    content: "";
    display: inline-block;
    background: url(../images/btn-text-large-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 35px;
    position: relative;
    left: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn--text--large:hover:after {
    left: 15px;
}

/*  Button Nav  */
.btn-nav span:after,
.btn-nav:after,
.btn-nav:before {
    -webkit-transition: visibility 0.7s, opacity 0.7s, -webkit-transform 0.7s;
    transition: visibility 0.7s, opacity 0.7s, -webkit-transform 0.7s;
    -o-transition: transform 0.7s, visibility 0.7s, opacity 0.7s;
    transition: transform 0.7s, visibility 0.7s, opacity 0.7s;
    transition: transform 0.7s, visibility 0.7s, opacity 0.7s, -webkit-transform 0.7s;
}

.btn-nav span:after,
.btn-nav:after,
.btn-nav:before {
    position: absolute;
    content: ' ';
    background: #ed454b;
}

.btn-nav span:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.btn-nav:after {
    top: 9px;
    left: 0;
    width: 100%;
    height: 4px;
}

.btn-nav:before {
    top: 18px;
    left: 0;
    width: 100%;
    height: 4px;
}

.btn-nav {
    position: relative;
    width: 40px;
    z-index: 25;
    padding-top: 21px;
    color: #6BB135;
    font-size: 12px;
    font-variant: small-caps;
    text-transform: uppercase;
}

.btn-nav.active span:after {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-nav.active:before {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-nav.active:after {
    opacity: 0;
    visibility: hidden;
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 1023px) {
    .btn--text--large {
        font-size: 36px;
    }

    .btn--text--large:after {
        width: 50px;
        height: 30px;
    }
}

@media(max-width: 545px) {
    .btn--text--large {
        font-size: 24px;
    }

    .btn--text--large:after {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .btn-nav {
        display: block;
    }
}

/* ------------------------------------------------------------ *\
	Card News
\* ------------------------------------------------------------ */
.card-news {
    color: #fff;
    text-transform: uppercase;
}

.card-news .card__head {
    color: #535050;
    border-bottom: 2px solid #edcd32;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.card-news .card__head h4 {
    font-weight: 700;
}

.card-news .card__body ul {
    list-style: none;
}

.card-news .card__body ul li+li {
    margin-top: 20px;
}

.card-news .card__body a {
    font-weight: 500;
    color: #fff;
    line-height: 1.46;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
}

.card-news .card__body a:hover {
    color: #f04d54;
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
    position: relative;
    z-index: 15;
    background-color: #fff;
    margin-top: -29px;
    padding-top: 68px;
}

.footer:after {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 46px 100vw;
    border-color: transparent transparent #fff transparent;
    content: '';
}

.footer .copyright {
    padding-left: 6px;
}

.footer .copyright p {
    font-size: 14px;
    font-weight: 500;
}

/*  Footer Widgets  */
.footer .widgets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 10px;
}

/* .footer .widget-callout-header { margin-top: 7px; } */
.footer .widget-callout-content {
    margin-left: 10px;
    padding-left: 75px;
    border-left: 1px solid rgba(151, 151, 151, .4);
}

.footer .post__recent-posts__wrapper {
    position: relative;
    z-index: 5;
    margin-bottom: 50px;
}

/*  blog footer  */
.blog .footer {
    padding-top: 100px;
}

/*  privacy policy footer  */
body.privacy-policy .footer {
    padding-top: 0;
    margin-top: 60px;
}

/*  404 footer  */
body.error404 .footer:after {
    content: none;
}

body.privacy-policy .footer:after {
    content: none;
}

body.privacy-policy .footer__section-dark {
    display: none;
}

body.footer__section-dark {
    display: none;
}

/*  Footer Dark Section  */
.footer__section-dark {
    background-color: #1d1c1c;
    color: #fff;
    position: relative;
    padding: 0 0 115px;
}

.footer--no--posts .footer__section-dark:before,
.blog .footer__section-dark:before {
    border-width: 0 0 155px 3115px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {

    body.page-template-case-study-new .footer .footer__section-dark:before,
    body.single-post .footer .footer__section-dark:before,
    body.case_studies-template .footer .footer__section-dark:before,
    body.page-template-contact .footer .footer__section-dark:before,
    body.page-template-careers .footer .footer__section-dark:before {
        border-width: 0 0px 100px 1600px;
    }
}

.footer__section-dark:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0px 304px 5105px;
    border-color: transparent transparent #1d1c1c transparent;
}

.footer__section-dark:after {
    content: '';
    display: block;
    height: 11px;
    width: 87px;
    border-top: 2px solid #edcd32;
    border-bottom: 2px solid #edcd32;

    position: absolute;
    bottom: 0;
    left: 55%;
    z-index: 1;

    -webkit-transform: skew(-3deg, -54deg);

    -ms-transform: skew(-3deg, -54deg);

    transform: skew(-3deg, -54deg);
}

.footer__section-dark .footer__section-dark-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .footer__section-dark .footer__section-dark-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer__section-dark .footer__body {
    max-width: 500px;
    font-size: 20px;
    line-height: 1.3;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .footer__section-dark .footer__body {
        max-width: none;
        width: 100%;
        margin-bottom: 30px;
    }
}

.footer__section-dark .footer__body .red {
    background: none;
    color: #f04d54;
}

.footer__section-dark .footer__body-actions {
    margin-top: 10px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .footer__section-dark .footer__body-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

/*  Footer Bar  */
.footer .footer__bar {
    background-color: #26a49f;
    color: #fff;
    position: relative;
    z-index: 2;
}

.footer .footer__bar .shell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
}

.footer .footer__bar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: -9px;
}

.footer .footer__bar-inner .credits {
    font-weight: 900;
    font-size: 14px;
    margin-left: 36px;
}

.footer .footer__bar-inner .credits span {
    font-size: 6px;
}

/*  Footer Alt  */
.footer--alt {
    background-color: #fafaf9;
}

.footer--alt:after {
    border-bottom-color: #fafaf9;
}

.search-results .footer--alt:after,
.single-careers .footer--alt:after {
    border: none;
}

.single-case_studies .footer--alt {
    background-color: #ec454b;
}

.single-post .footer--alt,
.single-careers .footer--alt {
    background-color: #fff;
}

/*  Footer No-Border  */
footer.footer--no-border:after {
    border: none;

}

.footer.footer--no-border {
    margin-top: -2px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .footer .widgets {
        padding-left: 0;
        padding-right: 0;
    }

    .footer .footer__bar-inner {
        margin-right: 0;
    }

    .footer .widget-callout-content {
        border-left-width: 0;
        margin-left: 0;
        padding-left: 0;
        margin-top: 10px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .footer .widget-callout-content {
        border-left-width: 0;
        margin-left: 0;
        padding-left: 0;
        margin-top: 10px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer .footer__bar-inner,
    .footer .copyright {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .footer .footer__bar-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 20px;
    }

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

    .footer .footer__bar .shell {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .footer .widget-callout-content {
        max-width: 100%;
    }
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    overflow: hidden;
}

.header--case-study {
    background-color: #1d1c1c;
}

.header:after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    border-top: 1px solid #edcd32;
    border-bottom: 1px solid #edcd32;
    position: absolute;
    top: -20px;
    left: 30%;
    -webkit-transform: skew(23deg, 128deg);
    -ms-transform: skew(23deg, 128deg);
    transform: skew(23deg, 128deg);
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .header:after {
        left: 50%;
    }
}

.header .shell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 34px 0 20px;
}

.header .shell:before {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    position: fixed;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(130, 201, 18, 1)), color-stop(26%, rgba(130, 201, 18, 1)), color-stop(26%, rgba(240, 77, 84, 1)), color-stop(52%, rgba(240, 77, 84, 1)), color-stop(52%, rgba(237, 205, 50, 1)), to(rgba(237, 205, 50, 1)));
    background: -o-linear-gradient(right, rgba(130, 201, 18, 1) 0%, rgba(130, 201, 18, 1) 26%, rgba(240, 77, 84, 1) 26%, rgba(240, 77, 84, 1) 52%, rgba(237, 205, 50, 1) 52%, rgba(237, 205, 50, 1) 100%);
    background: linear-gradient(to left, rgba(130, 201, 18, 1) 0%, rgba(130, 201, 18, 1) 26%, rgba(240, 77, 84, 1) 26%, rgba(240, 77, 84, 1) 52%, rgba(237, 205, 50, 1) 52%, rgba(237, 205, 50, 1) 100%);
    top background: -o-linear-gradient(to left, rgba(130, 201, 18, 1) 0%, rgba(130, 201, 18, 1) 26%, rgba(240, 77, 84, 1) 26%, rgba(240, 77, 84, 1) 52%, rgba(237, 205, 50, 1) 52%, rgba(237, 205, 50, 1) 100%);
    top background: linear-gradient(to right, rgba(130, 201, 18, 1) 0%, rgba(130, 201, 18, 1) 26%, rgba(240, 77, 84, 1) 26%, rgba(240, 77, 84, 1) 52%, rgba(237, 205, 50, 1) 52%, rgba(237, 205, 50, 1) 100%);
    -webkit-transition: top .4s;
    -o-transition: top .4s;
    transition: top .4s;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .header--fixed .shell:before {
        top: 0 !important;
    }
}

.header .logo {
    margin-left: 16px;
    margin-top: -6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-actions .btn--rounded {
    font-size: 14px;
  }

.header .nav {
    margin-right: -20px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .header .shell {
        padding: 20px 10px;
    }

    .header .nav {
        margin-right: 0;
    }

    .header .logo {
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .header .shell {
        padding: 20px;
    }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 15px;
  }
  
  .header-actions .btn--rounded {
    padding: 10px;
    font-size: 12px;
  }
}

/* ------------------------------------------------------------ *\
	Hero Image
\* ------------------------------------------------------------ */
.hero-image {
    position: relative;
    padding: 196px 0 306px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image {
        padding: 100px 0 150px;
    }
}

.hero-image .hero__cutoff {
    position: absolute;
    top: 100%;
    left: 0;
    height: 10.3333vw;
    width: calc(100vw + 100px);
    background-color: #fff;
    -webkit-transform: rotate(-5.6deg);
    -ms-transform: rotate(-5.6deg);
    transform: rotate(-5.6deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    overflow: hidden;
}

.hero-image .hero__green {
    width: 100%;
    height: 95px;
    background-color: #82c912;
    -webkit-transform: rotate(8.1deg);
    -ms-transform: rotate(8.1deg);
    transform: rotate(8.1deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image .hero__green {
        display: none;
    }
}

.hero-image .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-blend-mode: overlay;
}

.hero-image .hero__content {
    position: relative;
}

.hero-image .hero__head {
    color: #fff;
    text-transform: uppercase;
    max-width: 700px;
    position: relative;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image .hero__head h1 {
        font-size: 40px;
    }
}

.hero-image .hero__head--squares:after {
    content: '';
    width: 487px;
    height: 400px;
    background-image: url(../images/gray-lines-3@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: -30px;
    right: 0;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image .hero__head--squares:after {
        height: 160px;
    }
}

.hero-image .hero__head--line:before {
    content: '';
    width: 310px;
    height: 3px;
    background-color: #edcd32;
    display: block;
    position: absolute;
    bottom: -38px;
    right: 143px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image .hero__head--line:before {
        right: auto;
        left: 0;
        width: calc(100% - 20px);
    }
}

/*  hero-image--red  */
.hero-image--red {
    background-color: #ef4d53;

    padding-top: 250px;
    padding-bottom: 385px;
}

@media (max-width: 1023px) {
    .hero-image--red {
        padding-top: 150px;
        padding-bottom: 250px;
    }

    .hero-image--red .hero__green {
        display: none;
    }
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image--red {
        padding-top: 100px;
        padding-bottom: 150px;
    }
}

.hero-image--red .hero__image {
    opacity: .12;
}

.hero-image--red .hero__body {
    font-weight: 600;
    font-size: 78px;
    color: #2a2a2a;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 1023px) {
    .hero-image--red .hero__body {
        font-size: 35px;
    }
}

/*  hero-image--small  */
.hero-image--small {
    padding: 145px 0 230px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-image--small {
        padding: 100px 0 150px;
    }
}

/* ------------------------------------------------------------ *\
	Hero White
\* ------------------------------------------------------------ */
/* .hero-white {
    padding: 115px 0 0;
}
 */
.search-results .hero-white {
    padding-top: 100px;
}

.search-results .hero-white h1 {
    font-size: 40px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white {
        padding-top: 70px;
    }
}

/*  hero-white--small  */
.hero-white--small {
    padding: 84px 0 0;
    margin-bottom: 130px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white--small {
        margin-bottom: 60px;
    }
}

/*  hero-white--blog  */
.hero-white--blog {
    padding: 0;
    margin-top: -62px;
    margin-bottom: 45px;
}

/*  hero-white--about  */
.hero-white--about {
    padding-top: 174px;
    margin-bottom: 40px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white--about {
        padding-top: 70px;
    }
}

.hero-white--blog .hero__head:after {
    background-image: url("https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/gray-lines-5.png") !important;
    top: 0px !important;
    right: 40px !important;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white--blog .hero__head:after {
        background-image: url("https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/gray-lines-1.png") !important;
        right: 0 !important;
        top: -30px !important;
    }
}

.hero-white .hero__inner {
    position: relative;
}

.hero-white .hero__head {
    text-transform: uppercase;
    color: #f04d54;
    margin-bottom: 18px;
}

.hero-white .hero__head span {
    display: block;
}

/*  hero__head--big  */
.hero-white .hero__head--big {
    margin-bottom: 64px;
}

/*  .hero__head--small  */
.hero-white .hero__head--small {
    max-width: 600px;
}

/*  hero__head--medium  */
.hero__head--medium {
    max-width: 800px;
    margin-bottom: 90px !important;
}

.hero-white .hero__head--big:after {
    background-image: url(../images/gray-lines-4@2x.png) !important;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__head--big:after {
        top: 100px;
    }
}

.hero-white .hero__head h1 {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__head {
        margin-bottom: 40px;
    }

    .hero-white .hero__head h1 {
        font-size: 37px;
    }
}

.hero-white .hero__head:after {
    content: '';
    background-image: url("https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/gray-lines-1.png");
    background-size: contain;
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    max-width: 433px;
    position: absolute;
    top: -60px;
    right: 18%;
    z-index: 0;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__head:after {
        right: 0;
        top: 0;
        width: 433px;
        max-width: 100%;
    }
}

.hero-white .hero__head span {
    color: #26a59f;
}

.hero-white .hero__body {
    max-width: 390px;
    margin-left: auto;
    margin-right: 13%;
    font-size: 17px;
    line-height: 1.25;
    position: relative;
    color: #2c2a2a;
    font-weight: 400;
}

@media (max-width: 1023px) {
    .hero-white .hero__body {
        margin-right: 0;
    }
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__body {
        max-width: none;
        margin: 0;
    }
}

/*  hero__body--about  */
.hero-white .hero__body--about {
    max-width: 615px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__body--about {
        background: rgba(255, 255, 255, 0.8);
        padding: 20px 20px 20px 0;
    }
}

.hero-white .hero__body--about:after {
    content: '';
    width: 310px;
    height: 4px;
    background-color: #edcd32;
    display: block;
    position: absolute;
    top: -30px;
    left: -130px;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__body--about:after {
        left: 0;
    }
}

.hero-white .hero__caption {
    border-top: 4px solid #dfdfdf;
    position: absolute;
    top: 5px;
    right: calc(100% + 20px);
    width: 70%;
    font-size: 9px;
    color: #494747;
    text-transform: uppercase;
    padding-top: 3px;
    font-weight: 700;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .hero-white .hero__caption {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */

.intro {
  position: relative;
  z-index: 11;
  min-height: 682px;
}

.home .intro {
  min-height: 600px;
}

.intro h1 {
  margin-bottom: 7px;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.98;
  color: #f04d54;
  text-transform: uppercase;
}

.intro p {
  font-size: 20px;
  line-height: 1.35;
  color: #26a59f;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.intro .shell {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* updates 2020-07-06 */
.intro .home-shell {
  padding-top: 175px;
  padding-bottom: 50px;
  text-align: center;
}

.intro .intro__entry {
  padding-top: 114px;
  max-width: 890px;
}

/*  Scroll Next  */
.intro .scroll-next {
  position: absolute;
  left: 50%;
  bottom: 75px;
  /* margin-left: -115px; */
  display: block;
  width: 19px;
  height: 36px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
  background: url(../images/scroll-next.svg) no-repeat 0 0;
  background-size: contain;
  transition: opacity 0.4s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.intro .scroll-next:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .intro .intro__entry br {
    display: none;
  }
}

/* Tablet Portrait */

@media (max-width: 767px) {
  .intro h1 {
    font-size: 50px;
  }

  .intro .scroll-next {
    margin-left: 0;
    transform: translateX(-50%);
  }

  .intro .intro__entry {
    padding-top: 60px;
  }
}

/* Mobile */
  
@media (max-width: 600px) {
  .intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
  }

  .intro .shell {
    padding-top: 60px;
    padding-bottom: 125px;
    transform: translateY(-20%);
  }

  .intro .intro__entry {
    padding-top: 0 !important;
  }

  .intro h1 {
    font-size: 32px;
  }

  .intro p {
    font-size: 18px;
  }

  .intro .scroll-next {
    transform: translate(-11.5px, -170%);
    /* transform:translateX(); */
  }
}

@media (min-width: 767px) {
  /* .intro .shell {  transform:translateY(0);} */
  .intro .intro__entry {
    padding-top: 60px;
  }

  .intro .scroll-next {
    transform: translateY(0%);
  }
}

/* ------------------------------------------------------------ *\
	Intro Large
\* ------------------------------------------------------------ */

.intro--large {
  min-height: 0;
}

.intro--large h1 {
  font-size: 162px;
  letter-spacing: -0.002em;
  line-height: 0.8;
}

.intro--large p {
  font-size: 18px;
  color: #8b8a8a;
}

.intro--large .intro__entry {
  padding-top: 60px;
  max-width: 100%;
}

/* ------------------------------------------------------------ *\
	Intro Blog
\* ------------------------------------------------------------ */

.intro--blog {
  min-height: auto;
  text-align: center;
}

.intro--blog .shell {
  padding: 100px 0 0;
}

.intro--blog .intro__entry {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .intro .scroll-next {
    display: none !important;
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .intro--services h1,
  .intro--about h1,
  .intro--careers h1 {
    margin-top: 33%;
  }

  .intro--services h1 {
    font-size: 32px;
  }
}

@media (max-width: 375px) {
  .intro--services h1 {
    margin-top: 46%;
  }
}

.error404 .footer__section-dark:before {
  border-width: 0 0 155px 3115px;
}
/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */
.logo {
    position: relative;
    z-index: 16;
    display: block;
    width: 99px;
    height: 45px;
    background: url(https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/logo-hi-rez.svg) no-repeat 0 0;
    background-size: contain;
    font-size: 0;
    line-height: 0;
    text-indent: -4004px;
}

/* ------------------------------------------------------------ *\
	Logos
\* ------------------------------------------------------------ */
.logos {
    list-style: none outside none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -20px;
    max-width: 980px;
}

.logos li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
    margin-bottom: 68px;
    padding: 0 20px;
    text-align: center;
}

.logos li img {
    max-width: 174px;
    /* width: 100%; */
}

/* Small Desktop */
@media (max-width: 1200px) {
    .logos li {
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .logos li {
        -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 600px) {
    .logos li {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .logos li {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1023px) {
    .members__grid-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .members__grid-wrapper {
        grid-template-columns: 1fr;
    }

    .members__grid-wrapper .members__grid-image img {
        width: 100%;
    }
}

/* ------------------------------------------------------------ *\
	Menu
\* ------------------------------------------------------------ */
.menu-nav {
    position: fixed;
    top: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    padding-top: 130px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    pointer-events: none;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

.menu-nav .shell {
    display: block;
    height: 100%;
}

.menu-nav .menu__inner {
    overflow: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 35px;
}

.menu-nav .menu__head {
    width: 50%;
}

.menu-nav .menu__body {
    width: 37%;
}

@media (max-width: 1023px) {
    .menu-nav .menu__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .menu-nav .menu__head,
    .menu-nav .menu__body {
        width: 100%;
    }

    .menu-nav .menu__head {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    html.mobile-show .menu-nav {
        padding-top: 60px;
    }

    .menu-nav .menu__inner {
        padding: 0;
    }

    body.admin-bar .header--fixed .menu-nav {
        top: 8px !important;
    }
}

html.mobile-show .menu-nav {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    pointer-events: all;
}

/* ------------------------------------------------------------ *\
	Mobile Show
\* ------------------------------------------------------------ */
.mobile-show {
    overflow: hidden;
    min-height: 100vh;
}

.mobile-show .nav {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-show .nav>ul {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.mobile-show .header {
    height: 100%;
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
    font-size: 47px;
    font-weight: 900 !important;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .nav {
        font-size: 30px;
    }
}

/* .nav li:nth-child(1n) a {
    color: #fff;
}

.nav li:nth-child(2n) a {
    color: #f04d54;
}

.nav li:nth-child(3n) a {
    color: #26a59f;
}

.nav li:nth-child(4n) a {
    color: #82c912;
}

.nav li:nth-child(5n) a {
    color: #edcd32;
} */

.nav li.white a {color: #fff;}
.nav li.teal a {color: #26a59f;}
.nav li.red a {color: #f04d54;}
.nav li.green a {color: #82c912;}
.nav li.yellow a {color: #edcd32;}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell,
.single .main--single.careers .article__entry .shell {
    max-width: 1136px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}

.single .main--single .article__entry .shell {
    max-width: 900px;
}

.shell--fluid {
    max-width: none;
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials ul {
    list-style: none outside none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials ul li+li {
    margin-left: 28px;
}

.socials a {
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
}

.socials a:hover {
    opacity: .5;
}

.socials i,
.socials a {
    display: block;
}

.socials .ico-linkedin {
    width: 20px;
    height: 20px;
    background: url(https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/ico-linkedin.svg) no-repeat 0 0;
}

.socials .ico-twitter {
    width: 21px;
    height: 17px;
    background: url(https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/ico-twitter.svg) no-repeat 0 0;
}

.socials .ico-facebook {
    width: 8px;
    height: 20px;
    background: url(https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/ico-facebook.svg) no-repeat 0 0;
}

.socials .ico-instagram {
    width: 21px;
    height: 21px;
    background: url(https://4111119.fs1.hubspotusercontent-na1.net/hubfs/4111119/xds-blog-assets/ico-instagram.svg) no-repeat 0 0;
}

.socials .ico-linkedin,
.socials .ico-twitter,
.socials .ico-facebook,
.socials .ico-instagram {
    background-size: contain;
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */
input::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

input::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

input::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

input::placeholder {
    color: inherit;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

textarea::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

textarea::placeholder {
    color: inherit;
    opacity: 1;
}

input:-webkit-autofill {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
    min-height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

body.admin-bar .wrapper {
    margin-top: 93px;
}

@media (max-width: 1200px) {

    .wrapper,
    body.admin-bar .wrapper {
        margin-top: 79px;
    }
}

/* Mobile */
@media (max-width: 767px),
screen and (max-width: 812px) and (orientation: landscape) {
    .wrapper {
        position: relative;
        z-index: 999;
        margin-top: 79px;
    }
}

@media (min-width: 2300px) {
    .blog .blog__wrapper--top::after {
        border-width: 0 0 240px 5800px !important;
    }
}

@media (min-width: 4400px) {
    .blog .blog__wrapper--top::after {
        border-width: 0 0 240px 6600px !important;
    }
}