/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
/*	--column-gap: 2.13%;*/
/*	--column-width-multiplier: 8.333;*/
}

/* Mobile layout */

.row-fluid {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}


	.row-fluid .span1,
	.row-fluid .span2,
	.row-fluid .span3,
	.row-fluid .span4,
	.row-fluid .span5,
	.row-fluid .span6,
	.row-fluid .span7,
	.row-fluid .span8,
	.row-fluid .span9,
	.row-fluid .span10,
	.row-fluid .span11,
	.row-fluid .span12{
	min-height: 1px;
	width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
	.row-fluid {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	
		.row-fluid .span1 {
			width: calc(100% / (12 / 1));
/*			width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span2 {
			width: calc(100% / (12 / 2));
/*			width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span3 {
			width: calc(100% / (12 / 3));
/*			width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span4 {
			width: calc(100% / (12 / 4));
/*			width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span5 {
			width: calc(100% / (12 / 5));
/*			width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span6 {
			width: calc(100% / (12 / 6));
/*			width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span7 {
			width: calc(100% / (12 / 7));
/*			width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span8 {
			width: calc(100% / (12 / 8));
/*			width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span9 {
			width: calc(100% / (12 / 9));
/*			width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span10 {
			width: calc(100% / (12 / 10));
/*			width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));*/
		}
	
		.row-fluid .span11 {
			width: calc(100% / (12 / 11));
/*			width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));*/
		}
	
}
.content-wrapper {
  margin: 0 auto;
/*  padding: 0 1rem;*/
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
/*  padding: 0 1rem;*/
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.modal-open{overflow:hidden}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;background-color:rgba(0,0,0,.5);outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-content{position:relative;background-clip:padding-box;outline:0;max-height:100%;overflow:hidden;display:flex;flex-direction:column;justify-content:center;height:100vh}.modal .close{padding:0;border:0;position:absolute;top:11px;right:15px;background-color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.modal-body{background:#fff;position:relative;font-style:normal;max-height:100%;overflow:hidden;padding:38px}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 768px){.modal-dialog{position:relative;width:80%;margin:0 auto;height:100vh}}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
	line-break: strict;
	overflow-wrap: normal;
	word-break: break-all;
}

/* Anchors */

a {
/*	text-decoration: none;*/
}

/* Lists */

ul,
ol {
	margin: 0 0 1.4rem;
	letter-spacing: -0.03em;
}

ul ul,
ol ul,
ul ol,
ol ol {
	margin: 0;
	letter-spacing: -0.03em;
}

ul.no-list {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

/* Code blocks */

pre {
	overflow: auto;
}

code {
	vertical-align: bottom;
}

/* Blockquotes */

blockquote {
	border-left: 2px solid;
	margin: 0 0 1.4rem;
	padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
	border: none;
	border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
	width: 100%;
}
img, svg, object {
	font-size: 0.583rem;
	word-break: normal;
	margin: 0;
	vertical-align: middle;
}
button,
.button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	white-space: normal;
}

button:disabled,
.button:disabled {
	background-color: #D0D0D0;
	border-color: #D0D0D0;
	color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
	background: none;
	border: none;
	border-radius: 0;
	color: initial;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	margin-bottom: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	transition: none;
}

.opacity-0 {
	opacity: 0;
}


.button-custom a.hs-button {
  width: fit-content;
}
.button-custom a.hs-button:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-left: 25px;
	vertical-align: middle;
	position: relative;
	left: 0;
}
.button-custom a.hs-button.style_1 {
  background-color: #000000;
}
.button-custom a.hs-button.style_1:hover {
	background-color: #ffffff;
	color: #000000	;
}
.button-custom a.hs-button:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

/*form select,*/
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form textarea {
  display: inline-block;
  width: 100%;
  padding: 17px 26px;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
/*  transform: translateY(-50%);*/
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
/*    transition: background-color 0.3s;*/
  }

:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

select {
  appearance: none;
  width: 100%;
  border-radius: 50px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 15px 46px 15px 26px;
  font-size: 16px;
  line-height: 22px;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
}
.select select, .select::after {
  grid-area: select;
}
.select:not(.select--multiple)::after {
  content: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/select.svg");
  justify-self: end;
  position: relative;
  right: 15px;
  top: -3px;
}
.select option {
  color: #000;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header {
	font-size: 16px;
	position: relative;
	z-index: 10;
}
.sticky-wrapper {
/*	z-index: 10;*/
	position: relative;
}

/*cookies*/
.header-top {
	display: none;
	border-bottom: 1px solid #333333;
	position: relative;
/*   z-index: 1;*/
}
.header-top .cookies {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 20px;
}
.header-top .widget-type-rich_text {
	width: 100%;
   text-align: center;
   font-size: 16px;
	line-height: 22px;
}
@media (min-width: 768px) {
	.header-top .cookies {
		padding: 17px 30px;
	}
	.header-top .widget-type-rich_text {
		padding-left: 18px;
	}
}
.header-top .widget-type-rich_text p {
	letter-spacing: 0;
	font-size: 16px;
	line-height: 22px;
}
.header-top .widget-type-rich_text p a {
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.header-top .widget-type-rich_text p a:hover {
	text-decoration-color: #d0ff00;
}
.header-top .widget-type-rich_text p a:after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/cookies-arrow.svg") center right no-repeat;
	margin-left: 10px;
	position: relative;
	transition: left 0.15s linear;
	left: 0;
}
.header-top .widget-type-rich_text p a:hover:after {
	left: 7px;
}
.header-top .widget-type-rich_text p span {
	color: #d0ff00;
}
.header-top .header-top__close {
	display: flex;
	cursor: pointer;
}


/*bottom*/
.header-bottom {
	display: flex;
   justify-content: space-between;
   align-items: center;
   height: 60px;
/*   margin-top: -1px;*/
}
@media (min-width: 768px) {
	.header-bottom {
		height: 84px;
	}
}
.header-bottom .connect {
	height: 100%;
}
.header-bottom .connect .hs_cos_wrapper {
	display: flex;
	height: 100%;
   align-items: stretch;
}
.header-bottom .connect a {
	font-size: 16px;
	border-radius: 0;
	border: 0;
	color: #000000;
	font-weight: 700;
	padding: 0 40px;
	display: flex;
   align-items: center;
	background: #d0ff00;
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.header-bottom .connect a:hover {
	text-decoration-color: rgba(0, 0, 0, 1);
}
.header-bottom .connect a:after {
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
	left: 0;
}
.header-bottom .connect a:hover:after {
	left: 7px;
}
@media (max-width: 767px) {
	.header-bottom .connect a {
		padding: 0 15px;
		font-size: 17px;
	}
	.header-bottom .connect a:after {
		margin-left: 10px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.header-bottom .connect a {
		padding: 0 20px;
	}
	.header-bottom .connect a.hs-button:after {
		margin-left: 10px;
	}
	.header-bottom .search {
		width: 13%;
	}
}


/*menu*/
.header__menu {
	margin: 0 auto;
	width: 100%;
	margin-left: 2%;
}
.header__menu ul.menu__wrapper {
	display: flex;
	justify-content: space-between;
}
.header__menu ul.menu__wrapper > li {
	margin: 0;
}
@media (max-width: 767px) {
	.header__menu ul.menu__wrapper {
		align-items: center;
		flex-direction: column;
	}
	.header__menu ul.menu__wrapper > li {
		padding: 10px 0;
	}
	.header__menu ul.menu__wrapper > li a {
		font-size: 22px;
		line-height: 30px;
	}
}
@media (min-width: 992px) {
	.header__menu {
		margin-left: 5%;
	}	
}
@media (min-width: 1230px) {
	.header__menu ul.menu__wrapper > li {
		margin: 0 20px;
	}
}
@media (min-width: 1525px) {
	.header__menu ul.menu__wrapper > li {
		margin: 0 45px;
	}
}


/*search*/
.header-bottom .search {
	width: 20%;
	text-align: center;
}
#searchModal label {
	color: #000000;
}
.header-bottom .search a {
	display: inline-block;
}
@media (max-width: 767px) {
	.header-bottom .search {
		margin-right: 22px;
	}
	.header-bottom .search img {
		width: 25px;
		height: 25px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.header-bottom .search {
		width: 13%;
	}
}
.modal .hs-search-field__input {
	border-radius: 0;
}
.modal .hs-search-field__suggestions-container {
	display: none;
}


/*phone*/
.header-bottom .phone {
	width: 20%;
	text-align: center;
	display: none;
}
.header-bottom .phone a {
	padding-left: 0;
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
	font-size: 16px;
}
.header-bottom .phone a:hover {
	text-decoration-color: #d0ff00;
}
.header-bottom .phone a:after {
	content: none;
}
@media (max-width: 991px) {
	.header-bottom .phone a {
		padding-right: 15px;
	}
}
@media (min-width: 768px) {
	.header-bottom .phone {
		display: block;
	}
}







/* Navigation skipper */
.header__skip {
	height: 1px;
	left: -1000px;
	overflow: hidden;
	position: absolute;
	text-align: left;
	top: -1000px;
	width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
	height: auto;
	left: 0;
	overflow: visible;
	top: 0;
	width: auto;
}

/* Logo */

.header__logo {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	height: auto;
/*	margin-right: auto;*/
	overflow: hidden;
	margin-left: 40px;
	min-width: 99px;
}

.header__logo img {
	width: 100%;
	text-align: left;
}

@media (max-width: 767px) {
	.header__logo {
		margin-left: 20px;
		width: 89px;
		min-width: 89px;
	}
}

/* Search bar */
.header__search {
	padding: 0 1rem;
	width: auto;
}


	.hs-search-field__form {
		position: relative;
	}
	.header__search .hs-search-field__label {
		flex-basis: auto;
	}


.header__search .hs-search-field__input {
	
	height: 45px;
	padding: 0 0.7rem;
}



	.header__search .hs-search-field__button {
		padding: 0;
		fill: #000;
		background-color: transparent;
		border: none;
		padding: 10px;
		position: absolute;
		top: 0;
		right: 0;
	}
	.header__search .hs-search-field__button svg {
		height: 25px;
	}



.header__search .hs-search-field--open .hs-search-field__input {
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	max-width: 100%;
}
.header__search .hs-search-field--open .hs-search-field__suggestions {
	background-color: #FFF;
	border: 2px solid #D1D6DC;
	border-radius: 0 0 6px 6px;
	border-top-width: 1px;
	position: absolute;
	width: 100%;
	z-index: 10;
}
.header__search .hs-search-field__suggestions li {
	border-top: 1px solid #D1D6DC;
	font-size: 0.875rem;
}
.header__search .hs-search-field__suggestions li a {
	color: #494A52;
	padding: 0.35rem 0.7rem;
	text-decoration: none;
	transition: background-color 0.3s;
}
.header__search .hs-search-field__suggestions #results-for {
	display: none;
}
@media (min-width: 767px) {
	.header__search form {
		align-items: center;
		display: flex;
		flex-direction: row;
	}
	.header__search label {
		margin: 0 1rem 0 0;
	}
	.header__search .hs-search-field__input {
		width: auto;
	}
}
@media (max-width: 767px) {
	.header__search {
		border-top: 2px solid #CED4DB;
		order: 1;
		padding: 1.05rem;
	}
}



/* Navigation */
#nav-toggle {
	display: none;
}
/* Mobile toggles */
@media (max-width: 767px) {
	.header__navigation,
	.header__search,
	.header__language-switcher {
		display: none;
		width: 100%;
	}

	.header__navigation.open,
	.header__search.open,
	.header__language-switcher.open {
		background-color: #000;
		display: block;
		left: 0;
/*		min-height: 100vh;*/
/*		min-height: calc(100vh - 115px);*/
		position: absolute;
		right: 0;
		z-index: 2;
		padding: 10px 0;
		margin-top: 1px;
	}

	.header__navigation--toggle,
	.header__search--toggle,
	.header__close--toggle {
		cursor: pointer;
		margin: 0 5vw;
		position: relative;
	}

	.header__navigation--toggle.hide,
	.header__search--toggle.hide {
		display: none;
	}

	.header__search--toggle.open {
		display: block;
		margin-left: 0;
		margin-right: auto;
	}

	.header__navigation--toggle:after,
	.header__search--toggle:after {
		display: none;
		font-size: 1.083rem;
		font-weight: 600;
		position: absolute;
		left: 40px;
		text-transform: uppercase;
		top: -10px;
	}

	.header__navigation--toggle.open:after,
	.header__search--toggle.open:after {
		display: block;
		word-break: normal;
	}

	.header__navigation--toggle {
		/*background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/navigation--toggle.svg") center center no-repeat;
		height: 40px;
		width: 40px;*/
	}
	.header__search--toggle {
		background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
		background-size: cover;
		height: 25px;
		width: 25px;
	}

	.header__search--toggle:after {
		content: "Search";
	}

	.header__close--toggle {
/*		background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/close--toggle.svg") center center no-repeat;*/
/*		background-size: 110%;*/
		display: none;
/*		height: 60px;*/
/*		width: 34px;*/
/*		margin-right: 0;*/
	}

	.header__close--toggle.show {
		display: block;
	}
}
@media (min-width: 768px) {
	.header__navigation--toggle,
	.header__close--toggle {
		display: none;
	}
}


.modal-body .hs_cos_wrapper_type_module button.hs-search-field__button {
	border: 0;
	border-radius: 0;
	padding: 0 20px;
}
.modal-body .hs_cos_wrapper_type_module button.hs-search-field__button svg {
	height: 20px;
	fill: #fff;
}

/* .header__navigation nav.menu ul li.menu__item--open:last-child .menu__submenu--level-2 { transform: translateX(-40%); } */

@media(max-width: 767px) {
    .header__navigation nav.menu ul li.menu__item--open:last-child .menu__submenu--level-2 { transform: translateX(0%); }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Section */
.heading {
	text-align: center;
	padding: 0 20px;
	min-height: 400px;
	display: flex;
	align-items: center;
	background: #0062fc url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/grid.svg") center center repeat;
}
.heading .hs_cos_wrapper {
	margin: 0 auto;
}
.heading span {
	margin-top: 20px;
	display: block;
}
.heading strong {
	font-weight: normal;
	color: #d0ff00;
}
.heading img {
	max-width: fit-content !important;
	margin-bottom: 28px;
}
@media (min-width: 768px) {
	.heading {
		padding: 0 40px;
	}
}

.heading .hs_cos_wrapper_type_module > h1,
.heading .hs_cos_wrapper_type_module > span.h5 {
	max-width: 1050px;
	margin: 20px auto ;
}
.sticky-wrapper .header-bottom {
   transition: background-color 0.15s;
}
.hs-content-id-104839571763 .sticky-wrapper.is-sticky header,
.hs-content-id-105250970174 .sticky-wrapper.is-sticky header {
   border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.sticky-wrapper.is-sticky header {
   border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.sticky-wrapper.is-sticky .header-bottom {
   background-color: #000000 !important;
}

.header_home {
  margin-top: -84px;
}
.header_home>.row-fluid {
   height: 100%;
}
.header_home>.row-fluid>.span6 {
   position: relative;
}
.header_home h1 {
   text-transform: uppercase;
   margin-bottom: 35px;
   text-align: center;
}
.header_home h1 span {
   color: #d0ff00;
}
.header_home p {
   font-size: 22px;
   line-height: 30px;
   text-align: center;
}
.header_home>.row-fluid>.span6:first-child a.hs-button {
   border: 1px solid #fff;
   display: inline-block;
}
.header_home>.row-fluid>.span6:first-child a.hs-button:hover {
/*	background-color: #fff;*/
}
.header_home>.row-fluid>.span6:first-child a.hs-button:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
   left: 0;
}
.header_home>.row-fluid>.span6:first-child a.hs-button:hover:after {
   left: 7px;
}

.header_home>.row-fluid>.span6:last-child a.hs-button {
   padding: 0;
   position: absolute;
   right: 0;
   text-align: center;
   bottom: 0;
   font-size: 0;
}
.header_home>.row-fluid>.span6:last-child a.hs-button:after {
   content: none;
/*   display: inline-block;
   width: 102px;
   height: 104px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-header.svg") center right no-repeat;
   vertical-align: sub;
   position: relative;
   bottom: 0;
   margin: 0;
   transition: bottom 0.15s linear;*/
}
/*.header_home>.row-fluid>.span6:last-child a.hs-button:hover:after {
   bottom: -7px;
}*/

@media (max-width: 375px) {
   .header_home>.row-fluid>.span6 {
      align-content: flex-start !important;
   }
   /*.header_home>.row-fluid>.span6:last-child a.hs-button {
      bottom: 15px;
   }*/
   /*.header_home>.row-fluid>.span6:last-child a.hs-button:after {
      background-size: cover;
      width: 62px;
      height: 64px;
   }*/
}

@media (max-width: 767px) {
   .header_home>.row-fluid>.span6 {
      padding-top: 70px !important;
      display: flex;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
   }
   /*.header_home>.row-fluid>.span6:last-child a.hs-button {
   	display: block;
   	left: 0;
   }*/
   /*.header_home>.row-fluid>.span6 .row-number-4 {
      bottom: 10px;
   }*/
   .header_home>.row-fluid>.span6:last-child {
      display: none;
   }
}

@media (min-width: 768px) {
   /*.header_home>.row-fluid>.span6:last-child a.hs-button {
      right: 40px;
   }*/
   .header_home>.row-fluid>.span6 .row-number-4 {
      position: absolute;
      bottom: 40px;
      right: 0;
      left: 0;
      text-align: left;
   }
   /*.header_home>.row-fluid>.span6:last-child a.hs-button {
      display: flex;
      justify-content: flex-end;
   }*/
   .header_home p,
   .header_home h1 {
      /*		max-width: 490px;*/
      width: 100%;
      text-align: left;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
   .header_home>.row-fluid>.span6:first-child {
      width: 70%;
   }
   .header_home>.row-fluid>.span6:last-child {
      width: 30%;
   }
}
@media (max-height: 590px) and (min-width: 768px) {
   .header_home h1 {
      font-size: 50px!important;
      line-height: 50px!important;
      margin-bottom: 10px !important;
   }
   .header_home>.row-fluid>.span6:first-child {
      width: 100%;
   }
}
.two_column1>.row-fluid>.span6:first-child {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.two_column1>.row-fluid>.span6:last-child {}
.two_column1 h4 {
   font-size: 24px;
   line-height: 32px;
   color: #d0ff00;
}
.two_column1 img {
   height: 374px !important;
   width: 100%;
   object-fit: cover;
}

@media (min-width: 768px) {
   .two_column1 img {
      height: 574px !important;
   }
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column2 {
   border-top: 1px solid #333333;
   margin-top: -1px;
}
.two_column2>.row-fluid>.span6:first-child {}
.two_column2>.row-fluid>.span6:first-child h5 {
   color: #aaaaaa;
}
.two_column2>.row-fluid>.span6:last-child h3 {
   color: #000000;
}
.two_column2>.row-fluid>.span6:last-child p {
   color: #000000;
}

.two_column2 a.hs-button {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 322px;
   position: relative;
   padding: 0 80px;
   font-size: 44px;
   line-height: 50px;
   color: #000000;
   border-radius: 0;

   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;

   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/graphic.svg") center center no-repeat;
   background-size: cover;
}
.two_column2 a.hs-button:hover {
   text-decoration-color: rgb(255, 255, 255);
   color: #ffffff;
}
.two_column2 a.hs-button:after {
   content: "";
   background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/arrow-big.svg");
   fill: #ffffff !important;
   stroke: #ffffff !important;
   background-repeat: no-repeat;
   height: 102px;
   width: 104px;
   display: inline-block;
   position: relative;
   flex: 0 0 104px;
   left: 0;
}
.two_column2 a.hs-button:active:after,
.two_column2 a.hs-button:focus:after,
.two_column2 a.hs-button:hover:after {
   background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/arrow-big-white.svg");
   left: 7px;
}
.two_column2 .dnd-column:hover a.hs-button {
   margin-left: 0;
}

@media (max-width: 767px) {
   .two_column2 a.hs-button {
      padding: 0 20px;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
   .two_column2 a.hs-button {
      padding: 0 40px;
   }
   .two_column2 .row-fluid #hs_cos_wrapper_dnd_area-dnd_partial-2-module-3 {
      padding-right: 40px !important;
   }
}
/*@media (min-width: 992px) {
	.row-fluid #hs_cos_wrapper_dnd_area-dnd_partial-2-module-3 {
		padding-right: 40px !important;
	}	
}*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
.two_column3.two_column3-2 {
   /* max-height: 860px; */
}
@media (max-width: 767px) {
   .two_column3.two_column3-reverse > .row-fluid {
      flex-direction: column-reverse;
   }
}
@media (min-width: 768px) {
   .two_column3.two_column3-2.two_column3-reverse > .row-fluid {
      flex-direction: row-reverse;
   }
}
.two_column3.two_column3-2.two_column3-reverse > .row-fluid > .span6:first-child > div:first-child {
   max-width: 570px;
}
.two_column3.two_column3-2.two_column3-reverse > .row-fluid > .span6:first-child {
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/grid.svg");
	background-repeat: repeat-x;
	background-position: 0 0;
}
.two_column3>.row-fluid>.span6:first-child {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.two_column3>.row-fluid>.span6:first-child > div:first-child {
   margin-bottom: auto;
}
@media (min-width: 992px) {
   .body-about-page .two_column3>.row-fluid>.span6:first-child .dnd-row:last-child {
      padding-right: 72px;
   }
}
.two_column3>.row-fluid>.span6:last-child .hs_cos_wrapper {
   height: 100%;
}
.two_column3 p {
   color: #ffffff;
   font-size: 24px;
   line-height: 32px;
}
.two_column3 .hs_cos_wrapper_widget img {
   height: 100% !important;
   width: 100%;
   object-fit: cover;
}


.two_column3-3 > .row-fluid > div:first-child {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.two_column3-3 > .row-fluid > div:last-child {
   border-left: 1px solid rgba(255, 255, 255, .2);
   padding-left: 20px;
}
.two_column3-3 > .row-fluid > div:first-child > div:first-child {
   margin-bottom: auto;
}
@media (min-width: 992px) {
   .two_column3-3 > .row-fluid > div:last-child {
      border-left: 1px solid rgba(255, 255, 255, .2);
      padding-left: 85px;
   }
}


.two_column3.two_column3-1 h4,
.two_column3.two_column3-3 h4 {
   margin-bottom: 20px;
}
.two_column3.two_column3-2 h4 {
   margin-top: 20px;
   color: rgba(218, 255, 1, 1);
}
.two_column3.two_column3-3 h2,
.two_column3.two_column3-2 h2 {
   color: #fff;
   line-height: 50px;
   font-size: 44px;
   font-weight: normal;
   text-transform: none;
   margin-bottom: 20px;
}
.two_column3.two_column3-2 .hs_cos_wrapper_type_rich_text ul {
   margin: 27px 0 0 0;
   padding: 0;
}
.two_column3.two_column3-2 .hs_cos_wrapper_type_rich_text ul li {
   list-style: none;
   padding: 0;
   margin: 0;
   line-height: 34px;
   padding-left: 37px;
}
.two_column3.two_column3-2 .hs_cos_wrapper_type_rich_text ul li:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 20px;
	margin-left: -37px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/type-circle-2.svg") 0 0 no-repeat;
}


.two_column3.two_column3-1 p,
.two_column3.two_column3-2 p {
   font-size: 20px;
   line-height: 28px;
}
@media (max-width: 767px) {
   .two_column3 img {
      height: 374px !important;
   }  
}
@media (min-width: 768px) {
   .two_column3 img {
/*      height: 100%;*/
   }
}
@media (min-width: 1200px) {
   .two_column3 h3 {
      width: 50%;
   }
   .two_column3 .hs_cos_wrapper_type_linked_image img {
      height: 896px !important;
   }
   .two_column3.two_column3-2 .hs_cos_wrapper_type_linked_image img {
      height: 860px !important;
   }  
}
.two_column3.two_column3-1 .hs_cos_wrapper_type_header h2 {
   color: #fff;
   text-transform: none;
   font-size: 44px;
   font-weight: normal;
   line-height: 50px;
   max-width: 520px;
}
.two_column3.two_column3-1 .button-custom a.hs-button.style_1,
.two_column3.two_column3-2 .button-group a.hs-button.style_1,
.two_column3.two_column3-2 .hs-button.style_1 {
   border-color: #fff;
}
.two_column3.two_column3-2 .hs-button.style_1:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-left: 25px;
	vertical-align: middle;
	position: relative;
	left: 0;
	transition: left 0.15s linear;
}
.two_column3.two_column3-2 .hs-button.style_1:hover {
	background-color: #fff;
	color: #000000;
}
.two_column3.two_column3-2 .hs-button.style_1:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column4 {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.two_column4>.row-fluid>.span6:first-child .hs_cos_wrapper {
/*   width: 100%;*/
}
.two_column4>.row-fluid>.span6:last-child {}
.body-about-page .two_column4>.row-fluid>.span6:last-child {
   padding-left: 0;
}
.two_column4 p {
   color: #ffffff;
   font-size: 24px;
   line-height: 32px;
}
.two_column4 h3 {
   margin-bottom: 45px;
}
.two_column4.two_column4-1 h3 {
   margin-bottom: 0;
}
.two_column4.two_column4-1 h2 {
   margin-bottom: 40px;
   color: #fff;
   text-transform: none;
   font-size: 44px;
   line-height: 50px;
   font-weight: normal;
}
.two_column4.two_column4-1 .button-group a.hs-button {
   background-color: transparent;
   border-color: #fff;
}

.two_column4 h4 {
   color: #d0ff00;
}
@media (min-width: 768px) {
   .two_column4 p {
      padding-right: 40px;
   }
   .two_column4 img {
      width: 570px;
      margin-left: 1px;
      height: 650px !important;
   }
   .two_column4>.row-fluid>.span6:first-child>.dnd-row {
      border-right: 1px solid rgba(255, 255, 255, .2);
      margin-right: 30px;
      height: 100%;
      display: flex;
      align-items: center;
   }
   .body-about-page .two_column4>.row-fluid>.span6:first-child>.dnd-row {
      margin-right: 0;
   }
   .body-about-page .two_column4>.row-fluid>.span6:last-child {
      padding-left: 30px;
   }
}
@media (min-width: 992px) {
   .two_column4>.row-fluid>.span6:first-child>.dnd-row {
      margin-right: 70px;
   }
   .body-about-page .two_column4>.row-fluid>.span6:first-child>.dnd-row {
      margin-right: 0;
   }
   .body-about-page .two_column4>.row-fluid>.span6:last-child {
      padding-left: 65px;
   }
}
@media (min-width: 1200px) {
   .two_column4 p {
      max-width: 640px;
      width: 100%;
   }
   .body-about-page .two_column4>.row-fluid>.span6:last-child {
      padding-left: 130px;
   }
   .body-about-page .two_column4 p {
      max-width: 540px;
      width: 100%;
   }
}
.two_column4 img {
   object-fit: cover;
}
.body-about-page .two_column4 img {
   object-fit: contain;  
}



/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column5 {}
.two_column5 .blockquote {}
.two_column5 .blockquote h4 {
   color: #d0ff00;
}
.two_column5 .blockquote .wall {
   color: #000000;
   background-color: #d0ff00;
}
.two_column5 .blockquote .wall .block {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/icon-glasses.svg") left top no-repeat;
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column6 .dnd-row:nth-child(1) .span4 {
   margin: 11px;
   background-color: #000;
   border-left: 4px solid #d0ff00;
}
.two_column6 .dnd-row:nth-child(1) .span4 .hs_cos_wrapper_type_rich_text {
   padding: 30px 36px;
   display: block;
}
.two_column6 .dnd-row:nth-child(1) .span4 h4 {
   margin-bottom: 22px;
   color: #d0ff00;
}
.two_column6 .dnd-row:nth-child(1) .span4 p {
   font-size: 16px;
   line-height: 22px;
}

.two_column6 .dnd-row:nth-child(3) .widget-type-rich_text {
   padding-left: 0px;
}
.two_column6 ul li,
.two_column6 .dnd-row:nth-child(3) p {
   font-size: 24px;
   line-height: 32px;
}
.two_column6 .dnd-row:nth-child(3) .blockquote h4 {
   margin-top: 25px;
   margin-bottom: 35px;
   color: #d0ff00;
}
@media (min-width: 768px) {
   .two_column6 .dnd-row:nth-child(3) .widget-type-rich_text {
      padding-left: 40px;
   }
}
@media (min-width: 1200px) {
   .two_column6 .dnd-row:nth-child(3) .widget-type-rich_text {
      padding-left: 130px;
   }
   .two_column6 .dnd-row:nth-child(3) .blockquote h4 {
      width: 55%;
   }
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column7 h4 {
   margin-bottom: 25px;
   color: #d0ff00;
}
.two_column7 ul li,
.two_column7 p {
   font-size: 24px;
   line-height: 32px;
}
.two_column7-1 > .row-fluid {
   position: relative;
}
.two_column7-1 .span6:first-child :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
   font-size: 44px;
   line-height: 50px;
   font-weight: normal;
}
.two_column7-1 > .row-fluid:after {
   content: "";
   display: block;
   width: calc(100% - 40px);
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   margin: 0 auto;
   border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.two_column7-1 h4 {
   margin-bottom: 25px;
   color: #fff;
}
@media (min-width: 768px) {
   .two_column7-1 > .row-fluid:after {
      width: calc(100% - 80px);
   }
   .two_column7-1 .span6:first-child :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
      max-width: 460px;
   }
}


/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.content-page {}
.content-page .hs_cos_wrapper_type_rich_text p {
   font-size: 24px;
   line-height: 32px;
}
.content-page .blockquote h4 {
   margin-top: 26px;
   margin-bottom: 26px;
   color: #d0ff00;
}
@media (min-width: 768px) {
   .content-page .blockquote h4 {
      width: 45%;
   }
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.two_column9 {}
.two_column9 .cards {
   justify-content: center;
}
.two_column9 .card__text {
   color: #fff;
   text-align: center;
}
.two_column9 .card__image {
   width: 28px;
   margin: 0 auto 12px;
}
.two_column9 .span12 > .dnd-row:nth-child(2) {
   border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.two_column9 .span12 > .dnd-row:nth-child(1) > .row-fluid .hs_cos_wrapper_type_header h3 {
   color: #fff;
   text-align: center;
   font-size: 44px;
   font-weight: normal;
}
@media (max-width: 767px) {
   .two_column9 .cards {
      padding: 25px 0;
   }
   .two_column9 .span12 > .dnd-row:nth-child(2) > .row-fluid > div:nth-child(2) {
      border-top: 1px solid rgba(255, 255, 255, .2);
      border-bottom: 1px solid rgba(255, 255, 255, .2);
   }
   .two_column9 .span12 > .dnd-row:nth-child(3) > .row-fluid > div:nth-child(2) {
      border-top: 1px solid rgba(255, 255, 255, .2);
   }
}
@media (min-width: 768px) {
   .two_column9 .span12 > .dnd-row:nth-child(2) > .row-fluid > div:nth-child(2) {
      border-left: 1px solid rgba(255, 255, 255, .2);
      border-right: 1px solid rgba(255, 255, 255, .2);
   }
   .two_column9 .span12 > .dnd-row:nth-child(3) > .row-fluid > div:nth-child(2) {
      border-left: 1px solid rgba(255, 255, 255, .2);
   }
}
.explore-services .explore-services__card {
	padding: 2px 2px 3px 2px;
}
.explore-services.explore-services-2 .explore-services__card {
	padding: 0;
}
.explore-services .explore-services__card .card {
	background: #ffffff url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/grid.svg") top center no-repeat;
	transition: background-color 0.15s linear;
	padding: 2px;
	height: 496px;
	border: 2px solid #2a2a2a;
}
.explore-services.explore-services-2 .explore-services__card .card {
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;

	/* background: none !important; */
	background-image: none !important;
	/* background-color: none !important; */
}
.explore-services.explore-services-2 .explore-services__card .card .inner {
	position: relative;

	display: flex;
    flex-direction: column;
	height: 100%;
	padding-top: 5px;

	background: #ffffff url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/grid.svg") top center no-repeat;
	transition: background-color 0.15s linear;
}
.explore-services.explore-services-2 .explore-services__card .card .inner:after {
	content: "";
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/icon-download-pdf.png");
	background-size: contain;
	display: block;
	height: 42px;
	width: 91px;
	position: absolute;
	bottom: 40px;
	right: 20px;
}
@media (min-width: 768px) {
	.explore-services.explore-services-2 .explore-services__card .card .inner:after {
		bottom: 40px;
		right: 40px;
		height: 42px;
		width: 91px;
	}
}



.explore-services .explore-services__card .card:hover,
.explore-services.explore-services-2 .explore-services__card .card:hover,
.explore-services.explore-services-2 .explore-services__card .card:hover .inner {
	background-color: #0062fc !important;
}
.explore-services .explore-services__card .card .explore_services_icon {
	padding-top: 40px;
	padding-left: 20px;
}
.explore-services .explore-services__card .card:hover .explore_services_icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(238deg) brightness(107%) contrast(102%);
}
.explore-services .explore-services__card .card h4 {
	color: #000000;
	margin: 0;
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.explore-services .explore-services__card .card:hover h4 {
	color: #d0ff00;
}
.explore-services .explore-services__card .card p {
	color: #000000;
}
.explore-services .explore-services__card .card:hover p {
	color: #ffffff;
}
.explore-services .explore-services__card .card span {
	color: #000000;
	padding-left: 20px;
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 40px;
}
.explore-services.explore-services-2 .explore-services__card .card span {
	position: relative;
	bottom: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: auto;
}
.explore-services .explore-services__card .card span p {
	display: none;
	transition: display 0.90s linear;
	padding: 0 20px 0 0;
}
.explore-services.explore-services-2 .explore-services__card .card span p {
	display: block;
	transition: display 0.90s linear;
	padding: 0 20px 0 0;
}
.explore-services .explore-services__card .card span:after {
	content: "";
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow.svg");
	background-repeat: no-repeat;
	height: 44px;
	width: 46px;
	display: inline-block;
	position: relative;
}
.explore-services .explore-services__card .card:hover span {
	color: #ffffff;
}
.explore-services .explore-services__card .card:hover span p {
	display: block;
}
.explore-services .explore-services__card .card:hover span:after {
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-hover.svg");
}

@media (min-width: 768px) {
	.explore-services .explore-services__card .card .explore_services_icon {
		padding-left: 40px;
	}
	.explore-services .explore-services__card .card span {
		padding-left: 40px;
	}
}
/* end */




/* explore_services-3 */
.explore_services-3 {}
/* end */



/* explore_services-4 */
.explore_services-4 > .row-fluid {
	gap: 4px;
}
.explore_services-4 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6),
.explore_services-4 .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
	color: #000;
}
.explore_services-4 > .row-fluid > div > div:last-child {
	margin-top: auto;
}
.explore_services-4 a.hs-button:hover,
.explore_services-4 a.hs-button:focus {
	border-color: #000;
}
/* end */
.were_different > .row-fluid > div {
	border: 2px solid #2a2a2a;
/*	justify-content: flex-start !important;*/
}
.were_different h3 {
	color: #000;
	margin-top: 40px;
	margin-bottom: 10px;
	display: block;
}
.were_different p {
	color: #000;
	margin-bottom: 30px;
}
.were_different ul {
	margin: 0;
	padding: 32px 0 20px;
	list-style: none;
}
.were_different ul li {
/*	font-size: 20px;*/
/*	line-height: 32px;*/
	color: #000;
	padding-bottom: 32px;
	padding-left: 37px;
}
.were_different ul li:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 20px;
	margin-left: -37px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/type-circle.svg") 0 0 no-repeat;
}
.were_different ul li:last-child {
	padding-bottom: 0;	
}

@media (min-width: 768px) {
	.were_different ul {
		padding-bottom: 20px;
	}
	.were_different ul li {
		padding-bottom: 42px;
	}
}

@media (min-width: 768px) {
	.were_different p {
		margin-bottom: 0;
		min-height: 90px;
		height: 100%;
	}
}
.button_all_case a.hs-button {
	border: 1px solid #fff;
}
.button_all_case a.hs-button:hover {
	background-color: #ffffff;
	color: #000000;
}
.button_all_case a.hs-button:after {
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	left: 0;
}
.button_all_case a.hs-button:hover:after {
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
	left: 7px;
}
.all_brands {
   margin-top: -1px;
}
.all_brands h3 {
   max-width: 700px;
   width: 100%;
   margin: 0 auto 20px;
   text-align: center;
   color: #000;

   font-size: 44px;
   font-weight: normal;
}
@media (min-width: 768px) {
   .all_brands h3 {
      margin: 0 auto 50px;
   }
}
.tedx_video>.row-fluid>.span6:first-child {
   background-repeat: repeat-x !important;
}
.tedx_video>.row-fluid>.span6:last-child {}
.tedx_video .hs_cos_wrapper_type_rich_text {
   width: 420px;
   max-width: 100%;
   display: block;
}
.tedx_video .hs_cos_wrapper_type_rich_text h3 {
   text-align: center;
   margin-bottom: 30px;
}
.tedx_video .hs_cos_wrapper_type_rich_text h3 span {
   color: #d0ff00;
}
.tedx_video .hs_cos_wrapper_type_rich_text p {
   text-align: center;
}
.tedx_video>.row-fluid>.span6:last-child .hs_cos_wrapper_type_module button {
	padding: 0;
	border: 0;
   background: transparent;
}
.tedx_video>.row-fluid>.span6:last-child .hs_cos_wrapper_type_module button.video-hubspot img {
   width: 97px;
   height: 97px;
   transition: transform 250ms;
}
.tedx_video>.row-fluid>.span6:last-child .hs_cos_wrapper_type_module button.video-hubspot:hover img {
	transform: scale(1.3);
}
@media (max-width: 767px) {
	.tedx_video>.row-fluid>.span6:last-child {
		height: 500px;
		display: flex;
    	align-items: center;
    	justify-content: center;
	}
}
@media (min-width: 768px) {
	.tedx_video>.row-fluid>.span6:first-child {
	   border-right: 1px solid #484848;
	}
}
.more_resources>.row-fluid {
   border: 4px solid #2a2a2a;
}
.more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(3) {
	flex-grow: 1;
	margin-bottom: auto;
	display: flex;
	align-items: flex-end;
}
.more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(3) .row-fluid {
	border-top: 1px solid #2772fd;
	padding: 20px 0 0 20px;
	align-items: center;
}
.more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) {
	border-top: 1px solid #2772fd;
}


@media (max-width: 767px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6:first-child img {
      height: auto !important;
   }
}

@media (min-width: 768px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) {
      height: 641px;
   }
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6:last-child h2 {
      white-space: nowrap;
   }
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(3) .row-fluid {
		padding: 19px 0 19px 40px;
	}
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6:first-child img {
      height: auto;
   }
}
@media (max-width: 991px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6 {
      align-items: center !important;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) > .row-fluid {
      margin-top: -100px;
      flex-direction: column !important;
      padding-left: 40px;
   }
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6 {
      width: 100%;
   }
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6:first-child img {
      height: 340px !important;
   }
}
@media (min-width: 992px) and (max-width: 1280px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) .span6:last-child h2 {
      font-size: 50px;
      line-height: 60px;
   }
}

.more_resources>.row-fluid>.span8 h2 em,
.more_resources>.row-fluid>.span8 h2 {
   text-transform: none;
   line-height: 70px;
   margin-bottom: 50px;
   font-style: italic;
}
.more_resources>.row-fluid>.span8 .span12 h5 {
   color: #d0ff00;
}
.more_resources>.row-fluid>.span8 .span1 {
   width: auto;
}
.more_resources>.row-fluid>.span8 .span1 img {
   margin-right: 20px;
   width: auto;
}
.more_resources>.row-fluid>.span8 .span5 {
   width: 42%;
}
.more_resources>.row-fluid>.span8 .span5 p {
   font-size: 16px;
   line-height: 22px;
   opacity: 0.5;
}
.more_resources>.row-fluid>.span8 .row-fluid {}
@media (min-width: 992px) {
	/*.more_resources>.row-fluid>.span8 .row-fluid>.span6:nth-of-type(2) {
		padding-right: 50px;
	}*/
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(3) .row-fluid {
      padding: 33px 0 33px 40px;
   }
}
@media (min-width: 992px) and (max-width: 1199px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(3) .row-fluid {
      padding: 19px 0 19px 40px;
   }
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button {
   border: 1px solid #fff;
   display: inline-block;
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button:hover {
   background-color: #ffffff;
   color: #000000;
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button:after {
   content: "";
   display: inline-block;
   width: 25px;
   height: 24px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
   margin-left: 25px;
   vertical-align: sub;
   position: relative;
   transition: left 0.15s linear;
   left: 0;
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button:hover:after {
   left: 7px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(4) a.hs-button {
   text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
	padding-right: 0;
}
.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(4) a.hs-button:hover {
   text-decoration-color: #d0ff00;
}

@media (min-width: 768px) {
   .more_resources>.row-fluid>.span8 {
      border-right: 4px solid #2a2a2a;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
   .more_resources>.row-fluid>.span8 {
      width: 60%;
   }
   .more_resources>.row-fluid>.span4 {
      width: 40%;
   }
   .more_resources>.row-fluid>.span8 .span1 img {
      margin-right: 10px;
   }
   .more_resources>.row-fluid>.span8 .span5 {
      width: 30%;
   }
   .row-fluid .dnd_area-dnd_partial-13-column-1-row-4-vertical-alignment {
      padding-left: 20px !important;
      padding-right: 20px !important;
   }
   .more_resources>.row-fluid>.span8 .span3.dnd_area-dnd_partial-13-module-10-vertical-alignment a.hs-button {
      padding-right: 0;
   }
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button {
      width: 147px;
      padding-left: 15px;
      padding-right: 15px;
   }
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button:after {
      margin-left: 5px;
   }
}
@media (min-width: 992px) and (max-width: 1290px) {
   .more_resources>.row-fluid>.span8 .span3.dnd_area-dnd_partial-13-module-10-vertical-alignment a.hs-button {
      padding-right: 0;
   }
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button {
      width: 170px;
   }
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button:after {
      margin-left: 5px;
   }
}

@media (max-width: 991px) {
   .more_resources>.row-fluid>.span8>.dnd-row:nth-of-type(2) {
      padding-left: 0px !important;
      padding-right: 20px !important;
   }
   .more_resources>.row-fluid>.span8 .span6 #hs_cos_wrapper_dnd_area-dnd_partial-13-module-5 {
      padding-right: 0 !important;
   }
   .more_resources .span8 .span1 {
      width: 25%;
   }
   .more_resources .span8 .span5 {
      width: 75%;
   }
   .more_resources .span8 .span3 {
      text-align: center;
   }
}

@media (max-width: 767px) {
	.more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(4) a.hs-button {
		padding-left: 0;
		justify-content: center;
	}
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(4) a.hs-button:after {
      display: none;
   }
	.more_resources .span8 .span3 {
		text-align: left;
		width: 55%;
	}
   .more_resources .span8 .span3:last-child {
      width: 45%;
   }
   .more_resources>.row-fluid>.span8 .span6 #hs_cos_wrapper_dnd_area-dnd_partial-13-module-5_ {
/*      text-align: left;*/
/*      width: 50%;*/
   }
   .more_resources>.row-fluid>.span8 .span5 {
      width: 75%;
   }
   .more_resources .row-number-6 .row-fluid {
      display: grid !important;
      grid-template-columns: 70px 1fr;
   }
   .more_resources .row-number-6 .row-fluid .span3 {
      grid-column-start: 1;
      grid-row-start: 2;
      grid-row-end: 2;
      width: 200px;
   }
   .more_resources .row-number-6 .row-fluid .span3:last-child {
      grid-column-start: 2;
      grid-row-start: 2;
      grid-row-end: 2;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end
   }
   .more_resources>.row-fluid>.span8 .row-fluid div:nth-of-type(3) a.hs-button {
   	padding-left: 24px;
   	padding-right: 24px;
   }
}






.more-resources__home h5 {
   padding: 32px 20px;
   border-bottom: 1px solid #333333;
   color: #d0ff00;
}
.more-resources__home .cards {
	display: grid;
  	grid-template-columns: repeat(2, 1fr);
   padding-bottom: 10px;
}
.more-resources__home .cards__card {
   position: relative;
   align-items: center;
   flex-direction: column;
   display: flex;
   flex-wrap: nowrap;
   border-bottom: 1px solid #333333;
   padding: 30px 5%;
   width: 100%;
   min-height: 336px;
   height: 100%;
   transition: background-color 0.10s;
}
.more-resources__home .cards__card:nth-child(2n) {
	border-left: 1px solid #333333;
}
.more-resources__home .cards__card:hover {
   background-color: #d0ff00;
}
.more-resources__home .cards__card a.position-cover {
   cursor: pointer;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
}
.more-resources__home .card__image {
   margin-bottom: 20px;
}
.more-resources__home .card__image img {
/*   width: auto !important;*/
   display: block;
   margin: 0 auto;
   box-shadow: 0px 14px 44px rgba(0, 0, 0, 0.35);
}
.more-resources__home .card__text {
   width: 100%;
   text-align: center;
}
.more-resources__home .card__text h6 {
	transition: color 0.10s, text-decoration-color 0.10s;
   margin-bottom: 10px;
   text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.more-resources__home .card__text p {
   font-size: 16px;
   line-height: 22px;
   color: #aaaaaa;
}
.more-resources__home .card__text a:hover {
	text-decoration-color: transparent;
}
.more-resources__home .cards__card:hover h6,
.more-resources__home .cards__card:hover a {
   color: #000000;
	text-decoration-color: rgba(0, 0, 0, 1);
}
.more-resources__home .cards__card:hover p {
   color: #000000;
}
.more-resources__link-all a {
   position: relative;
   padding: 30px 20px 40px;
   display: flex;
   align-items: center;
}
.more-resources__link-all a:after {
   content: "";
   display: inline-block;
   height: 44px;
	width: 46px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-hover.svg") center right no-repeat;
   vertical-align: sub;
   position: absolute;
   transition: right 0.15s linear;
   right: 20px;
}
.more-resources__link-all a:hover:after {
   right: 17px;
}
@media (min-width: 768px) {
   .more-resources__home h5 {
      padding: 32px 30px;
   }
   .more-resources__link-all {
      /*		padding-top: 35px;*/
   }
   .cards__card {
      padding: 10px 40px;
   }
   .card__image {
/*      margin-right: 33px;*/
   }
   .more-resources__link-all a {
      padding: 43px 40px 54px;
   }
   .more-resources__link-all a:after {
      right: 40px;
   }
   .more-resources__link-all a:hover:after {
      right: 33px;
   }
}
.latest_post .page-center>h5 {
   padding-top: 53px;
   padding-bottom: 53px;
   text-align: center;
   color: #d0ff00;
}
.latest_post .section-btm-row {
   border-top: 1px solid #333333;
   border-bottom: 1px solid #333333;
}
.latest_post .section-btm-row>.span6 {
   padding: 60px 35px;
   display: flex;
   align-items: center;
  	position: relative;
  	max-width: 100%;
  	overflow: hidden;
  	margin: 0;
  	transition: background-color 0.10s;
}
.latest_post .section-btm-row>.span6:hover {
	background-color: #d0ff00;
}
.latest_post .section-btm-row>.span6>a.position-cover {
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
}

.latest_post .section-btm-row .row-fluid {
   align-items: center;
}
.latest_post .item-image img {
   height: 220px;
   object-fit: cover;
}
.latest_post .item-title {
   padding-left: 35px;
}
.latest_post .item-title a.h5 {
	display: block;
	padding: 12px 0;
}
.latest_post .section-btm-row>.span6:hover a.h5 {
	color: #000000;
	text-decoration-color: #000000;
}
.latest_post .item-title a.h5:after {
	content: "";
	display: block;
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-top: 23px;
	vertical-align: sub;
	position: relative;
}
.latest_post .section-btm-row>.span6:hover a.h5:after {
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
.latest_post .text-center {
	text-align: center;
	padding: 60px 0;
}
.latest_post .text-center a {
	border: 1px solid #fff;
	display: inline-block;
}
.latest_post .text-center a.hs-button:hover {
	background-color: #ffffff;
	color: #000000;
}
.latest_post .text-center a.hs-button:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small-white.svg") center right no-repeat;
	margin-left: 26px;
	vertical-align: sub;
	position: relative;
	left: 0;
}
.latest_post .text-center a.hs-button:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
@media (max-width: 767px) {
	.latest_post .section-btm-row>.span6:first-child {
   	border-bottom: 1px solid #333333;
	}
	.latest_post .section-btm-row>.span6 {
	   padding: 30px 20px;
	}
	.latest_post .item-title {
		padding-left: 0;
		margin-top: 12px;
	}
}
@media (min-width: 768px) {
	.latest_post .section-btm-row>.span6:first-child {
   	border-right: 1px solid #333333;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.latest_post .section-btm-row > .span6 > .row-fluid {
		flex-direction: column;
	}
	.latest_post .section-btm-row > .span6 {
    	align-items: flex-start;
	}
	.latest_post .section-btm-row > .span6 .item-image,
	.latest_post .section-btm-row > .span6 .item-title {
		width: 100%;
	}
	.latest_post .item-title {
		padding-left: 0;
		margin-top: 12px;
	}
	.latest_post .section-btm-row>.span6 {
	   padding: 60px 65px;
	}
}
@media (min-width: 1200px) {
	.latest_post .item-title {
	   padding-left: 50px;
	}
	.latest_post .section-btm-row>.span6 {
	   padding: 60px 65px;
	}
}
.newsletter .hs_cos_wrapper {
	display: flex;
	justify-content: center;
	text-align: center;
}
.newsletter > .row-fluid {
   max-width: none !important;
}


.newsletter > .row-fluid > .span6.form,
.newsletter-2 > .row-fluid > .span6:first-child {
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/grid.svg");
	background-repeat: repeat-x;
	background-position: top right;

   padding: 50px 20px 60px 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
}
.newsletter-2 > .row-fluid > .span6:first-child {
	background-color: #fff;
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/grid-black.svg");
	background-position: right 97px;
}
.newsletter-2 > .row-fluid > .span6 .button-custom a.hs-button:hover,
.newsletter-2 > .row-fluid > .span6 .button-custom a.hs-button:focus {
	border-color: #000;
}
.newsletter-2 > .row-fluid > .span6:first-child h3,
.newsletter-2 > .row-fluid > .span6:last-child h3 {
	color: #000;
	font-size: 44px;
	line-height: 50px;
	text-transform: uppercase;
	font-weight: normal;
	max-width: 450px;
}
.newsletter-2 > .row-fluid > .span6:first-child .hs_cos_wrapper_type_rich_text p,
.newsletter-2 > .row-fluid > .span6:last-child .hs_cos_wrapper_type_rich_text p {
	color: #000;
	max-width: 410px;
	font-size: 24px;
}
.newsletter > .row-fluid > .span6.form h3 {
	color: #fff;
	max-width: 440px;
	font-size: 32px;
	font-weight: normal;
	width: 100%;
	text-align: center;
	padding-bottom: 50px;
    padding-top: 50px;
}
.newsletter > .row-fluid > .span6:first-child #hs_form_target_form {
	width: 100%;
}
.newsletter > .row-fluid > .span6:first-child label {
	display: none;
}
.newsletter > .row-fluid .widget-type-form {
	width: 100%;
}
.newsletter > .row-fluid .widget-type-form .hs_cos_wrapper,
.newsletter > .row-fluid .widget-type-form .hs_cos_wrapper > div {
	width: 100%;
}
.newsletter > .row-fluid > .span6:first-child .input input {
	background: transparent;
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	padding: 17px 26px;
	text-align: center;
	border-radius: 50px;
	border: 1px solid #fff;
	max-width: 100%;
	width: 480px;
}
.newsletter > .row-fluid > .span6:first-child .input input::placeholder {
   opacity: 0.5;
   color: #ffffff;
}
.newsletter > .row-fluid > .span6:first-child .hs_submit {
	position: relative;
}
.newsletter > .row-fluid > .span6.form .hs_submit .actions {
   margin-left: auto;
   margin-right: auto;
   margin-top: 55px;
   margin-bottom: 35px;
   width: 203px;
   text-align: left;
}
.newsletter > .row-fluid > .span6:first-child .hs_submit .actions input {
	padding-right: 80px;
	display: inline-block;
	text-transform: capitalize;
	transition: background-color 0.15s linear;
}
.newsletter > .row-fluid > .span6:first-child .hs_submit .actions:hover input[type=submit] {
	background-color: #ffffff;
	color: #000000;
}
.newsletter > .row-fluid > .span6:first-child .hs_submit .actions:after {
	content: "";
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-left: -55px;
	vertical-align: sub;
	position: relative;
	transition: left 0.15s linear;
	left: 0;
	display: inline-block;
}
.newsletter > .row-fluid > .span6:first-child .hs_submit .actions:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
@media (min-width: 768px) {
	.newsletter > .row-fluid > .span6.form h3 {
		padding-bottom: 60px;
	}
}




.newsletter > .row-fluid > .span6.contact,
.newsletter-2 > .row-fluid > .span6:last-child {
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/mask.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;

	display: flex;
   flex-direction: column;
   align-items: center;
   padding: 50px 20px 60px 20px;
}
.newsletter-2 > .row-fluid > .span6:last-child {
	background-color: #d0ff00;
}
.newsletter > .row-fluid > .span6.contact h3 {
	color: #000;
	max-width: 440px;
	font-size: 32px;
	font-weight: normal;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 40px;
   	padding-top: 50px;
}

.newsletter > .row-fluid > .span6.contact p {
	color: #000;
	font-size: 24px;
	line-height: 32px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	margin-bottom: 68px;
}
.newsletter > .row-fluid > .span6:last-child a.hs-button:hover {
	background-color: #ffffff;
}
.newsletter > .row-fluid > .span6:last-child a.hs-button:after {
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	left: 0;
}
.newsletter > .row-fluid > .span6:last-child a.hs-button:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
@media (min-width: 768px) {
	.newsletter > .row-fluid > .span6:first-child .hs-form-field {
		margin-bottom: 112px;
	}
}

/*
Section - Newsletter Case Studies Post
+
Section - Newsletter Post Blog
*/
/*.body-container--blog-post .newsletter .row-fluid,
.body-container--post-case .newsletter .row-fluid {
   max-width: none !important;
}*/
/*.body-container--blog-post .newsletter .form,
.body-container--post-case .newsletter .form {
   background: #0062fc url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/grid.svg") 0 100px no-repeat;
   padding: 50px 20px 25px 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
}*/
/*.body-container--blog-post .newsletter .form h3,
.body-container--post-case .newsletter .form h3 {
   padding-bottom: 50px;
   padding-top: 50px;
}*/
/*.body-container--blog-post .newsletter .form .actions,
.body-container--post-case .newsletter .form .actions {
   margin-top: 55px;
   margin-bottom: 35px;
}*/
/*.body-container--blog-post .newsletter .contact,
.body-container--post-case .newsletter .contact {
   background: #d0ff00 url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/mask.svg") 0 0 no-repeat;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 50px 20px 25px 20px;
}*/
/*.body-container--blog-post .newsletter .contact h3,
.body-container--post-case .newsletter .contact h3 {
   padding-bottom: 20px;
   padding-top: 50px;
}*/
/*.body-container--blog-post .newsletter .contact .hs_cos_wrapper_type_rich_text p,
.body-container--post-case .newsletter .contact .hs_cos_wrapper_type_rich_text p {
   padding-bottom: 35px;
   padding-top: 20px;
}*/
/*.body-container--blog-post .newsletter .contact a.hs-button,
.body-container--post-case .newsletter .contact a.hs-button {
   margin-top: 35px;
   margin-bottom: 35px;
}*/
/*@media (min-width: 768px) {
   .body-container--blog-post .newsletter .form h3,
   .body-container--post-case .newsletter .form h3 {
      padding-bottom: 112px;
      padding-top: 50px;
   }
   .body-container--blog-post .newsletter .actions,
   .body-container--post-case .newsletter .actions {
      margin-top: 35px;
      margin-bottom: 35px;
   }
   .body-container--blog-post .newsletter .form .actions,
   .body-container--post-case .newsletter .form .actions {
      margin: 0;
   }
}*/
.newsletter2 > .row-fluid > .span6:first-child {}
.newsletter2 h3 {
	font-weight: bold;
	margin-bottom: 30px;
}
.newsletter2 h3 span {
	color: #d0ff00;
}

@media (min-width: 768px) {
	.newsletter2 h3 {
		margin-bottom: 70px;
	}
}
@media (min-width: 1200px) {
	.newsletter2 > .row-fluid > .span6:first-child .hs_cos_wrapper {
		width: 84%;
		display: block;
	}
}











.newsletter2 > .row-fluid > .span6:last-child .dnd-row {
	padding: 30px 20px;
	text-align: center;
}
.newsletter2 > .row-fluid > .span6:last-child h5 {
	margin-bottom: 30px;
	color: #000000;
}
.newsletter2 > .row-fluid > .span6:last-child .row-fluid .span12> div {
	width: 100%;
}
.newsletter2 > .row-fluid > .span6:last-child .hs_submit {
	padding-top: 20px;
}

.newsletter2 > .row-fluid > .span6:last-child .hs_submit .actions input {
	padding-right: 75px;
	display: inline-block;
	text-transform: capitalize;
	transition: background-color 0.15s linear;
}
.newsletter2 > .row-fluid > .span6:last-child .hs_submit .actions input:hover {
	background-color: #ffffff;
	color: #000000;
}
.newsletter2 > .row-fluid > .span6:last-child .hs_submit .actions:after {
	content: "";
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-left: -25px;
	vertical-align: sub;
	position: relative;
	right: 30px;
	display: inline-block;
	transition: right 0.15s linear;
}
.newsletter2 > .row-fluid > .span6:last-child .hs_submit .actions:hover:after {
	right: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}


@media (min-width: 768px) {
	.newsletter2 > .row-fluid > .span6:last-child .hs_submit .actions input {
		padding-right: 85px;
	}
	.newsletter2 > .row-fluid > .span6:last-child .dnd-row {
		padding: 75px 30px;
	}
	.newsletter2 > .row-fluid > .span6:last-child .hs_submit {
		padding-top: 60px;
	}
	.newsletter2 > .row-fluid > .span6:last-child h5 {
		margin-bottom: 80px;
	}
}
@media (min-width: 992px) {
	.newsletter2 > .row-fluid > .span6:last-child .dnd-row {
		padding: 75px;
	}
}
@media (min-width: 1200px) {
	.newsletter2 > .row-fluid > .span6:last-child .dnd-row {
		padding: 75px 95px;
	}
}
.formular>.row-fluid .hs_cos_wrapper {
   width: 100%;
}
@media (min-width: 1200px) {
   .formular>.row-fluid .hs_cos_wrapper {
      width: 760px;
      display: block;
   }
}
.formular fieldset.form-columns-1 .input,
.formular fieldset.form-columns-2 .input {
	margin-right: 0;
}
.formular input[type=text],
.formular input[type=email],
.formular textarea {
   border-color: #fff;
   width: 100% !important;
   color: #fff !important;
}
.formular textarea::placeholder,
.formular input::placeholder {
   color: rgba(255, 255, 255, .5) !important;
}
.formular textarea {
   height: 250px;
   resize: none;
}
.formular .hs-error-msg {
   font-size: 14px;
   letter-spacing: 0;
}
.formular .hs_submit {
   text-align: center;
}
.formular .hs_submit .actions {
   display: inline-block;
}
.formular .hs_submit .actions input {
   padding-right: 75px;
   display: inline-block;
   background-color: transparent;
   text-transform: capitalize;
   transition: background-color 0.15s linear;
   border-color: #fff;
}
.formular .hs_submit .actions input:hover {
   background-color: #ffffff;
   color: #000000;
}
.formular .hs_submit .actions:after {
   content: "";
   width: 25px;
   height: 24px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
   margin-left: -25px;
   vertical-align: sub;
   position: relative;
   right: 30px;
   display: inline-block;
   transition: right 0.15s linear;
}
.formular .hs_submit .actions:hover:after {
   right: 24px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
.formular .hs_select_service_ {
   color: #ffffff;
   padding: 15px 0 5px;
}
.formular .hs_select_service_>label {
	margin-bottom: 25px;
}
.formular .hs_select_service_>label span {
   color: #ffffff;
   font-size: 24px;
   line-height: 32px;
   font-weight: bold;
}
.formular .hs_select_service_ .input ul {
   columns: 1;
   -webkit-columns: 1;
   -moz-columns: 1;
}
.formular .hs_select_service_ .input ul li {
	margin-bottom: 0;
   padding-bottom: 10px;
}
.formular .hs_select_service_ .input ul li span {
   font-size: 16px;
   line-height: 26px;
   color: #ffffff
}
.formular .hs_select_service_ .input label {
   cursor: pointer;
   margin: 0;
}
.formular .hs_select_service_ .input input[type="radio"] {
	appearance: none;
   cursor: pointer;
   position: relative;
   padding-left: 26px;
}
.formular .hs_select_service_ .input input[type="radio"]::before {
   content: "";
   display: inline-block;
   width: 25px;
   aspect-ratio: 1;
   border: 1px solid #ffffff;
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   opacity: 1;
   transition: opacity 0.3s;
}
.formular .hs_select_service_ .input input[type="radio"]::after {
   content: "";
   display: inline-block;
   width: 15px;
   aspect-ratio: 1;
   background: #ffffff;
   border-radius: 50%;
   position: absolute;
   left: 5px;
   top: 50%;
   transform: translateY(-50%);
   opacity: 0;
   transition: opacity 0.3s;
}
.formular .hs_select_service_ .input input[type="radio"]:checked::after {
   opacity: 1;
}
@media (max-width: 767px) {
	
}
@media (min-width: 768px) {
	.formular fieldset.form-columns-1 .input,
	.formular fieldset.form-columns-2 .input {
		margin-right: 20px !important;
	}
	.formular .hs_select_service_ {
	   padding: 30px 0 5px;
	}
	.formular .hs_select_service_ .input ul {
	   columns: 2;
	   -webkit-columns: 2;
	   -moz-columns: 2;
	}
}
.team-style {
   border-top: 1px solid rgba(255, 255, 255, .2);
   position: relative;
}
.team-style:before {
	content: "";
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/grid.svg") !important;
	background-repeat: repeat;
	background-position: top center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.team-style .row-fluid {
	position: relative;
}
.team-style .cards-team {
   margin-top: 30px;
   display: grid;
   justify-content: space-between;
   grid-template-columns: repeat(1, 1fr);
/*   column-gap: 146px;*/
   row-gap: 50px;
}
.partners-style .card button.hs-button {
	width: auto !Important;
}
.team .card > img {
	min-width: 210px;
	min-height: 210px;
	width: 100% !important;
	height: auto;
}
.team .card h5 {
   margin-top: 23px;
}
.team .card p.position {
	font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, .5);
}
.team .card button.hs-button {
	margin-top: 23px;
   padding-top: 15px;
   padding-bottom: 15px;
   font-size: 16px;
   line-height: 22px;
   background-color: transparent;
   border-color: #ffffff;
   display: flex;
   justify-content: space-between;
   transition: background-color 0.15s linear;
}
.team .card button.hs-button:after {
   content: "";
   display: inline-block;
   width: 25px;
   height: 24px;
   background: url(https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg) center right no-repeat;
   margin-left: 25px;
   vertical-align: middle;
   position: relative;
   left: 0;
   transition: left 0.10s linear;
}
.team .card button.hs-button:hover {
   background-color: #ffffff;
   color: #000000;
}
.team .card button.hs-button:hover:after {
	left: 7px;
   background: url(https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg) center right no-repeat;
}
@media (min-width: 768px) {
	.team .card button.hs-button {
		width: 100%;
	}
	.team-style .cards-team {
	   grid-template-columns: repeat(3, 210px);
/*	   column-gap: 35px;*/
	   row-gap: 50px;
	   margin-top: 53px;
	}
	.team .card > img {
		max-width: 210px;
		max-height: 210px;
		width: 100% !important;
	}
}
@media (min-width: 992px) {
	.team-style .cards-team {
	   grid-template-columns: repeat(4, 220px);
	}
	.team .card button.hs-button {
		max-width: 210px;
	}
}
@media (min-width: 1200px) {
	.team-style .cards-team {
/*	   column-gap: 140px;*/
	}
}

/*style modal*/
.team .modal-dialog {
	display: flex;
	align-items: center;
}
.team .modal-content {
	height: 100%;
	overflow: auto;
}
.team .modal-body .content {
	padding-top: 0;
}
.team .modal-body .image {
	padding-left: 0;
}
.team .modal-body .image img {
	width: 100% !important;
	height: 300px;
	object-fit: cover;
} 
.team .modal-body .image h3 {
	margin-top: 40px;
	margin-bottom: 6px;
	color: #000000;
}
.team .modal-body .image p.position {
	font-size: 18px;
	line-height: 24px;
	color: rgba(0, 0, 0, .5);
}
.team .modal-body .text {
	padding-top: 30px;
	padding-left: 0;
}
.team .modal-body .text p {
	font-size: 24px;
	line-height: 32px;
	color: #000000;
	margin-bottom: 32px;
}
.team .modal-body .text a {
	color: #000000;
	text-decoration: underline !important;
}
.team .modal-body .text p+p:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) and (max-height: 767px) {
	.team .modal-content {
		height: 100vh;
	}
	.team .modal-body .image img {
		width: auto !important;
		max-width: 100%;
    	max-height: calc(100vh - 220px);
	}
}
@media (min-width: 768px) {
	.team .modal-content {
		height: calc(100vh - 168px);
	}
	.team .modal-dialog {
		max-width: 1360px;
		width: 100%;
	}
	.team .modal-body .content {
		max-height: 100%;
	 	display: flex;
	 	flex-direction: row;
	 	overflow: hidden;
	}
	.team .modal-body .image {
		width: 340px;
	}
	.team .modal-body .text {
		padding-top: 0;
		padding-left: 37px;
		padding-right: 37px;
		overflow-y: auto;
    	display: flex;
    	flex-direction: column;
    	width: fit-content;
	}
	/* add custom styling to the scrollbar */
	.team .modal-body .text::-webkit-scrollbar {
	   transform: translateY(-10px);
	   width: 8px;
	   height: 8px;
	}
	.team .modal-body .text::-webkit-scrollbar-track {}
	.team .modal-body .text::-webkit-scrollbar-thumb {
	   background: #E7E7E7;
	}
	.team .modal-body .text::-webkit-scrollbar-thumb:hover {
		border-top: 1px solid rgba(255, 255, 255, .1);
		padding: 23px 0;
		list-style: none;
	}
}
@media (min-width: 992px) {
	.team .modal-body .image {
		margin-left: 10px;
	}
	.team .modal-body .content {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}
@media (min-width: 1200px) {
	.team .modal-body .content {
		padding-top: 52px;
		padding-bottom: 52px;
	}
	.team .modal-body .text {
		padding-left: 77px;
		padding-right: 77px;
	}
	.team .modal-body .image {
		margin-left: 20px;
	}
}
@media (max-height: 600px) and (min-width: 768px) {
	.team .modal-body .content {
		padding-top: 0;
		padding-bottom: 0;
	}
	.team .modal-body .image {
		margin-left: 0;
		overflow-y: auto;
	}
}








.partners-style {
	padding: 20px 20px 50px 20px;
}
.partners-style .cards-team {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   column-gap: 85px;
   row-gap: 50px;
}
.partners-style .span4 {
	padding: 20px 0 30px;
	justify-content: space-between !important;
}
.partners-style .span4 h3 {
	margin-bottom: 20px;
}
.partners-style .span4 p {
	font-size: 24px;
	line-height: 32px;
}
.partners-style .span8 {
	padding-left: 0px;
}
@media (min-width: 768px) {
	.partners-style {
		padding: 100px 40px 80px 40px;
	}
	.partners-style .cards-team {
	   grid-template-columns: repeat(2, 2fr);
	   justify-content: space-between;
	   column-gap: 30px;
	}
	.partners-style .span8 {
		padding-left: 30px;
	}
	.partners-style .span4 {
		padding: 0;
	}
	.partners-style .card > img {
		max-width: 370px;
		max-height: 370px;
		width: 100% !important;
	}
}
@media (min-width: 992px) {
	.partners-style .span8 {
		padding-left: 80px;
	}
	.partners-style .span4 {
		padding-right: 60px;
	}
}
@media (min-width: 1200px) {
	.partners-style .cards-team {
		column-gap: 85px;
	}
	.partners-style .span4 {
		padding-right: 100px;
	}
}
/* end */



/* start */
.team-2 .hs_cos_wrapper_type_header h3,
.team-3 .hs_cos_wrapper_type_header h3,
.team-3 .span12 .hs_cos_wrapper_type_rich_text h3 {
	font-size: 44px;
	font-weight: normal;
	text-align: center;
	color: #fff;
}
.team-3 .span12 .hs_cos_wrapper_type_rich_text h3 {
	text-align: left;
	margin-bottom: 20px;
}
.team-3 .span12 .hs_cos_wrapper_type_rich_text p strong {
	color: rgba(218, 255, 1, 1);
	font-weight: normal;
}
@media (max-width: 767px) {
	.team-2 .span12 .hs_cos_wrapper_type_rich_text p,
	.team-3 .span12 .hs_cos_wrapper_type_rich_text p:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (min-width: 768px) {
	.team-2 .span12 .hs_cos_wrapper_type_rich_text p, 
	.team-3 .span12 .hs_cos_wrapper_type_rich_text p {
		font-size: 24px;
		line-height: 32px;
	}
}
@media (min-width: 768px) {
	.team-2 .span12 .widget-type-linked_image img {
		width: 460px;
	}
}
.team-2 .span12 .widget-type-linked_image .wrapper {
	text-align: center;
}
@media (min-width: 768px) {
	.team-2 .span12 .widget-type-linked_image .wrapper {
		text-align: right;
	}
}
.team-2 .span12 .hs_cos_wrapper_type_rich_text ul,
.team-3 .span12 .hs_cos_wrapper_type_rich_text ul {
   margin: 27px 0 0 0;
   padding: 0;
}
.team-2 .span12 .hs_cos_wrapper_type_rich_text ul li,
.team-3 .span12 .hs_cos_wrapper_type_rich_text ul li {
   list-style: none;
   padding: 0;
   margin: 0;
   line-height: 34px;
   padding-left: 37px;
}
.team-2 .span12 .hs_cos_wrapper_type_rich_text ul li:before,
.team-3 .span12 .hs_cos_wrapper_type_rich_text ul li:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 20px;
	margin-left: -37px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/type-circle-2.svg") 0 0 no-repeat;
}
/* end */


/* start */
.team-3 .span12 > .row-fluid-wrapper > .row-fluid > div:first-child {
	/* text-align: right; */
}
@media (min-width: 768px) {
	.team-3 .span12 > .row-fluid-wrapper > .row-fluid > div:first-child > div {
		max-width: 460px;
	}
}
.team-3 .span12 .row-fluid > div:last-child {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.team-2 .span12 .hs-button.style_1,
.team-3 .span12 .hs-button.style_1 {
	border-color: #fff;
	background: transparent;
	transition: background-color 0.15s linear;
	width: fit-content;
}
.team-2 .span12 .hs-button.style_1:after,
.team-3 .span12 .hs-button.style_1:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 24px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
	margin-left: 25px;
	vertical-align: middle;
	position: relative;
	left: 0;
	transition: left 0.15s linear;
}
.team-2 .span12 .hs-button.style_1:hover,
.team-3 .span12 .hs-button.style_1:hover {
	background-color: #fff;
	color: #000000	;
}
.team-2 .span12 .hs-button.style_1:hover:after,
.team-3 .span12 .hs-button.style_1:hover:after {
	left: 7px;
	background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
.team-3 .row-fluid .span7 > .dnd-row:last-child > .row-fluid {
	gap: 10px;
}
/* end */
.latest-book-3 {
	margin-top: -1px;	
	position: relative;
}
.latest-book-3:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/bg-latest-book.svg"); */
    background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/2025-fullsurge/bg-latest-book-1.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.latest-book-3.dnd-section > .row-fluid {
    max-width: 1280px;
    position: relative;
	z-index: 1;
}
.latest-book-3.dnd-section > .row-fluid > div:first-child div {
    height: 100%;
}
.latest-book-3 .hs_cos_wrapper_type_rich_text :is(h2, h3, h4, h5, h6) {
    font-size: 44px;
    line-height: 50px;
    font-weight: normal;
    margin-bottom: 20px;

    max-width: 90%;
}
@media (min-width: 1024px) {
    .latest-book-3 .hs_cos_wrapper_type_rich_text {
        max-width: 80%;
        display: block;
    }
    .latest-book-3 .hs_cos_wrapper_type_rich_text :is(h2, h3, h4, h5, h6) {
        max-width: 90%;
    }
}
.latest-book-3 .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
    color: #000;
}
.latest-book-3 .hs_cos_wrapper_type_rich_text :is(li, p, span, em, small) {
    font-size: 18px;
}


.page-case-studies {}
.page-case-studies a.hs-button:after {
   transform: rotate(90deg);
   bottom: 0;
}
.page-case-studies a.hs-button:hover:after {
   left: 0;
   bottom: -7px;
}




.section_heading .hs_cos_wrapper_type_rich_text {
   display: grid;
}
.section_heading h3 {
	margin-bottom: 20px;	
}
.section_heading p {
   font-size: 24px;
   line-height: 32px;
}
@media (min-width: 992px) {
	.section_heading .hs_cos_wrapper_type_rich_text {
	   grid-template-columns: repeat(2, 1fr);
	}
}


/* heading */
.body-container--case .heading {
   min-height: 400px;
   padding-top: 70px;
   padding-bottom: 60px;
}
.body-container--case .heading .filtr-wrapper {
   margin-top: 22px;
   display: flex;
   flex-direction: column;
   align-items: center;
   transition: all 0.1s;
}
.body-container--case .heading .select-wrapper {
   display: flex;
   flex-direction: column;
}
.body-container--case .heading .filtr-wrapper p {
   display: none;
}
.body-container--case .heading .filtr-wrapper button {
   font-size: 16px;
   line-height: 22px;
   background-color: #ffffff;
   color: #000000;
   display: flex;
   align-items: center;
   border: 0;
   padding-top: 15px;
   padding-bottom: 15px;
}
.body-container--case .heading .filtr-wrapper button:after {
   margin-left: 20px;
   content: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/close-button.svg");
   width: 20px;
   height: 20px;
   display: inline-block;
   transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1);
}
.body-container--case .heading .filtr-wrapper button:hover:after {
   transform: rotate(90deg);
}
.body-container--case .select {
   margin: 0 10px 20px 10px;
}
@media (min-width: 768px) {
   .body-container--case .heading .select-wrapper {
      margin-bottom: 20px;
      flex-direction: row;
   }
   .body-container--case .select {
      margin: 0 10px;
   }
}



/* is-sticky */
.body-container--case .is-sticky {
   position: absolute;
   left: 0;
   right: 0;
}
.body-container--case .is-sticky .filtr-wrapper {
   padding: 20px;
   margin-top: 0;
   background-color: #000000;
   display: grid;
   grid-template-columns: 1fr;
   justify-content: space-between;
   justify-items: center;
   width: 100% !important;
}
.body-container--case .is-sticky .select span.focus {
   margin: 0;
}
.body-container--case .heading .is-sticky .filtr-wrapper p {
   display: block;
   margin-bottom: 20px;
   font-size: 16px;
   line-height: 22px;
   color: #aaaaaa;
   text-align: left;
}

@media (min-width: 768px) {
   .body-container--case .heading .is-sticky .filtr-wrapper p {
      margin-bottom: 0;
   }
   .body-container--case .heading .is-sticky .select-wrapper {
      margin-bottom: 0;
   }
   .body-container--case .is-sticky .filtr-wrapper {
      padding: 20px 40px;
      grid-template-columns: 178px auto 178px;
      justify-items: stretch;
   }
}



/* blog case studies */
.body-container--case .filtr-wrapper {
   margin-top: 22px;
}

.body-container--case .heading .hs_cos_wrapper {
   width: 100%;
}
.body-container--case .hs_cos_wrapper {
   justify-content: center;
}
.body-container--case .heading-case-blog {}
.body-container--case .heading-case-blog .row-fluid {
   display: flex;
   align-items: center;
   flex-direction: column;
}

.case-studies-grid .case-studies {
   overflow: auto;
}
.case-studies-grid .case-studies__card {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
}
.body-container--case .case-studies__card .card {
   margin-bottom: -1px;
   padding-bottom: 105px;
}


.body-container--case .case-studies__card .no-active {
   display: none;
}
.body-container--post-case .case-studies__card .card {
   margin-top: 0;
   margin-bottom: 0;
}
.case-studies__card .card .explore_services_icon {
   width: auto;
   left: 40px;
   bottom: 40px;
   position: absolute;
}
.case-studies__card .card {
   border-right: 1px solid #545454;
   border-top: 1px solid #545454;
   border-bottom: 1px solid #545454;
   position: relative;
   transition: background-color 0.15s linear;
   cursor: pointer;
}
.case-studies__card .card img.card__image {
   padding: 5px;
   object-fit: cover;
   height: 300px;
}
.case-studies__card .card h4 {
   padding: 32px 20px 32px 40px;
   transition: color 0.15s linear;
   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;
}
.case-studies__card .card object {
   padding: 40px;
}
.case-studies__card .card a.position-cover {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
}
.case-studies__card .card a img {
   position: absolute;
   right: 45px;
   bottom: 33px;
   width: 46px;
   opacity: 0;
   transition: opacity 0.15s;
}
@media (min-width: 768px) {
   .case-studies-grid .case-studies__card {
      grid-template-columns: repeat(3, 1fr);
      padding-bottom: 2px;
   }
   .case-studies__card .card h4 {
      padding: 32px 40px;
   }
   .case-studies__card .card img.card__image {
      height: 350px;
   }
}
.case-studies__card .card:hover a img {
   opacity: 1;
}

/* button load more */
#hs_cos_wrapper_load_more {
   margin: 0 auto;
   display: flex;
}
#hs_cos_wrapper_load_more a {
   margin-top: 40px;
   margin-bottom: 40px;
}
#hs_cos_wrapper_load_more a.hs-button {
   border: 1px solid #fff;
   display: inline-block;
}
#hs_cos_wrapper_load_more a.hs-button:hover {
   background-color: #ffffff;
   color: #000000;
}
#hs_cos_wrapper_load_more a.hs-button:after {
   background: url(https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg) center right no-repeat;
   left: 0;
   transform: rotate(90deg);
   bottom: 0;
   transition: bottom 0.15s linear;
}
#hs_cos_wrapper_load_more a.hs-button:hover:after {
   background: url(https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg) center right no-repeat;
   left: 0;
   bottom: -7px;
}
@media (max-width: 767px) {
   #hs_cos_wrapper_load_more {
      margin: 0 auto;
   }
   #hs_cos_wrapper_load_more a {
      margin-top: 60px;
      margin-bottom: 60px;
   }
}

/*end*/




/*post case studies*/
.body-container--post-case .two_column6 img {
   height: auto;
}
.body-container--post-case ul {
   margin-left: 0;
}
.body-container--post-case ul li,
.body-container--post-case ol li {
   font-size: 24px;
   line-height: 32px;
}
/* three_column */
.body-container--post-case .three_column {
   padding: 20px 10px;
}
.body-container--post-case .three_column .row-fluid:first-child h3 {
   margin-bottom: 22px;
   font-size: 24px;
   line-height: 32px;
   color: #d0ff00;
}
.body-container--post-case .three_column .hs_cos_wrapper_type_image {
   padding: 15px 10px 20px 10px;
   display: block;
}
.body-container--post-case .three_column .row-fluid:last-child {
   padding: 20px 10px;
}
.body-container--post-case .three_column .row-fluid .span7 p {
   font-size: 24px;
   line-height: 32px;
}
.body-container--post-case .three_column .row-fluid .span7 p+p {
   margin-bottom: 32px;
}
.body-container--post-case .three_column .row-fluid .span7 p:last-child {
   margin-bottom: 0;
}
.body-container--post-case .three_column .span5 .blockquote h4 {
   width: 100%;
   margin-top: 25px;
   margin-bottom: 35px;
   color: #d0ff00;
}
@media (min-width: 768px) {
   .body-container--post-case .three_column .span5 .blockquote h4 {
      width: 55%;
   }
   .body-container--post-case .three_column {
      padding: 100px 30px 100px 30px;
   }
   .body-container--post-case .three_column .hs_cos_wrapper_type_image {
      padding: 30px 10px 30px 10px;
   }
   .body-container--post-case .three_column .row-fluid .span7 {
      padding-left: 25px;
   }
}
@media (min-width: 1200px) {
   .body-container--post-case .three_column .row-fluid .span7 {
      padding-left: 120px;
   }
}


/* image_text */
.body-container--post-case .image_text {
   width: 100%;
   padding: 0 20px;
}
.body-container--post-case .image_text span.hs_cos_wrapper {
   display: block;
}
.body-container--post-case .image_text>.hs_cos_wrapper_type_rich_text:first-child>*:first-child {
   padding-top: 80px;
}
.body-container--post-case .image_text>.hs_cos_wrapper_type_rich_text:first-child p {
   padding-top: 0;
   margin-bottom: 0;
}
.body-container--post-case .image_text>.hs_cos_wrapper_type_rich_text:last-child>*:last-child {
   padding-bottom: 80px;
}
.body-container--post-case .image_text>.hs_cos_wrapper_type_rich_text:last-child p {
   padding: 0;
   margin-bottom: 0;
}
.body-container--post-case .image_text img {
   margin: 40px 0;
}
@media (min-width: 768px) {
   .body-container--post-case .image_text {
      padding: 0 40px;
   }
   .body-container--post-case .image_text img {
      margin: 80px 0;
   }
}


/* Impact */
.body-container--post-case .testimonial-case-studies-page {
   background-color: #0062fc;
   padding: 30px 0 20px;
}
.body-container--post-case .testimonial-case-studies-page .row-fluid .row-fluid {
   padding-left: 20px;
   padding-right: 20px;
}
.body-container--post-case .testimonial-case-studies-page .blockquote h4 {
   width: 100%;
   margin-top: 25px;
   margin-bottom: 35px;
   color: #d0ff00;
}
@media (min-width: 768px) {
   .body-container--post-case .testimonial-case-studies-page .blockquote h4 {
      width: 55%;
   } 
}
.body-container--post-case .testimonial-case-studies-page .hs_cos_wrapper_type_rich_text:first-child {
   display: block;
}
.body-container--post-case .testimonial-case-studies-page .slick-slide {
   margin-top: 50px;
}
.body-container--post-case .testimonial-case-studies-page .hs_cos_wrapper_type_rich_text:first-child p {
   padding-bottom: 0;
}
.body-container--post-case .testimonial-case-studies-page .span7 p {
   font-size: 24px;
   line-height: 32px;
}
@media (min-width: 768px) {
   .body-container--post-case .testimonial-case-studies-page {
      padding: 80px 0;
   }
   .body-container--post-case .testimonial-case-studies-page .span7 {
      padding-left: 25px;
   }
   .body-container--post-case .testimonial-case-studies-page .row-fluid .row-fluid {
      padding-left: 40px;
      padding-right: 40px;
   }   
}
@media (min-width: 1200px) {
   .body-container--post-case .testimonial-case-studies-page .span7 {
      padding-left: 120px;
   }
}


.body-container--post-case .two_column5 {
   background-color: #000000;
   position: relative;
}

@media (max-width: 767px) {
   .body-container--post-case .two_column5 .span5 {
      padding-left: 20px;
      padding-right: 20px;
      background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/bg-two_column5.svg");
      background-repeat: no-repeat;
      background-position: top left;
      background-size: cover;
      border-bottom: 1px solid #333333;
   }
}

.body-container--post-case .two_column5 .span5 {
   padding-top: 30px;
   padding-bottom: 40px;
   position: relative;
   z-index: 1;
}
.body-container--post-case .two_column5 .blockquote h4 {
   margin-top: 25px;
   margin-bottom: 45px;
}
.body-container--post-case .two_column5 .blockquote .wall {
   padding: 30px 40px;
}
.body-container--post-case .two_column5 .blockquote .block {
   font-size: 32px;
   line-height: 40px;
   padding-top: 70px;
}
.body-container--post-case .two_column5 .blockquote .block p {
   font-size: 32px;
   line-height: 40px;
}
@media (min-width: 768px) {
   .body-container--post-case .two_column5:after {
      content: "";
      background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/bg-two_column5.svg");
      background-repeat: no-repeat;
      background-position: top left;
      background-size: cover;
      width: 46%;
      height: 100%;
      position: absolute;
      top: 0;
      z-index: 0;
   }
   .body-container--post-case .two_column5 .span5 {
      border-right: 1px solid rgba(255, 255, 255, .2);
      padding-top: 100px;
      padding-bottom: 90px;
   }
   .body-container--post-case .two_column5 .blockquote h4 {
      margin-bottom: 90px;
      width: 55%;
   }
   .body-container--post-case .two_column5 .blockquote .block {
      min-height: 440px;
      height: 100%;
   }
}
@media (max-width: 767px) {
   .body-container--post-case .two_column5 .span7 {
      padding-top: 40px;
      padding-left: 20px;
      padding-right: 20px;
   }   
}
.body-container--post-case .two_column5 .span7 {
   background-color: #000000;
   position: relative;
   z-index: 1;
   padding-bottom: 40px;
}
.body-container--post-case .two_column5 .span7 p {
   font-size: 24px;
   line-height: 32px;
}
@media (min-width: 768px) {
   .body-container--post-case .two_column5 > .row-fluid {
      padding-left: 40px;
      padding-right: 40px;
   }
   .body-container--post-case .two_column5 .span7 {
      padding: 100px 0 100px 25px;
   }
}
@media (min-width: 1200px) {
   .body-container--post-case .two_column5 .span7 {
      padding: 100px 0 100px 118px;
   }
}



/* More Case Studies */
.body-container--post-case .section-case-studies .widget-type-section_header {
   padding: 30px 20px;
}
.body-container--post-case .button_all_case #hs_cos_wrapper_button_all_case {
   padding: 40px 20px;
   text-align: center;
}
.body-container--post-case .button_all_case #hs_cos_wrapper_button_all_case a {
   display: inline-block;
}
@media (min-width: 768px) {
   .body-container--post-case .section-case-studies .widget-type-section_header {
      padding: 80px 40px;
   }
   .body-container--post-case .button_all_case #hs_cos_wrapper_button_all_case {
      padding: 60px 40px;
   }
}
.body-container--post-case .section-case-studies .widget-type-section_header h2 {
   font-weight: normal;
   text-transform: uppercase;
   color: #fff;

   font-size: 44px;
   line-height: 48px;
}
@media (min-width: 768px) {
   .body-container--post-case .section-case-studies .widget-type-section_header h2 {
      font-size: 70px;
      line-height: 70px;
   }
}
.body-service-page {}
.body-service-page .two_column4 .hs_cos_wrapper_type_rich_text {
   display: block;
}
.body-service-page .two_column7 p {
   font-size: 20px;
   line-height: 28px;
}

/* block latest book*/
.body-service-page .latest-book>.row-fluid {
   padding: 0 0 40px 0;
}
.body-service-page .latest-book .dnd-section .row-fluid .span6 a.hs-button {
   margin-top: 25px;
}
.body-service-page .latest-book .span6 img {
   position: relative;
   top: 20px;
   width: auto;
   height: auto;
}
@media (max-width: 767px) {
   .body-service-page .two_column4>.row-fluid>.span6:first-child .hs_cos_wrapper {
      width: 100%;
   }
   .body-service-page .two_column4 img {
      height: auto !important;
      width: 100%;
   }
   .body-service-page .two_column7 img {
      height: auto;
   }
}
@media (min-width: 768px) {
   .body-service-page .two_column4 img {
      width: 100%;
   }
}
@media (min-width: 1200px) {
   .body-service-page .two_column4 .hs_cos_wrapper_type_rich_text {
/*      padding-left: 43px;*/
   }
}

.body-service-page .section-case-studies {
   border-bottom: 1px solid rgba(255, 255, 255, .2);
}


/*hs_select_service_ hs-select_service_ hs-fieldtype-radio field hs-form-field*/
@media (min-width: 768px) and (max-width: 991px) {
   .body-service-page .latest-book .span6 img {
      padding-right: 40px;
   }
}
@media (min-width: 768px) {
   .body-service-page .latest-book>.row-fluid {
      padding: 0 40px 40px 40px;
   }
}
/*header-book*/
.header-book h1 {
   margin-bottom: 20px;
   line-height: 70px;
}
.header-book h1 em {
   font-style: italic;
   display: block;
}
.header-book .span6:last-child {
   display: flex;
   flex-direction: column;
   justify-content: center;
   border-top: 1px solid rgba(255, 255, 255, .2);
}
.header-book .span6:last-child .row-fluid-wrapper {
   padding-left: 20px;
   padding-right: 20px;
}
.header-book .span6:last-child .row-fluid-wrapper:last-child {
   padding-bottom: 40px;
}
.header-book .span6:last-child > .dnd-row:first-child {
   margin-top: auto;
}
.header-book .span6:last-child > .dnd-row:last-child {
   margin-top: auto;
}
.header-book .span6:last-child > .dnd-row:last-child .row-fluid {
   display: flex;
   justify-content: flex-start;
   align-items: center;
}
.header-book .span6:last-child > .dnd-row:last-child .span1 {
   width: auto;
   margin-right: 20px;
}
.header-book .span6:last-child > .dnd-row:last-child .span5 p {
   color: #8cb0ff;
   font-size: 16px;
   line-height: 22px;
}
.header-book .span6:last-child > .dnd-row:last-child .span3 {
   margin-left: auto;
   width: auto;
}
.header-book .span6:last-child > .dnd-row:last-child .span3 a {
   display: inline-block;
   border-color: #ffffff;
   color: #ffffff;
}
.header-book .span6:last-child > .dnd-row:last-child .span3 a:hover {
   background-color: #ffffff;
   color: #000000;
}
.header-book .span6:last-child > .dnd-row:last-child .span3 a:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
   left: 0;
}
.header-book .span6:last-child > .dnd-row:last-child .span3 a:hover:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
   left: 7px;
}
@media (min-width: 768px) {
   .header-book h1 {
      margin-bottom: 50px;
   }
   .header-book .span6:last-child {
      border-left: 1px solid rgba(255, 255, 255, .2);
      border-top: none;
   }
   .header-book .span6:last-child .row-fluid-wrapper {
      padding-left: 40px;
      padding-right: 40px;
   }
   .header-book .span6:last-child .row-fluid-wrapper:last-child {
      border-top: 1px solid rgba(255, 255, 255, .2);
      padding-top: 28px;
   }
}
@media (max-width: 1199px) {
   .header-book .span6:last-child > .dnd-row:last-child .row-fluid {
      flex-wrap: wrap;
   }
   .header-book .span6:last-child > .dnd-row:last-child .span5 {
      width: 70%;
   }
   .header-book .span6:last-child > .dnd-row:last-child .span3 {
      margin-top: 30px;
      width: 100%;
   }
}
@media (min-width: 1200px) {
   .header-book .span6:last-child > .dnd-row:first-child {
      width: 80%;
   }
}



/*.about-book*/
.body-book-page .about-book>.row-fluid>.span6:first-child {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.body-book-page .about-book .span6:last-child h3,
.body-book-page .about-book .span6:last-child p {
   color: #000000;
}
.body-book-page .about-book .span6:last-child .cards {
   margin-top: 25px;
   grid-template-columns: repeat(1, 1fr);
   display: grid;
}
.body-book-page .about-book .span6:last-child img,
.body-container .about-book.about-book-2 .span6:last-child img {
   width: auto;
   height: auto;
   padding: 0 0 12px 0;
}
.body-book-page .about-book .span6:last-child .cards__card {
   padding-bottom: 23px;
}
.body-book-page .about-book .span6:last-child .card__text {}

@media (min-width: 992px) {
   .body-book-page .about-book .span6:last-child .cards {
      margin-top: 55px;
      grid-template-columns: repeat(2, 1fr);
   }
}
@media (min-width: 1599px) {
   .body-book-page .about-book .span6:last-child .cards {
      padding-right: 110px;
   }
}

/* .about-book-2 */
.body-container .about-book.about-book-2 > .row-fluid {
   flex-direction: row-reverse;
}
.body-container .about-book.about-book-2 .span6:last-child h3 {
   font-size: 44px;
   line-height: 50px;
   font-weight: normal;
}
@media (min-width: 992px) {
   .body-container .about-book.about-book-2 .span6:last-child .cards__card {
      padding-right: 50px;
   }
   .body-container .about-book.about-book-2 .span6:last-child h3 {
      max-width: 400px;
   }
   .body-container .about-book.about-book-2 .span6:last-child p {
      font-size: 24px;
      line-height: 30px;
   }
}
.body-connect-page {}
.body-connect-page .connect {}

.body-connect-page .row-fluid>.span6:last-child {
   width: 100%;
   padding: 45px 20px 55px 25px;
   background-color: #d0ff00;
}
.body-connect-page .row-fluid>.span6 h5 {
   color: #000000;
   margin-bottom: 45px;
}
.body-connect-page.formular .hs_select_service_ .input {
   margin-right: 0 !important;
}
.formular .span6 .hs-error-msg {
   font-size: 14px;
}
.body-connect-page.formular .span6 input[type=text],
.body-connect-page.formular .span6 input[type=email],
.body-connect-page.formular .span6 textarea {
   border-color: #000000;
   color: #000000 !important;
}
.body-connect-page.formular .span6 textarea::placeholder,
.body-connect-page.formular .span6 input::placeholder {
   color: rgba(0, 0, 0, .5) !important;
}
.body-connect-page.formular .span6 textarea {
   height: 120px;
   resize: none;
}
.body-connect-page.formular .span6 form label {
/*   margin-bottom: 0;*/
}
.body-connect-page.formular .hs_select_service_ {
   padding-top: 10px;
}
.body-connect-page.formular .hs_select_service_ .input ul li span,
.body-connect-page.formular .hs_select_service_>label span {
   color: #000000;
}
.body-connect-page.formular .span6 .hs_submit .actions input {
   border-color: #000000;
   color: #000000;
}
.body-connect-page.formular .span6 .hs_submit .actions input:hover {
   background-color: #000000;
   color: #ffffff;
}
.body-connect-page.formular .span6 .hs_submit .actions:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-small.svg") center right no-repeat;
}
.body-connect-page.formular .span6 .hs_submit .actions:hover:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
}
.body-connect-page.formular .hs_select_service_ .input input[type="radio"]::before {
   border-color: #000000;
}
.body-connect-page.formular .hs_select_service_ .input input[type="radio"]::after {
   background: #000000;
}
.body-connect-page .row-fluid .span6:first-child p {
   text-align: center;
}
.body-connect-page .row-fluid .span6:first-child h3 {
   margin-bottom: 35px;
   font-weight: bold;
   text-align: center;
}
.body-connect-page .row-fluid .span6:first-child a.hs-button {
   margin: 0 auto;
   display: block;
   text-align: center;
   padding-left: 0;
   padding-right: 0;
}
.body-connect-page .row-fluid .span6:first-child a.hs-button:after {
   display: none;
}
.body-connect-page .row-fluid .span6:first-child a {
   transition: color 0.15s linear, text-decoration-color 0.15s linear;
   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;
}
.body-connect-page .row-fluid .span6:first-child a:hover,
.body-connect-page .row-fluid .span6:first-child a:focus {
   color: #d0ff00;
   text-decoration-color: #d0ff00;
}
.body-connect-page .row-fluid hr {
   padding-top: 10px;
}
.body-connect-page .row-fluid a.social-links__icon {
   background-color: transparent !important;
   margin-bottom: 9px;
   text-decoration: underline !important;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0) !important;
   text-underline-offset: 3px;
   transition: color 0.15s linear, text-decoration-color 0.15s linear, text-decoration 0.15s linear;
}
.body-connect-page .row-fluid a.social-links__icon:hover,
.body-connect-page .row-fluid a.social-links__icon:focus {
   text-decoration: underline !important;
   text-decoration-color: #d0ff00 !important;
   color: #d0ff00 !important;
}
.body-connect-page.formular .hs_select_service_ .input ul {
   columns: 1;
   -webkit-columns: 1;
   -moz-columns: 1;
}
@media (min-width: 768px) {
   .body-connect-page .row-fluid .span6:first-child h3 {
      margin-bottom: 55px;
   }
   .body-connect-page .row-fluid hr {
      padding-top: 33px;
   }
   .body-connect-page .row-fluid .social-links {
      padding-top: 50px;
   }
   .body-connect-page .row-fluid .span6:first-child a.hs-button,
   .body-connect-page .row-fluid .span6:first-child h3,
   .body-connect-page .row-fluid .span6:first-child p {
      text-align: left;
   }
   .body-connect-page .row-fluid hr {
      width: 370px !important;
   }
   .body-connect-page .row-fluid>.span6:last-child {
      width: 630px;
      padding: 45px 15px 55px 35px;
   }
}
@media (min-width: 992px) {
   .body-connect-page .row-fluid>.span6:last-child {
      padding-left: 55px;
      padding-right: 35px;
   }
   .body-connect-page.formular .hs_select_service_ .input ul {
      columns: 2 !important;
      -webkit-columns: 2 !important;
      -moz-columns: 2 !important;
   }
}



/*Stand Alone Landings - Templates*/
.body-connect-page.formular2 {}
@media (min-width: 1360px) {
   .body-connect-page.formular2 .heading>.row-fluid {
      padding-left: 40px;
      padding-right: 40px;
   }
}
.body-connect-page.formular2 .dnd-section:not(.heading)>.row-fluid {
   padding-left: 20px;
   padding-right: 20px;
}
.body-connect-page.formular2 .row-fluid>.span6:last-child .dnd-row {
   padding-top: 40px;
}
.body-connect-page.formular2 form {
   width: 100%;
}
.body-connect-page.formular2 .row-fluid>.span6 h5,
.body-connect-page.formular2 .row-fluid>.span6 .hs_cos_wrapper.form-title {
   margin-bottom: 33px;
   font-weight: bold;
   text-align: center;
}
.body-connect-page.formular2 .row-fluid>.span6 .hs_cos_wrapper.form-title {
   font-size: 24px;
   line-height: 32px;
   color: #000000;
}

.body-connect-page.formular2 .row-fluid>.span6 p {
   text-align: left;
   font-size: 18px;
   line-height: 24px;
}
.body-connect-page.formular2 .span6 .hs_submit .actions input {
   background-color: #000000;
   color: #ffffff;
}
.body-connect-page.formular2 .span6 .hs_submit .actions:after {
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-secondary.svg") center right no-repeat;
}
.body-connect-page.formular2 .row-fluid .span6:first-child h3 {
   font-weight: 400;
   text-align: left;
   margin-bottom: 0;
}
.body-connect-page.formular2 h2 {
   text-transform: none;
   margin-bottom: 30px;
   text-align: left;
}
.body-connect-page.formular2 .cards {
   flex-direction: column;
}
.body-connect-page.formular2 .cards .cards__card {
   padding-left: 0;
   margin-top: 0 !important;
   padding-bottom: 20px;
   flex-wrap: inherit;
}
.body-connect-page.formular2 .cards .cards__card:last-child {
   padding-bottom: 0;
}
.body-connect-page.formular2 .cards .cards__card img {
   margin-right: 20px;
   width: auto;
}
.body-connect-page.formular2 .row-fluid>.span6:last-child {
   padding: 0;
   background-color: transparent;
}
.body-connect-page.formular2 .row-fluid>.span6:last-child>.dnd-row {
   padding: 45px 20px 55px 25px !important;
   background-color: #d0ff00;
}
.body-connect-page.formular2 .span6 .hs_submit .actions {
   margin-top: 20px;
}
.body-connect-page.formular2 .span6 .hs_submit .actions,
.body-connect-page.formular2 .span6 .hs_submit .actions input {
   width: 100%;
   text-align: left;
}
@media (min-width: 768px) {
   .body-connect-page.formular2 .dnd-section:not(.heading)>.row-fluid {
      padding-left: 40px;
      padding-right: 40px;
   }
   .body-connect-page.formular2 .dnd-section:not(.heading)>.row-fluid {
      padding-left: 40px;
      padding-right: 40px;
   }
   .body-connect-page.formular2 .cards {
      margin-top: 30px;   
   }
   .body-connect-page.formular2 .row-fluid>.span6:last-child>.dnd-row {
      padding-top: 85px !important;
      padding-bottom: 92px !important;
   }
   .body-connect-page.formular2 h2 {
      margin-bottom: 0;
   }
}
@media (min-width: 992px) {
   .body-connect-page.formular2 form {
      width: 370px;
   }
   .body-connect-page.formular2 .dnd-section:not(.heading)>.row-fluid>.span6:first-child>.row-fluid-wrapper {
      padding-right: 43px;
   }
}
.body-home-page {}

/*case studies*/
.body-home-page .case-studies {}
.body-home-page .case-studies__card {
   overflow-x: hidden;
   display: grid;
   grid-template-columns: 1fr;
}
.body-home-page .case-studies__card {
   border-bottom: 1px solid #545454;
}
.body-home-page .case-studies__card .card {
   margin-top: -1px;
}
.body-home-page .case-studies__card .card:nth-child(-n+3) {
   margin-top: 0;  
}
.body-home-page .case-studies__card .card img.card__image {
   width: 100%;
   height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
   .body-home-page .case-studies__card .card h4,
   .body-home-page .case-studies__card .card object {
      padding: 20px 25px;
   }
   .body-home-page .case-studies__card .card object {
      padding-bottom: 40px;
   }
}
@media (max-width: 767px) {
   .body-home-page .case-studies__card .card h4 {
      padding-bottom: 20px;
   }
   .body-home-page .case-studies__card .card h4 {
      padding-left: 20px;
   }
   .body-home-page .case-studies__card .card .explore_services_icon {
      left: 20px;
   }
}
@media (min-width: 768px) {
   .body-home-page .case-studies__card {
      grid-template-columns: 1fr 1fr 1fr;
   }
   .body-home-page .case-studies__card .card object {
      
   }
}
.body-news-page {
   padding-bottom: 10px;
}
.body-news-page .podcat .podcast__card {
   background-color: #000000;
}
.body-news-page .podcat .podcast {
   margin-top: 30px;
}
.body-news-page .podcat .podcast__link a.hs-button:after {
   bottom: 2px;
   transform: rotate(90deg);
   transition: bottom 0.15s linear;
}
.body-news-page .podcat .podcast__link a.hs-button:hover:after {
   left: 0;
   bottom: -2px;
}
.body-news-page .podcat .card__image img {
   width: 150px;
   height: 150px;
   object-fit: cover;
}

@media (max-width: 767px) {
   .body-news-page .podcat .podcast {
      margin-bottom: 40px;
   }
}
@media (min-width: 768px) {
   .body-news-page .podcat {
      padding-top: 45px;
      padding-bottom: 50px;
   }
   .body-news-page .podcat .podcat-header p {
      padding-left: 15px;
   }
   .body-news-page .podcat .podcast {
      margin-top: 50px;
   }
}
.body-content-page {}
.body-content-page .hs-menu-flow-vertical {
   margin-right: 0;
   padding: 40px;
   background-color: #0062fc;
}
.body-content-page .hs-menu-flow-vertical ul {
   width: 100%;
}
.body-content-page .hs-menu-flow-vertical li {
   border-bottom: 1px solid rgba(255, 255, 255, .1);
   padding: 22px 0;
   display: block;
}
.body-content-page .hs-menu-flow-vertical li:first-child {
   padding-top: 0;
}
.body-content-page .hs-menu-flow-vertical li:first-child a {
   font-weight: bold;
   cursor: default;
}
.body-content-page .hs-menu-flow-vertical li:first-child a:hover {
   text-decoration: none;
   color: #ffffff;
}
.body-content-page .hs-menu-flow-vertical li:last-child {
   padding-bottom: 0;
   border-bottom: none;
}
.body-content-page .hs-menu-flow-vertical li a {
   font-size: 24px;
   line-height: 32px;
}



.body-content-page .span8 {
   padding-left: 0;
}
.body-content-page .span8 p {
   margin-bottom: 20px;
}
.body-content-page .span8 p:last-child {
   margin-bottom: 0;
}
.body-content-page .span8 ul li,
.body-content-page .span8 p {
   font-size: 16px;
   line-height: 22px;
}
.body-content-page .span8 h5 {
   margin-bottom: 20px;
   font-size: 32px;
   line-height: 40px;
   color: #d0ff00;
}
.body-content-page .span8 h3 {
   padding-bottom: 20px;
}

@media (max-width: 767px) {
   .body-content-page.content-with-menu .dnd-section:nth-child(2) .row-fluid {
      display: flex;
      flex-direction: column-reverse;
   }
   .body-content-page .hs-menu-flow-vertical {
      margin-top: 30px;
   }
}
@media (min-width: 768px) {
   .body-content-page .span8 {
      padding-left: 25px;
   }
}
@media (min-width: 992px) {
   .body-content-page .hs-menu-flow-vertical {
      margin-right: 15px;
   }
   .body-content-page .span8 {
      padding-left: 65px;
   }
}

/*Case Studies Template*/
@media (min-width: 768px) {
   .body-container--case .content-page .span6:last-child {
      padding-left: 20px;
   }
}

.body-container .section_heading-2 :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
   color: #fff;
   margin: 0;
   padding: 0;
   font-weight: normal;
   font-size: 34px;
   line-height: 42px;
   text-align: center;
}
@media (min-width: 768px) {
   .body-container .section_heading-2 :is(h1, h2, h3, h4, h5, h6, li, p, span, em, small) {
      font-weight: normal;
      font-size: 44px;
      line-height: 50px;
   }
}

.body-container.new-pages .dnd-section.heading {
   min-height: 500px;
}
.video-gallery .span6 .dnd-row {
   display: flex;
   align-items: center;
}
.video-gallery .span6 .dnd-row .hs_cos_wrapper_type_module {
   width: 100%;
}
.video-gallery .video-hubspot {
   background-color: transparent;
   height: 200px;
   width: 100%;
}
.video-gallery .video-hubspot img {
   height: 61px;
   width: 61px;
   transition: transform 250ms;
}
.video-gallery .video-hubspot:hover img {
   transform: scale(1.3);
}
@media (min-width: 768px) {
   .video-gallery .video-hubspot {
      height: 352px;
   }
}




.video-gallery__card .card p {
   font-size: 16px;
   line-height: 22px;
}




.body-container--video-gallery {}
.body-container--video-gallery .heading {
   min-height: auto;
   padding-top: 70px;
   padding-bottom: 60px;
}
.body-container--video-gallery .heading img {
   height: 98px !important;
   max-width: 97px !important;
}
.body-container--video-gallery .heading .filtr-wrapper {
   margin-top: 33px;
   display: flex;
   flex-direction: column;
   align-items: center;
   transition: all 0.1s;
}
.body-container--video-gallery .heading .filtr-wrapper p {
   display: none;
}
.body-container--video-gallery .heading .filtr-wrapper button {
   font-size: 16px;
   line-height: 22px;
   background-color: #ffffff;
   color: #000000;
   display: flex;
   align-items: center;
   border: 0;
   padding-top: 15px;
   padding-bottom: 15px;
}
.body-container--video-gallery .heading .filtr-wrapper button:after {
   margin-left: 20px;
   content: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/raw_assets/public/full-surge-theme/images/close-button.svg");
   width: 20px;
   height: 20px;
   display: inline-block;
   transition: transform 0.10s cubic-bezier(0.4, 0, 1, 1);
}
.body-container--video-gallery .heading .filtr-wrapper button:hover:after {
   transform: rotate(90deg);
}
.body-container--video-gallery .heading-case-blog .row-fluid {
   flex-wrap: nowrap;
   display: flex;
   align-items: center;
   flex-direction: column;
}

.body-container--video-gallery .video-gallery-grid {
   padding: 40px 20px 45px 20px;
}
.video-gallery__card {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   column-gap: 20px;
   row-gap: 25px;
}
.video-gallery__card .card h4 {
   display: block;
   margin-top: 20px;
   margin-bottom: 13px;
}

.video-gallery__card .card .wall {
   position: relative;
}
.video-gallery__card .card .wall button.video-hubspot {
   background-color: transparent;
   width: 100%;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
}
.video-gallery__card .card .wall button.video-hubspot > img {
   height: 61px;
   width: 61px;
   transition: transform 250ms;
}
.video-gallery__card .card .wall:hover button.video-hubspot > img {
   transform: scale(1.3);
}
.video-gallery__card .modal .hs-video-container {
   max-width: 100% !important;
}
.video-gallery__card .card img.card__image {
   height: auto;
}
@media (min-width: 768px) {
   .body-container--video-gallery .video-gallery-grid {
      padding: 90px 40px 50px 40px;
   }
   .video-gallery__card {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      row-gap: 55px;
   }
}

/* button load more */
.body-container--video-gallery #hs_cos_wrapper_load_more {
   justify-content: center;
}
.body-container--video-gallery #hs_cos_wrapper_load_more a {
   margin-top: 50px;
   margin-bottom: 0;
}


/* is-sticky */
.body-container--video-gallery .is-sticky {
   position: absolute;
   left: 0;
   right: 0;
}
.body-container--video-gallery .is-sticky .filtr-wrapper {
   padding: 20px;
   margin-top: 0;
   background-color: #000000;
   display: grid;
   grid-template-columns: 1fr;
   row-gap: 20px;
   justify-content: space-between;
   justify-items: center;
   border-top: 1px solid rgba(255, 255, 255, .2);
   width: 100% !important;
}
.body-container--video-gallery .is-sticky .select span.focus {
   margin: 0;
}
.body-container--video-gallery .heading .is-sticky .filtr-wrapper p {
   display: block;
   margin: 0;
   font-size: 16px;
   line-height: 22px;
   color: #aaaaaa;
   text-align: left;
}

@media (min-width: 768px) {
   .body-container--video-gallery .is-sticky .filtr-wrapper {
      padding: 20px 40px;
      grid-template-columns: 178px auto 178px;
      row-gap: 0;
      justify-items: stretch;
   }
}

.test {}
.case_studies .dnd-column {
	position: relative;
}
.case_studies .dnd-column:hover {
	background-color: #d0ff00 !important;
}
.case_studies > .row-fluid  > .span4 > .row-fluid-wrapper {
	padding: 4px !important;
}
.case_studies > .row-fluid  > .span4 > .row-fluid-wrapper:last-child {
	padding: 0 24px 34px  24px !important;
}
.case_studies > .row-fluid  > .span4:hover > .row-fluid-wrapper img {
	padding: 18px 20px 9px 20px !important;
}
.case_studies h4 {
	padding-left: 40px;
	padding-right: 30px;
	margin-top: 34px;
	margin-bottom: 40px;
	width: 400px;
	max-width: 100%;
}
.case_studies .dnd-column:hover {
	background-color: #d0ff00;
}
.case_studies .dnd-column h4 {
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-decoration-color: rgba(255, 255, 255, 0);
	text-underline-offset: 3px;
}
.case_studies .dnd-column:hover h4 {
	color: #000000;
	text-decoration-color: rgba(0, 0, 0, 1);
}
.case_studies svg {
	margin: 0;
	vertical-align: middle;
}
.case_studies .dnd-column .explore_services_icon {
	margin-left: 40px;
}
.case_studies .dnd-column:hover .explore_services_icon {
	filter: brightness(0) saturate(100%);
}
.case_studies > .row-fluid  > .span4 > .row-fluid-wrapper:last-child .hs_cos_wrapper_type_module {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}
.case_studies a.hs-button {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	margin-left: 0;
	padding-right: 40px;
	padding-bottom: 33px;
	position: relative;
}
.case_studies a.hs-button:after {
	content: "";
	background-repeat: no-repeat;
	height: 44px;
	width: 46px;
	display: inline-block;
	position: relative;
}
.case_studies .dnd-column:hover a.hs-button {
	margin-left: 0;
}
.case_studies .dnd-column:hover a.hs-button:after {
	background-image: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow.svg");
}

@media (max-width: 767px) {
	.case_studies > .row-fluid > .span4 {
		border-top: 1px solid #545454;	
	}
	.case_studies {
		border-bottom: 1px solid #545454;
	}
	.case_studies .dnd-column .explore_services_icon {
		margin-left: 20px;
	}
	.case_studies h4 {
		padding-left: 20px;
	}
}
@media (min-width: 768px) {
	.case_studies {
		border-top: 1px solid #545454;
		border-bottom: 1px solid #545454;
		margin-top: -1px;
	}
	.case_studies > .row-fluid > .span4:nth-child(2) {
		border-left: 1px solid #545454;	
		border-right: 1px solid #545454;
	}
}
/* block more case studies */
.case-studies__card .card:hover {
	background-color: #d0ff00;
}
.case-studies__card .card:hover h4 {
	text-decoration-color: rgba(0, 0, 0, 1);
	color: #000000;
}
.case-studies__card .card:hover .explore_services_icon {
	filter: brightness(0) saturate(100%);
}

@font-face {
   font-family: 'Monument Grotesk';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-BoldItalic.svg#MonumentGrotesk-BoldItalic') format('svg');
   font-weight: bold;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: 'Monument Grotesk';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Italic.svg#MonumentGrotesk-Italic') format('svg');
   font-weight: 400;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: 'Monument Grotesk';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Medium.svg#MonumentGrotesk-Medium') format('svg');
   font-weight: 500;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Monument Grotesk';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Bold.svg#MonumentGrotesk-Bold') format('svg');
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Monument Grotesk Mono';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Mono.svg#MonumentGrotesk-Mono') format('svg');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Monument Grotesk';
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.eot');
   src: url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.eot#iefix') format('embedded-opentype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.woff2') format('woff2'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.woff') format('woff'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.ttf') format('truetype'),
      url('https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/fonts/MonumentGrotesk-Regular.svg#MonumentGrotesk-Regular') format('svg');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column {
   border-bottom: 1px solid #333333;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .span4 {
   display: flex !important;
   justify-content: space-between !important;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child {
   border-right: none;
   justify-content: space-between !important;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:nth-of-type(2) ul li a {
   font-size: 24px;
   line-height: 32px;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child a.hs-button {
   padding: 0;
   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child a.hs-button:after {
   display: none;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child a.hs-button:hover {
	text-decoration-color: #d0ff00;
}
.footer .span12 .row-fluid-wrapper .dnd-column h5 {
/*   color: #ffffff;*/
   margin-bottom: 28px;
}
.footer .span12 .row-fluid-wrapper .dnd-column h5:hover {
   color: #ffffff;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li {
   line-height: 22px;
   margin-bottom: 15px;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li:last-child {
   margin-bottom: 0;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li a {
   font-size: 16px;
   line-height: 22px;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li a strong {
   font-weight: 400;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li a span {
   margin: 0 !important;
}
.footer .span12 .row-fluid-wrapper .dnd-column .widget-type-menu li a:hover span {
   color: #d0ff00;
}

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

   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column {
      padding-left: 20px !important;
      padding-right: 20px !important;
   }
   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .span4 {
      padding-left: 40px !important;
   }
}



.social-links {
   display: flex;
   align-items: flex-start;
   flex-direction: column;
   flex-wrap: nowrap;
   justify-content: flex-start;
}
#hs_cos_wrapper_footer-module-15 a.social-links__icon {
   background-color: transparent !important;
   margin-bottom: 9px;
   line-height: 22px;
   font-size: 16px;
   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;
	font-family: 'Monument Grotesk'; font-weight: normal;;
}
#hs_cos_wrapper_footer-module-15 a.social-links__icon:hover {
	color: #d0ff00;
	text-decoration-color: #d0ff00 !important;
}
.social-links .social-links__icon-wrapper {
   margin: 0 5px 0 -5px;
}
.footer .span12>.row-fluid-wrapper:nth-of-type(2) .row-fluid p {
   font-size: 16px;
   line-height: 22px;
   color: #aaa;
}
.footer .span12>.row-fluid-wrapper:nth-of-type(2) .row-fluid a {
   padding: 0;
   font-size: 16px;
   line-height: 22px;
   text-decoration: underline;
   text-decoration-thickness: 0.05em;
   text-decoration-color: rgba(255, 255, 255, 0);
   text-underline-offset: 3px;
}

.footer .span12>.row-fluid-wrapper:nth-of-type(2) .dnd-module:last-child a {
   position: relative;
   display: block;
   line-height: 28px;
}
.footer .span12>.row-fluid-wrapper:nth-of-type(2) .row-fluid a.hs-button:hover {
	text-decoration-color: #d0ff00;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(2) .dnd-module:last-child a.hs-button:after {
   width: 19px;
   height: 19px;
   background: url("https://858343.fs1.hubspotusercontent-na1.net/hubfs/858343/arrow-back-top.svg") center right no-repeat;
   position: absolute;
   right: 0;
   bottom: 6px;
   transition: bottom 0.15s linear;
}
.footer .span12 .row-fluid-wrapper:nth-of-type(2) .dnd-module:last-child a.hs-button:hover:after {
   bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child a.hs-button {
      font-size: 16px;
   }
}
@media (max-width: 767px) {
   .footer .span12>.row-fluid-wrapper:nth-of-type(2) .row-fluid a,
   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column:last-child a.hs-button {
      margin: 0 auto;
      display: block;
   }
   .footer {
      text-align: center;
   }
   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .span4 {
      flex-direction: column;
      align-items: center;
      gap: 30px;
   }
   .social-links {
      align-items: center;
   }
}

@media (min-width: 768px) {
   .footer .span12 .row-fluid-wrapper:nth-of-type(1) .dnd-column {
      border-right: 1px solid #333333;
   }
}

.footer .span12>.row-fluid-wrapper:nth-of-type(2) a#hs-button_footer-module-16:after,
.footer .span12>.row-fluid-wrapper:nth-of-type(2) a#hs-button_footer-module-18:after,
.footer .span12>.row-fluid-wrapper:nth-of-type(2) a#hs-button_footer-module-19:after {
   display: none;
}


.footer .span12 .row-fluid-wrapper:nth-of-type(1) .span2 .row-fluid .span12.dnd-column {
   border-bottom: none;
}