/* ==========================================================================
   HubSpot Migrations Services - COS Boilerplate v2.0.0
   ========================================================================== */


/* ==========================================================================
   Table of Contents:

   1. EXTERNAL RESOURCES
   2. BASE STYLES
   3. COS STRUCTURE
   4. MAIN NAVIGATION
   5. BLOG
   6. FORMS
   7. BUTTONS
   8. MISCELLANEOUS
   9. MOBILE MEDIA QUERIES
   ========================================================================== */


/* ==========================================================================
   1. EXTERNAL RESOURCES
   ========================================================================== */


/* =============== @import, @font-face, and CSS File Includes =============== */

/* EX: @import url('http://example.com/example_style.css'); */
/* @import url('//fonts.googleapis.com/css?family=Libre+Franklin:300,300i,400,400i,600,600i,800,800i|Montserrat|Source+Sans+Pro:300,400,600,700&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese'); */
/* @import url('//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'); */

/* HubSpot_Boilerplate-modules.css is required to address style issues with the default modules and responsive grid layout */


/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */

/* ============== Macros ============== */

/* Transition */




/* Border Radius */


/* Box Shadow */


/* Transform */




/* Animation */






/* Filter */


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

html, body {
	min-height: 100%;
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}
body {
	background-color: #fff;
	color: #666;
	/* font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7em;
	top: 0 !important;
}

/* Page Center */
.container-fluid .row-fluid .page-center {
	float: none;
	max-width: 1170px;
	margin: 0 auto;
	padding-left: 10px;
    padding-right: 10px;
}

/* Highlighted Text */
/*::-moz-selection {
	color: #fff;
	background: #333;
	text-shadow: none;
}
::selection {
	color: #fff;
	background: #333;
	text-shadow: none;
}*/


/* =============== Typography =============== */

/* Basic text */
p {
	margin: 0 0 25px;
}
strong {
    font-weight: 700;
}
p strong {
    font-weight: 700;
}
em, i {
    font-style: italic;
}
cite {}
code {}
pre {}

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

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    margin: 10px 0;
}
h1 {
	color: #444;
    font-size: 60px;
	font-weight: 700;
	line-height: 1.2em;
}
h2 {
    color: #444;
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
}
h3 {
	color: #444;
    font-size: 1rem;
	font-weight: 700;
	line-height: 27px;
}
h4 {
	color: #444;
    font-size: 20px;
	font-weight: 700;
	line-height: 24px;
}
h5 {
	color: #666;
    font-size: 16px;
	font-weight: 700;
	line-height: 19px;
}
h6 {
	color: #666;
    font-size: 14px;
	font-weight: 700;
	line-height: 17px;
}

/* Anchor Links */
a {
    color: #00829f;
	text-decoration: none;
}
:focus {
	outline: 0 none;
}

/* Lists */
ul, ol {
	margin: 0 0 15px;
	padding-left: 20px;
}
form ul,
form ol,
form li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* Block Quotes */
blockquote {
    margin: 1em 0;
}
blockquote p:last-child {
    margin: 0;
}

/* Horizontal Rules */
hr {
	border: none;
    border-bottom: 1px solid #ccc;
	margin: 20px auto;
}

/* Tables */
table {
    border-spacing: 0;
}

/* =============== EU Cookie Confirmation Bar =============== */

/* Confirmation Outer Wrapper*/
#hs-eu-cookie-confirmation {}

/* Confirmation Inner Wrapper*/
#hs-eu-cookie-confirmation-inner {}
#hs-eu-cookie-confirmation-inner p {}

/* Confirmation Button */
#hs-en-cookie-confirmation-buttons-area {}
a#hs-eu-confirmation-button {}


/* ==========================================================================
   3. COS STRUCTURE
   ========================================================================== */


/* =============== Structure =============== */

/* The outer wrappers of your website */
.header-container-wrapper,
.body-container-wrapper,
.footer-container-wrapper {}

/* The inner wrappers of your website */
.header-container,
.body-container,
.footer-container {}


/* =============== Header =============== */
.row-fluid .custom_header {
    background: rgba(0, 0, 0, 0.15);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    -webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;;
}
.custom_header:after {
    position: absolute;
    background: rgba(255,255,255,0.2);
    width: 100%;
    height: 1px;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
}

/* HEADER - Top Header */
.row-fluid .custom_header-top {
    padding: 5px 0;
	position: relative;
	width: 100%;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_header-top:after {
    position: absolute;
    border-bottom: 1px solid #FFF;
    opacity: .3;
    z-index: 5;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
}
.row-fluid .custom_header-top .page-center {
    max-width: 1190px;
    padding: 0 10px;
}

/* HEADER - Top Header - Top Menu */
.row-fluid .custom_top-menu {
    float: left;
    margin: 0;
    padding-top: 4px;
    width: auto;
}
.custom_top-menu .hs-menu-wrapper > ul {
    display: block;
}
.custom_top-menu .hs-menu-wrapper > ul li a {
    color: #fff;
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 0 10px;
    position: relative;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}

/* HEADER - Top Header - Modules */
.row-fluid .custom_header-phone,
.row-fluid .custom_header-lang,
.row-fluid .custom_header-search {
    float: right;
    margin: 0;
    width: auto;
}

/* HEADER - Top Header - Phone */
.custom_header-phone {
    padding-top: 3px;
}
.custom_header-phone a {
    color: #fff;
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 0 10px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}

/* HEADER - Top Header - Language */
.custom_header-lang {
    left: -5px;
    min-width: 100px;
    position: relative;
}
.custom_header-lang .switcher > .selected a {
    display: block;
    left: 0.34375em;
    top: 1px;
    line-height: 25px;
    position: relative;
}
.custom_header-lang .switcher {
    position: absolute;
}

/* HEADER - Top Header - Search */
.custom_header-search {
    padding-right: 44px;
}
.custom_header-search form {
    max-width: 150px;
}
.custom_header-search form .hs-input {
    background: transparent;
    border: solid 1px #fff;
    border-radius: 0;
    color: #fff;
    font-family: MS Shell Dlg \32, Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 25px;
    margin: 0 !important;
    min-height: 27px;
    padding: 0 10px;
}
.custom_header-search form .hs-input::-webkit-input-placeholder {
	color: inherit;
    opacity: 1;
}
.custom_header-search form .hs-button {
    display: none;
}

/* HEADER - Bottom Header - Logo */
.row-fluid .custom_logo {
    float: left;
    margin: 0;
    width: auto;
}
.custom_logo .logo-inner {
    padding: 10px 0 0.725em;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_logo .logo-inner {
    	padding-bottom: 14px;
    }
}
.custom_logo a {
    display: inline-block;
    position: relative;
}
.custom_logo img {
    height: 100px;
    width: auto !important;
    -webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;;
}

/* HEADER - Bottom Header - Modules */
.row-fluid .custom_header-right,
.row-fluid .custom_login-button,
.row-fluid .custom-menu-primary {
    float: right;
    margin: 0;
    width: auto;
}

/* HEADER - Bottom Header - Login */
.custom_login-button {
    padding-top: 40px;
    -webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;;
}
.custom_login-button a {
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 10px 30px;
    -webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;;
}
.custom_login-button a:hover {
    background-color: #fff;
    color: #2275b7;
}

/* ====== PAGES ====== */
/* Migration */
.migration-template .body-container .main-content .cell-wrapper,
.migration-template .body-container .sidebar .cell-wrapper {
	margin-bottom: 30px;
}

/* Home */
.custom_home-page .body-container {
    padding: 0;
}
.custom_home-page .row-fluid .custom_section.one {
    background: #fff;
    padding: 29px 0 30px;
}
.custom_home-page .custom_section.one .main-content {
    margin-bottom: 35px;
}
.custom_home-page .custom_section.one .main-content p {
    color: #666;
    /* font-size: 1.15em; */
    line-height: 1.75em;
    margin: 0;
}
.custom_home-page .row-fluid .custom_section.two {
    /* background: #2275b7; */
    padding: 40px 0;
}
.custom_home-page .row-fluid .custom_section.two .page-center {
    padding: 0;
}
.custom_home-page .custom_section.two .main-content.top .hs_cos_wrapper_type_header h1 {
    color: #fff;
}
.custom_home-page .custom_section.two .main-content.top .hs_cos_wrapper_type_header h1:after {
    border-bottom-color: #fff;
}
.custom_home-page .custom_section.two .main-content.middle .row-fluid .column {
    float: left;
    margin: 0 1%;
    width: 31.3%;
}
.custom_home-page .custom_section.two .main-content.bottom {
    display: block;
    padding: 30px 0 20px;
    text-align: center;
}
.custom_home-page .custom_section.two .main-content.bottom .button {
    border: 2px solid #FFF;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    /* font-size: 1.15em; */
    font-weight: 400;
    line-height: 22px;
    margin: 0 !important;
    padding: 10px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_home-page .custom_section.two .main-content.bottom .button:hover {
    background: #fff;
    color: #2275b7;
}
.custom_home-page .row-fluid .custom_section.four {
    background: #ffffff;
    padding: 50px 0;
}
.custom_home-page .row-fluid .custom_section.four .page-center {
    padding: 0;
}
.custom_home-page .custom_section.four .main-content {
    overflow: hidden;
    position: relative;
}
.custom_home-page .custom_section.four .main-content .hs_cos_wrapper_type_header h1 {
    color: #2275b7;
    margin-bottom: 30px;
}
.custom_home-page .custom_section.four .main-content .hs_cos_wrapper_type_header h1:after {
    border-bottom-color: #2275b7;
}
.custom_home-page .row-fluid .custom_section.five {
    padding: 1.5em 0;
}
.custom_home-page .row-fluid .custom_section.five .page-center {
    padding: 0;
}
.custom_home-page .custom_section.five .row-fluid .main-content {
    float: left;
    margin: 0;
    padding: 0 30px;
    width: 50%;
}
.custom_home-page .custom_section.five .row-fluid .main-content.left > span {
    display: block;
    margin-bottom: 35px;
}
.custom_home-page .custom_section.five .row-fluid .main-content.left p:last-child {
    margin: 0;
}
.custom_home-page .custom_section.five .row-fluid .main-content.right .video-container {
    margin-bottom: 35px;
}

/* Our Solutions */
.custom_solutions-page .body-container {
    background: #2275b7;
    padding: 50px 0;
}
.custom_solutions-page .row-fluid .custom_section .page-center {
    padding: 0;
}
.custom_solutions-page .custom_section.one .hs_cos_wrapper_type_header h1 {
    color: #fff;
}
.custom_solutions-page .custom_section.one .hs_cos_wrapper_type_header h1:after {
    border-bottom-color: #fff;
}
.custom_solutions-page .custom_section .custom_solutions-container {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.custom_solutions-page .custom_section.one .custom_solutions-container .custom_solution-box {
    float: left;
    margin: 10px 1%;
    width: 31.3%;
}
.custom_solutions-page .custom_section.one .custom_solutions-container .custom_solution-box:nth-child(3n+1) {
    clear: left;
}
.custom_solutions-page .custom_section.two .custom_solutions-container .custom_solution-box {
    float: left;
    margin: 10px 1%;
    padding: 30px 20px;
    width: 23%;
}
.custom_solutions-page .custom_section.two .custom_solutions-container .custom_solution-box:nth-child(4n+1) {
    clear: left;
}

/* Solution Presentation Page */
.custom_solution-presentation .body-container {
    padding: 0 0 10px;
}
.custom_solution-presentation .custom_content-section .hs_cos_wrapper_type_header h1 {
    display: block;
    margin-bottom: 35px;
}
.custom_solution-presentation .custom_content-section h3.paratitle {
    margin-bottom: 0;
}
.custom_solution-presentation .custom_content-section .button {
	background: transparent;
	border: 2px solid #2275b7;
	border-radius: 4px;
	color: #2275b7;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 23px;
	font-weight: 700;
	line-height: normal;
	margin: 0 0 42px;
	padding: 10px 40px;
	text-align: center;
	width: auto;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;;
}
.custom_solution-presentation .custom_content-section .button:hover {
	background: #2275b7;
	border-color: #2275b7;
	color: #fff;
}
.custom_solution-presentation .custom_content-section .button:active,
.custom_solution-presentation .custom_content-section .button:focus {
    background-color: #5472D2;
}

/* White Paper Download */
.custom_download-page .body-container {
    padding: 0;
}
.custom_download-page .row-fluid .custom_content-section {
    background: #f5f5f5;
    padding: 50px 0 100px;
}
.custom_download-page .row-fluid .custom_content-section .page-center {
    padding: 0;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 28px 0 rgba(0,0,0,.1);
    display: block;
    margin: 40px auto 0;
    max-width: 800px;
    padding: 30px 60px;
    position: relative;
    width: 95%;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form h3.form-title,
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-form-field > label {
    display: none;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form {
    padding-top: 20px;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-form-field {
    margin-bottom: 25px;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-richtext p {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 23px;
    padding-right: 2px;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-richtext p strong {
    font-weight: 700;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-input::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-input:-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-input::-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-input:-ms-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form form .hs-button {
    position: absolute;
    left: 50%;
    margin: 1px 0 0 -8px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);;
}

/* Whitepaper Single Page */
.custom_whitepaper-presentation .custom_content-section .main-content.top {
    padding: 17px 3px;
}
.custom_whitepaper-presentation .custom_content-section .main-content.top .hs_cos_wrapper_type_header h1 {
    font-size: 30px;
}
.custom_whitepaper-presentation .custom_content-section .main-content.top .hs_cos_wrapper_type_rich_text p:last-child,
.custom_whitepaper-presentation .custom_content-section .main-content.top .hs_cos_wrapper_type_rich_text blockquote:last-child {
    margin-bottom: 0;
}
.custom_whitepaper-presentation .custom_content-section table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 30px auto 0;
    text-align: left;
}
.custom_whitepaper-presentation .custom_content-section table.features-table {
    margin-bottom: 30px;
}
.custom_whitepaper-presentation .custom_content-section table th {
    background: #2275b7;
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding: 20px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}
.custom_whitepaper-presentation .custom_content-section table.features-table th {
    padding: 10px;
    text-align: left;
}
.custom_whitepaper-presentation .custom_content-section table td {
    border-bottom: 1px solid #ddd;
    color: #222;
    font-size: 18px;
    line-height: normal;
    padding: 20px;
    vertical-align: middle;
}

/* About */
.custom_about-page .body-container {
    padding: 0;
}
.custom_about-page .row-fluid .custom_section.one {
    padding-bottom: 10px;
}
.custom_about-page .row-fluid .custom_section.two {
    background: #f5f5f5;
    padding: 50px 0;
}
.custom_about-page .row-fluid .custom_section.two .page-center {
    padding: 0;
}
.custom_about-page .custom_section.two .row-fluid .main-content {
    overflow: hidden;
    position: relative;
}
.custom_about-page .custom_section.two .hs_cos_wrapper_type_header h1 {
    color: #2275b7;
    margin-bottom: 30px;
}
.custom_about-page .custom_section.two .hs_cos_wrapper_type_header h1:after {
    border-bottom-color: #2275b7;
}
.custom_about-page .custom_content-banner h1 {
    color: #fff;
	font-size: 44px;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0 15px;
	padding-bottom: 25px;
    position: relative;
    text-align: center;
	text-transform: none;
}
.custom_about-page .custom_content-banner h1:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #fff;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.custom_about-page .custom_content-banner .content-banner-inner p {
    line-height: 34px;
}
.custom_about-page .custom_content-banner a {
    color: #fff;
}

/* Partners */
.custom_partners-page .body-container {
    padding: 0;
}
.custom_partners-page .row-fluid .custom_section.one {
    background: #f5f5f5;
    padding: 35px 0 0;
}
.custom_partners-page .custom_section.one .row-fluid .hs_cos_wrapper_type_header h1 {
    margin-bottom: 35px;
}
.custom_partners-page .custom_section.one .row-fluid .hs_cos_wrapper_type_form {
    padding: 0 20px;
}
.custom_partners-page .custom_section.one .row-fluid .hs_cos_wrapper_type_form form {
    background: #fff;
    border-radius: 5px;
    box-shadow: -3px 3px 5px 0 rgba(0,0,0,.1);
    clear: both;
    display: table;
    margin: 55px auto 100px;
    overflow: visible;
    padding: 50px 40px 75px;
    position: relative;
    table-layout: fixed;
    width: 100%;
}
.custom_partners-page .custom_section.one form .hs-form-field {
    margin-bottom: 25px;
}
.custom_partners-page .custom_section.one form .hs-form-field > label {
    display: none;
}
.custom_partners-page .custom_section.one form .hs-richtext p {
    color: #222;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: 20px;
    margin: 10px auto 40px;
    max-width: 95%;
    text-align: center;
    width: 100%;
}
.custom_partners-page .custom_section.one form .hs-input::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_partners-page .custom_section.one form .hs-input:-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_partners-page .custom_section.one form .hs-input::-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_partners-page .custom_section.one form .hs-input:-ms-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.custom_partners-page .custom_section.one form .hs-button {
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin: 0 0 0 -8px;
    padding: 15px 20px;
    min-width: 180px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);;
}
.custom_partners-page .row-fluid .custom_section.two {
    background: #fff;
    padding: 35px 0;
}
.custom_partners-page .custom_section.two .row-fluid .main-content {
    padding: 0 20px;
}
.custom_partners-page .custom_section.two .row-fluid .hs_cos_wrapper_type_header h1 {
    color: #444;
    font-size: 24px;
    line-height: 40px;
    margin: 0 auto 20px;
    padding-bottom: 10px;
    position: relative;
    text-align: left;
}
.custom_partners-page .custom_section.two .row-fluid .hs_cos_wrapper_type_header h1:after {
    margin: 0;
}
.custom_partners-page .custom_section.two .hs_cos_wrapper_type_rich_text p:last-child {
    margin: 0;
}
.custom_partners-page .row-fluid .custom_section.three {
    background: #f5f5f5;
    padding: 40px 0;
}
.custom_partners-page .row-fluid .custom_section.three .page-center {
    padding: 0;
}
.custom_partners-page .custom_section.three .row-fluid .main-content {
    position: relative;
}
.custom_partners-page .custom_section.three .row-fluid .main-content .lSSlideOuter {
    margin: 0 auto;
    max-width: 850px;
    overflow: hidden;
}
ul#partners-slider {
    list-style-type: none;
    margin: 10px 0 30px;
    padding: 0;
}
ul#partners-slider li {
    float: left;
}
ul#partners-slider li img {
    display: block;
    margin: 0 auto;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_partners-page .custom_section.one form .hs-richtext p {
        line-height: normal;
    }
}

/* Whitepapers */
.custom_whitepapers-page .body-container {
    background: url(//4215065.fs1.hubspotusercontent-na1.net/hubfs/4215065/SoftWorksAI_January2018/Images/whitepapers-bg.jpg) center bottom repeat-x #f5f5f5;
    padding: 30px 0 50px;
}
.custom_whitepapers-page .row-fluid .custom_content-section .page-center {
    padding: 0;
    width: 96%;
}
.custom_whitepapers-page .custom_content-section .row-fluid .hs_cos_wrapper_type_header h1 {
    margin-bottom: 50px;
}

/* Support */
.custom_support-page .body-container {
    background: #f5f5f5;
    padding: 30px 0 50px;
}
.custom_support-page .row-fluid .custom_content-section .page-center {
    padding: 0;
}
.custom_support-page .custom_content-section .row-fluid .hs_cos_wrapper_type_header h1 {
    margin: 20px auto 35px;
    max-width: 950px;
}
.custom_support-page .custom_text-container {
    background: #fff;
    border-radius: 5px;
    box-shadow: -3px 3px 5px 0 rgba(0,0,0,.1);
    display: table;
    margin: 20px auto;
    padding: 0;
    table-layout: fixed;
    width: 100%;
}
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text {
    border-bottom: 1px solid #DDD;
    margin: 0 auto;
    padding: 25px 35px;
}
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text p,
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text li {
    margin-bottom: 10px;
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    line-height: normal;
}
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text ul {
    list-style-type: none;
    margin: 0 0 15px;
    padding: 0;
}
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text ul:last-child {
    margin: 0;
}
.custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text ul li:before {
    content: '\f058';
    color: #2275b7;
    font-family: FontAwesome;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    top: 0;
    margin-right: 5px;
}

/* ====== CUSTOM MODULES ====== */
/* Top Pane */
.custom_top-pane {
    background-position: center;
    background-size: cover;
    margin-top: -1px;
    position: relative;
}
.row-fluid .custom_top-pane .page-center {
    display: table;
    height: 500px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 200px 0 0;
    table-layout: fixed;
    width: 100%;
}
.custom_top-pane .top-pane-content {
    color: #fff;
    margin: 0 auto;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.custom_top-pane .top-pane-content h1 {
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    margin: 0;
    text-transform: none;
}
.custom_top-pane .top-pane-content h3 {
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    margin: 0;
    text-transform: none;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_top-pane .top-pane-content h1 {
		line-height: 71px;
	}
	.custom_top-pane .top-pane-content h3 {
		line-height: 1.75em;
	}
}

/* Banner Parallax */
.custom_banner-parallax {
    display: block;
    height: 984px;
    overflow: hidden;
    position: relative;
    top: -1px;
    width: 100%;
}
.custom_banner-parallax .banner-inner {
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.custom_banner-parallax .banner-container {
    display: table;
    float: none;
    height: 100%;
    margin: 0 auto;
    max-width: 1165px;
    padding: 0 10px;
    table-layout: fixed;
    width: 100%;
}
.custom_banner-parallax .banner-content {
    color: #fff;
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.custom_banner-parallax .banner-content h1 {
    color: #fff;
    /* font-family: Arial, sans-serif; */
    font-size: 60px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    word-spacing: normal;
}
.custom_banner-parallax .banner-content .button {
    background: #2275b6;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    /* font-family: Arial, sans-serif; */
    font-size: 1.25em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.5;
    margin: 15px 0 0;
    padding: 10px 40px;
    text-decoration: none;
    text-align: center;
    text-shadow: none;
    text-transform: none;
    word-spacing: normal;
}
.custom_banner-parallax .banner-content .button:hover {
    background: #105a94;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_banner-parallax .banner-content .button {
        margin-bottom: -1px;
    }
}

/* Pagination */
.custom_pagination-module {
    margin-bottom: 35px;
}
.custom_pagination-module .lSSlideOuter {
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    display: block;
    margin: 0 auto;
    overflow: visible;
    padding: 25px 0;
    width: 100%;
}
.custom_pagination-module .lSSlideOuter .lSSlideWrapper {
	margin: 0 auto;
    max-width: 100%;
	overflow: hidden;
	position: relative;
    width: 230px;
}
.custom_pagination-module .lSSlideOuter .lSSlideWrapper ul.lSSlide {
    font-size: 0;
    left: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    right: auto;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
	-o-transform: translateY(0);
    transform: translateY(0);;
}
.custom_pagination-module ul li {
	display: inline-block;
	font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}
.custom_pagination-module ul li a {
    border: none;
    border-radius: 50px;
    color: #888;
    display: block;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    padding: 0;
    width: 35px;
    -webkit-transition: background .2s ease-in-out;
	-moz-transition: background .2s ease-in-out;
	-ms-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;;
}
.custom_pagination-module ul li a:hover {
    background: #eee;
}
.custom_pagination-module ul li.active-page > a {
    background: #2275b7;
    color: #fff;
    font-weight: 700;
}
.custom_pagination-module .lSSlideOuter .lSAction {
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    width: 230px;
}
.custom_pagination-module .lSSlideOuter .lSAction > a {
    background: 0 0;
    color: #ddd;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    height: 32px;
    margin-top: -16px;
    opacity: 1;
    position: absolute;
    text-align: center;
    top: -19px;
    width: 32px;
    -webkit-transition: opacity 0.35s linear 0s;
	-moz-transition: opacity 0.35s linear 0s;
	-ms-transition: opacity 0.35s linear 0s;
	-o-transition: opacity 0.35s linear 0s;
	transition: opacity 0.35s linear 0s;;
}
.custom_pagination-module .lSSlideOuter .lSAction > .lSPrev {
    left: -30px;
}
.custom_pagination-module .lSSlideOuter .lSAction > .lSNext {
    right: -30px;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_pagination-module .lSSlideOuter .lSAction > a {
        top: -21px;
    }
}

/* Whitepaper Buttons */
.custom_whitepaper-buttons {
    display: block;
    text-align: center;
    width: 100%;
}
.custom_whitepaper-buttons a {
	background: transparent;
	border-radius: 4px;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	margin: 10px 10px 10px 0;
	padding: 10px 30px;
	text-align: center;
	width: auto;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_whitepaper-buttons .request {
	border: 2px solid #2275b7;
	color: #2275b7;
}
.custom_whitepaper-buttons .request:hover {
	background: #2275b7;
	border-color: #2275b7;
	color: #fff;
}
.custom_whitepaper-buttons .download {
	border: 2px solid #2275b6;
	color: #2275b6;
}
.custom_whitepaper-buttons .download:hover {
	background: #2275b6;
	border-color: #2275b6;
	color: #fff;
}

/* Testimonials */
.custom_testimonials-section {
    background: #2275b6;
    color: #fff;
    padding: 60px 0 50px;
    position: relative;
    text-align: center;
}
.custom_testimonials-section .main-content.top h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 10px;
    margin: 20px 0;
    position: relative;
    text-align: center;
}
.custom_testimonials-section .lSSlideOuter {
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    width: 100%;
}
.custom_testimonials-section .lSSlideOuter .lSSlideWrapper {
	overflow: hidden;
}
.custom_testimonials-section ul#testimonial-slider {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.slider-pagination {
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    display: block;
    height: 100%;
    max-width: 100px;
    min-width: 65px;
    position: absolute;
    top: 0;
    -webkit-transition: background-color .3s ease;
	-moz-transition: background-color .3s ease;
	-ms-transition: background-color .3s ease;
	-o-transition: background-color .3s ease;
	transition: background-color .3s ease;;
    width: 10%;
}

    .slider-pagination:hover {
        background-color: rgba(255, 255, 255, .3);
    }

    .slider-pagination--left {
        left: 0;
        z-index: 1;
    }

        .slider-pagination--left .fa {
            left: 50%;
            margin-left: -1em;
        }

    .slider-pagination--right {
        right: 0;
    }

        .slider-pagination--right .fa {
            margin-right: -1em;
            right: 50%;
        }

    .slider-pagination .fa {
        background-color: white;
        border-radius: 40px;
        color: #2374b6;
        margin-top: -.5em;
        padding: .5em .75em;
        position: absolute;
        top: 50%;
    }

.custom_testimonials-section ul#testimonial-slider li {
    float: left;
}
.custom_testimonials-section ul#testimonial-slider li .testimonial-content {
    margin: 0 5vw;
    width: 60vw;
    max-width: 50em;
}
.custom_testimonials-section ul#testimonial-slider li .testimonial-content p {
    /* font-size: 20px; */
    font-style: italic;
    line-height: 34px;
    margin: 0 auto 20px;
}
.custom_testimonials-section ul#testimonial-slider li .testimonial-content h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 50px auto 0;
    position: relative;
}
.custom_testimonials-section ul#testimonial-slider li .testimonial-content h3:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    border-bottom: 3px solid #FFF;
}
.custom_testimonials-section .lSSlideOuter .lSAction > a {
    color: #fff;
    width: 32px;
    display: block;
    top: 50%;
    height: auto;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -40px;
    opacity: 0.5;
	-webkit-transition: opacity 0.35s linear 0s;
	-moz-transition: opacity 0.35s linear 0s;
	-ms-transition: opacity 0.35s linear 0s;
	-o-transition: opacity 0.35s linear 0s;
	transition: opacity 0.35s linear 0s;;
}
.custom_testimonials-section .lSSlideOuter .lSAction > .lSPrev {
    left: 10px;
}
.custom_testimonials-section .lSSlideOuter .lSAction > .lSNext {
    right: 10px;
}
.custom_testimonials-section .lSSlideOuter .lSAction > a i {
    font-size: 72px;
}
.custom_testimonials-section .lSSlideOuter .lSAction > a:hover {
    opacity: 1;
}

/* Accordion Box */
.custom_accordions-container {
    background: #fff;
    border-radius: 5px;
    box-shadow: -3px 3px 5px 0 rgba(0,0,0,.1);
    display: table;
    margin: 20px auto 50px;
    padding: 0;
    table-layout: fixed;
    width: 96%;
}
.custom_accordion-box {
    border: 1px solid transparent;
    border-top: 0 none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
}
.custom_accordion-box:first-child {
    border-radius: 5px 5px 0 0;
}
.custom_accordion-box:last-child {
    border-bottom-color: transparent;
    border-radius: 0 0 5px 5px;
}
.custom_accordion-box .accordion-title {
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    padding: 15px 5px;
    -webkit-transition: background .2s ease-in-out;
	-moz-transition: background .2s ease-in-out;
	-ms-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;;
}
.custom_accordion-box:first-child .accordion-title {
    border-radius: 5px 5px 0 0;
}
.custom_accordion-box:last-child .accordion-title {
    border-radius: 0 0 5px 5px;
}
.custom_accordion-box .accordion-title h4 {
    color: #666;
    line-height: 1;
    margin: 0;
    padding: 14px 20px 14px 46px;
    position: relative;
    -webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;;
}
.custom_accordion-box .accordion-title h4 i {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    height: 12px;
    width: 12px;
    top: 50%;
    left: 20px;
    font-size: inherit;
    margin: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
    transform: translateY(-50%);;
}
.custom_accordion-box .accordion-title h4 i:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-style: solid;
    border-width: 6px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: #2275b7;
    -webkit-transform: rotate(-90deg) translateY(25%);
    -moz-transform: rotate(-90deg) translateY(25%);
    -ms-transform: rotate(-90deg) translateY(25%);
	-o-transform: rotate(-90deg) translateY(25%);
    transform: rotate(-90deg) translateY(25%);;
    -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;;
}
.custom_accordion-box.active .accordion-title h4 i:before,
.custom_accordion-box.first-active .accordion-title h4 i:before {
    -webkit-transform: rotate(0deg) translateY(25%);
    -moz-transform: rotate(0deg) translateY(25%);
    -ms-transform: rotate(0deg) translateY(25%);
	-o-transform: rotate(0deg) translateY(25%);
    transform: rotate(0deg) translateY(25%);;
}
.custom_accordion-box .accordion-content {
    background: #fff;
    display: none;
    min-height: 10px;
    overflow: hidden;
}
.custom_accordion-box .accordion-content .accordion-inner {
    padding: 0 20px 25px 50px;
}
.custom_accordion-box.first-active .accordion-content {
    display: block;
}
.custom_accordion-box .accordion-content p,
.custom_accordion-box .accordion-content li {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}
.custom_accordion-box .accordion-content p:last-child,
.custom_accordion-box .accordion-content li:last-child {
    margin-bottom: 0;
}

/* Solution Box */
.custom_solution-box {
    border-radius: 10px;
    padding: 30px 60px;
    position: relative;
    text-align: center;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_solution-box:hover {
    background: #fff;
}
.custom_solution-box .solution-image {
    display: block;
    margin: 0 auto;
    padding-bottom: 5px;
    position: relative;
    text-align: center;
}
.custom_solution-box .solution-image img {
    display: inline-block;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_solution-box .solution-image img.hover {
    position: absolute;
    z-index: 5;
    top: 0;
    opacity: 0;
}
.custom_solution-box:hover .solution-image img.normal {
    opacity: 0;
}
.custom_solution-box:hover .solution-image img.hover {
    opacity: 1;
}
.custom_solution-box h4 {
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_solution-box:hover h4 {
    color: #2275b7;
}
.custom_solution-box p {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    opacity: 0;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_solution-box:hover p {
    opacity: 1;
}
.custom_solution-box > i {
    color: #2275b7;
    display: block;
    font-size: 24px;
    margin: -1px 0 2px;
    opacity: 0;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_solution-box:hover > i {
    opacity: 1;
}
.custom_solution-box > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .custom_solution-box .solution-image {
    	padding-bottom: 4px;
    }
    .custom_solution-box h4,
    .custom_solution-box p {
    	line-height: normal;
    }
}

/* Content Banner */
.custom_content-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 50px 0; */
}
.custom_content-banner .content-banner-inner {
    color:  #fff;
    padding: 35px 0;
    position: relative;
    text-align: center;
}
.custom_content-banner .content-banner-inner p {
    font-size: 1.111111em;
    line-height: 1.75em;
}
.custom_content-banner .content-banner-inner p:last-child {
    margin: 0;
}
.custom_content-banner .content-banner-inner .button {
    border: 2px solid #FFF;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 1em;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_content-banner .content-banner-inner .button:hover {
    background: #fff;
    color: #2275b7;
}

/* LightSlider */
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lightSlider.lsGrab > * {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.lSSlideOuter .lSPager.lSpg {
	display: block;
	font-size: 16px;
	line-height: 20px;
	list-style-type: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
	width: 100%;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #ddd;
    border-radius: 30px;
    display: inline-block;
    height: 13px;
    overflow: hidden;
    text-indent: -999em;
    width: 13px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
	-moz-transition: all 0.5s linear 0s;
	-ms-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;;
}
.lSSlideOuter .lSPager.lSpg > li.active a,
.lSSlideOuter .lSPager.lSpg > li:hover a {
    background: #2275b7;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .lSSlideOuter .lSPager.lSpg {
    	line-height: 17px;
        margin: 10px 0 1px;
    }
}

/* Feature Box */
.custom_features-container > .lslide {
    float: left;
    padding: 10px;
}
.custom_feature-box > img {
    float: left;
    margin: 0 auto;
}
.custom_feature-box > h4 {
    color: #444;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 1rem;
    font-weight: 700;
    line-height: 27px;
    padding-left: 110px;
}
.custom_feature-box .feature-content {
    color: #666;
    font-size: 19px;
    line-height: 32px;
    padding-left: 110px;
}
.custom_feature-box .feature-content p {
    color: #666;
    font-size: 19px;
    line-height: 32px;
}

/* Bottom Pane */
.custom_bottom-pane {
    background-position: center center;
    background-size: cover;
    color: #fff;
    margin: 0 auto;
    padding: 75px 0;
    text-align: center;
    width: 100%;
}
.row-fluid .custom_bottom-pane .page-center {
    max-width: 960px;
    padding: 0;
}
.custom_bottom-pane h3 {
    color: #fff;
    font-size: 44px;
    line-height: 53px;
    margin: 20px 0;
}
.custom_bottom-pane a.button {
    border: 2px solid #fff;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 1.25em;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 40px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_bottom-pane a.button:hover {
    color: #2275b7;
    background-color: #fff;
}

/* Tabs */
.custom_tabs-container {
    display: table;
    margin: 0 -10px 1.087em;
    table-layout: fixed;
    width: calc(100% + 20px);
}
.custom_tabs-container ul.custom_tabs-list {
    background: #f5f5f5;
    display: block;
    list-style-type: none;
    margin: 9px 0 0;
    padding: 0;
    width: 100%;
}
.custom_tabs-container ul.custom_tabs-list li {
    display: inline-block;
    margin: 0 -1px 0 0;
}
.custom_tabs-container ul.custom_tabs-list li a {
    color: #666;
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
    margin-right: 1px;
    padding: 29px 30px 30px 30px;
    position: relative;
    text-decoration: none;
    -webkit-transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
	-moz-transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
	-ms-transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
	-o-transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
	transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;;
}
.custom_tabs-container ul.custom_tabs-list li:first-child > a {
    padding-left: 29px;
}
.custom_tabs-container ul.custom_tabs-list li a:hover {
    background: #489BDC;
    color: #fff;
}
.custom_tabs-container ul.custom_tabs-list li a.active {
    background: #2275b6;
    color: #fff;
    pointer-events: none;
}
.custom_tabs-container .custom_tabs-wrap {
    border: 1px solid #F5F5F5;
    padding: 40px 15px 0;
}
.custom_tabs-container .custom_tabs-wrap .custom_tab-module {
    display: none;
}
.custom_tabs-container .custom_tabs-wrap .custom_tab-module.active {
    display: block;
}
.custom_tabs-container .custom_tabs-wrap .custom_tab-module .tab-inner {
    padding: 15px 20px;
}
.custom_tabs-container .custom_tab-module .tab-title {
    display: none;
}
@media (min-width: 768px) {
    .custom_tabs-container .custom_tab-module .tab-content {
        display: block !important;
    }
}
.custom_tabs-container .custom_tab-module .tab-content h4 {
    color: #666;
    /* font-family: 'Source Sans Pro', Helveica, Arial, sans-serif; */
    font-size: 20px;
    line-height: normal;
    position: relative;
    padding-left: 20px;
}
.custom_tabs-container .custom_tab-module .tab-content h4:after {
    content: '\f10c';
    font-family: FontAwesome;
    font-size: 18px;
    color: #2275b6;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    top: 2px;
    left: 0;
}
.custom_tabs-container .custom_tab-module .tab-content p:last-child {
    margin: 0;
}
.custom_tabs-container .custom_tab-module .tab-content .downloadLink {
    margin: 0 auto 15px;
}
.custom_tabs-container .custom_tab-module .tab-content .downloadLink:last-child {
    margin: 0 auto;
}
.custom_tabs-container .custom_tab-module .tab-content .downloadLink a {
    color: #2275b7;
    display: block;
    /* font-family: 'Open Sans', Helvetica, Arial, sans-serif; */
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding-left: 25px;
    position: relative;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_tabs-container .custom_tab-module .tab-content .downloadLink a i {
    position: absolute;
    left: 0;
    top: 4px;
}
.custom_tabs-container .custom_tab-module .tab-content .downloadLink a:hover {
    color: #f4811f;
}
.custom_tabs-container .custom_tab-module .tab-content table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0 none;
    display: inline-block;
    margin: 30px 0 -10px;
}
.custom_tabs-container .custom_tab-module .tab-content table td {
    border: 0 none;
    border-bottom: 1px solid #ddd;
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 20px;
    vertical-align: middle;
}

/* Whitepaper Box */
.custom_whitepaper-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: -3px 3px 5px 0 rgba(0,0,0,.1);
    display: table;
    margin: 20px auto;
    padding: 20px 30px;
    table-layout: fixed;
    width: 100%;
}
.custom_whitepaper-box > .whitepaper-icon {
    float: left;
}
.custom_whitepaper-box > .whitepaper-content {
    padding-left: 150px;
    padding-bottom: 10px;
}
.custom_whitepaper-box > .whitepaper-content h3 {
    color: #444;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin: 10px auto;
}
.custom_whitepaper-box > .whitepaper-content p {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    line-height: normal;
    margin: 10px auto;
}
.custom_whitepaper-box .whitepaper-buttons a {
    background-color: transparent;
    border: 2px solid #888;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    display: inline-block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin: 10px 10px 10px 0;
    padding: 12px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_whitepaper-box .whitepaper-buttons a:hover {
    border-color: #2275b7;
    color: #2275b7;
}

/* Download Box */
.custom_downloads-container {
    display: table;
    margin-top: -5px;
    table-layout: fixed;
    width: 100%;
}
.custom_download-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: -3px 3px 5px 0 rgba(0,0,0,.1);
    display: table;
    margin: 20px auto;
    padding: 25px 30px;
    table-layout: fixed;
    width: 96%;
}
.custom_download-box > .download-icon {
    float: left;
    margin: 15px 0 0 20px;
}
.custom_download-box > .download-content {
    padding: 0 0 10px 150px;
}
.custom_download-box > .download-content h3 {
    color: #444;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.custom_download-box .download-button a {
    background-color: transparent;
    border: 2px solid #2275b7;
    border-radius: 50px;
    color: #2275b7;
    cursor: pointer;
    display: inline-block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin: 5px 0 0;
    padding: 12px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.custom_download-box .download-button a:hover {
    background-color: #2275b7;
    color: #fff;
}

/* ====== OTHER ====== */
.body-container {
    padding: 50px 0;
}
.body-container .hs_cos_wrapper_type_header h1 {
    color: #2273b5;
	display: inline-block;
	font-size: 1.45em;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0 15px;
	/* padding-bottom: 10px; */
    position: relative;
    text-align: center;
	text-transform: uppercase;
}
.body-container .hs_cos_wrapper_type_header h1:after {
    position: absolute;
    width: 100%;
    border-bottom: 2px solid #2275b7;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.video-container {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.text-center {
    text-align: center;
}
.grey-box {
    background: #f5f5f5;
    display: block;
    margin: 0 -10px 60px;
    padding: 15px 0;
}
.grey-box .button {
    margin-bottom: 20px !important;
}
img.alignleft {
    display: inline;
    float: left;
    margin: 0 1.5em 0 0;
}
img.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}
img.alignright {
    display: inline;
    float: right;
    margin: 0 0 0 1.5em;
}
figure {
    color: #222;
    display: block;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: normal;
    margin: 0;
    padding: 10px 0 0;
    width: 100%;
}
table.features-table {
    border: 0 none;
    border-color: #fff;
    border-spacing: 2px;
    border-collapse: collapse;
    margin: 35px auto;
    text-align: left;
}
table.features-table th {
    background: #2275b7;
	color: #fff;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	padding: 10px;
    text-transform: uppercase;
    vertical-align: middle;
}
table.features-table td {
	border: 0 none;
	border-bottom: 1px solid #ddd;
    color: #222;
    font-size: 18px;
	font-weight: 400;
	line-height: normal;
    padding: 20px;
    vertical-align: middle;
}
.video-center {
    border-bottom: 1px solid #ddd;
    display: block;
    float: none;
    margin: 49px auto 30px;
    max-width: 680px;
    position: relative;
    padding: 315px 20px 26px;
    height: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.video-center iframe,
.video-center object,
.video-center embed {
    position: absolute;
    top: 0;
    left: 50%;
    height: 315px;
    width: 560px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);;
}
.bottom .button {
    margin-bottom: 32px !important;
}
.spacer25 {
    clear: both;
    display: block;
    height: 25px;
}
ul.no-style {
    display: block;
    list-style-type: none;
    margin: -1px 0 16px;
    padding: 0;
    width: 100%;
}
ul.no-style li {
    color: #555;
    /* font-family: Lato, Helvetica, Arial, sans-serif; */
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    padding-left: 15px;
    position: relative;
}
.site-page.one-column .body-container {
    padding: 60px 0 65px;
}
h2.special-heading {
    color: #444;
    /* font-family: Montserrat, Helvetica, Arial, sans-serif; */
	font-size: 24px;
	font-weight: 400;
	line-height: 40px;
	margin: 20px 0;
	padding-bottom: 10px;
    position: relative;
    text-align: center;
	text-transform: uppercase;
}
h2.special-heading:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #444;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.two-column .body-container {
    background: #f5f5f5;
    padding: 80px 0 120px;
}
.two-column .body-container .row-fluid .page-center {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 28px 0 rgba(0,0,0,.1);
    padding: 30px;
}
.two-column .body-container .row-fluid .main-content {
    padding: 20px 60px 20px 10px;
    position: relative;
}
.two-column .body-container .row-fluid .main-content.span8 {
    width: 66.66666667%;
}
.two-column .main-content p {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
.two-column .main-content form {
    padding-right: 15px;
}
/*.two-column .main-content form .hs-form-field > label {
    display: none;*/
}
.two-column .main-content form .hs-input::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.two-column .main-content form .hs-input:-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.two-column .main-content form .hs-input::-moz-placeholder {
    color: inherit;
    opacity: 0.9;
}
.two-column .main-content form .hs-input:-ms-input-placeholder {
    color: inherit;
    opacity: 0.9;
}
.two-column .main-content form select {
    height: 50px;
    padding: 0 12px;
}
.two-column .main-content form textarea {
    padding-top: 2px;
}
.two-column .main-content form .hs-button {
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin: 0 0 0 -33px;
    padding: 15px 20px;
    min-width: 180px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);;
}
.two-column .body-container .row-fluid .sidebar.right {
    padding: 0 10px;
}
.two-column .body-container .row-fluid .sidebar.right.span4 {
    margin: 0;
    width: 33.33333333%;
}
.two-column .sidebar.right .row-fluid .hs_cos_wrapper_type_header h1 {
    text-align: left;
}
.two-column .sidebar.right .row-fluid .hs_cos_wrapper_type_header h1:after {
    margin: 0;
}
.two-column .sidebar.right p {
    color: #666;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
.two-column .row-fluid .custom_footer {
    padding-top: 20px;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .two-column .main-content p,
    .two-column .sidebar.right p {
        line-height: normal;
    }
    .two-column .row-fluid .custom_footer {
        padding-top: 22px;
    }
}
.top-space {
    clear: both;
    float: left;
    padding: 30px 0 0;
    width: 100%;
}
.number,
.stat {
    color: #222;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: normal;
}

/* =============== Footer =============== */
.row-fluid .custom_footer {
    background: #fff;
    padding: 21px 0 20px;
}
.row-fluid .custom_footer .page-center {
    padding: 0;
}

/* FOOTER - Copyright */
.row-fluid .custom_copyright {
    float: left;
    line-height: 20px;
    margin: 0;
    width: auto;
}
.custom_copyright a.phone {
    color: #888;
    /* font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}
.custom_copyright a.email {
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: 20px;
}
.custom_copyright p {
    color: #888;
    /* font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    margin: 10px 0;
}

/* FOOTER - Socials */
.row-fluid .custom_footer-socials {
    float: right;
    margin: 0;
    width: auto;
}
.custom_footer-socials ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0 2px 0 0;
    text-align: right;
}
.custom_footer-socials ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    width: auto;
}
.custom_footer-socials ul li a img {
    margin: 4px 3px;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-ms-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;;
}
.custom_footer-socials ul li a img:hover {
    opacity: 0.5;
}

/* Chrome Fix */
@media (-webkit-min-device-pixel-ratio:0) {
    .row-fluid .custom_footer {
		padding-top: 23px;
	}
	.row-fluid .custom_copyright {
		font-size: 16px;
		line-height: 19px;
	}
	.custom_copyright a.phone {
		line-height: 20px;
	}
	.custom_copyright a.email {
		line-height: 18px;
	}
	.custom_footer-socials ul li a img {
		margin-top: 2px;
	}
}

/* IE Fix */
@media (min-width: 1201px) and (-ms-high-contrast:none) {
	.row-fluid .custom_footer {
		padding: 20px 0 19px;
	}
	.row-fluid .custom_copyright,
	.custom_copyright a.phone,
	.custom_copyright a.email,
	.custom_copyright p {
		line-height: normal;
	}
	.row-fluid .custom_copyright {
	    font-size: 16px;
	}
	.custom_copyright a.phone {
		display: inline-block;
		margin-bottom: -1px;
	}
	.custom_footer-socials ul li a img {
		margin-top: 5px;
	}
}

/* ==========================================================================
   4. MAIN NAVIGATION
   ========================================================================== */

/* Moved to old_menu_styles.css */

/* ==========================================================================
   5. BLOG
   ========================================================================== */

/* =============== General Blog Styles =============== */
.row-fluid .blog-content.span9 {
    float: left;
    margin: 0;
    width: 70%;
}
.post-listing .post-item {
    border-bottom: 1px solid #DDD;
    display: table;
    padding: 20px 0;
    table-layout: fixed;
    width: 100%;
}
.post-listing .post-item .post-left {
    float: left;
    width: 240px;
}
.post-listing .post-item .post-right {
    padding-left: 270px;
}
.post-header h2,
.post-listing-simple h2 {
    color: #444;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 auto 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.post-header h2:after,
.post-listing-simple h2:after {
    content: '';
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #2275b7;
    bottom: 0;
    left: 0;
}
.post-listing .post-item .tags {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
}
.post-listing .post-item .tags a {
    color: #2275b7;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    padding-right: 0.7em;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .post-listing .post-item .tags,
	.post-listing .post-item .tags a {
		line-height: 20px;
	}
}
a.more-link {
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}
ul.blog-pagination {
    display: block;
    list-style-type: none;
    margin: 0 auto;
    padding: 19px 0;
    text-align: center;
}
ul.blog-pagination li {
    display: inline-block;
    width: auto;
}
ul.blog-pagination li a {
    border-radius: 5px;
    color: #888;
    display: inline-block;
    font-size: 20px;
    height: 35px;
    line-height: 26px;
    margin: 0 auto;
    padding: 3px 10px;
    width: 35px;
}
ul.blog-pagination li.first > a,
ul.blog-pagination li.last > a {
    color: #ddd;
}
ul.blog-pagination li a:hover {
    background: #eee;
}
ul.blog-pagination li.first > a:hover,
ul.blog-pagination li.last > a:hover {
    background: none;
    color: #2275b7;
}
ul.blog-pagination li.active > a {
    background: #2275b7;
    color: #fff;
    pointer-events: none;
}
.hs-blog-post .body-container,
.hs-blog-post .body-container .row-fluid .page-center {
    padding: 0;
}
.hs-blog-post .blog-section > .blog-post-wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.hs-blog-post .post-banner-image {
    float: left;
    margin-top: 30px;
    max-width: 340px;
}


.hs-blog-post .post-banner-image img {
    max-width: 360px;
}

.hs-blog-post .post-inner {
    padding-left: 370px;
}
.post-header h1 {
    color: #444;
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0;
	padding-bottom: 10px;
    position: relative;
    text-align: left;
	text-transform: uppercase;
}
.post-header h1:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #2275b7;
    margin: 0;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.hs-blog-post .post-bottom {
    border-top: 1px solid #DDD;
    display: table;
    margin: 0 auto;
    padding: 20px 10px 39px;
    position: relative;
    table-layout: fixed;
    width: 100%;
}
.hs-blog-post .post-bottom a.back {
    background-color: transparent;
    border: 2px solid #888;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 auto;
    padding: 10px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.hs-blog-post .post-bottom a.back:hover {
    background-color: #2275b7;
    border-color: #2275b7;
    color: #fff;
}
.hs-blog-post .post-bottom ul.social-list {
    display: inline;
    float: right;
    line-height: 32px;
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0 2px 0 0;
    position: relative;
    width: auto;
}
.hs-blog-post .post-bottom ul.social-list li {
    display: inline-block;
    vertical-align: middle;
}
.hs-blog-post .post-bottom ul.social-list li a {
    border: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    font-size: 32px;
    padding: 0 2px;
    vertical-align: middle;
}
.hs-blog-post .post-bottom ul.social-list li a > .icon {
	background-repeat: repeat;
	border-radius: 4px;
	display: inline-block;
    height: 32px;
    line-height: 32px;
	opacity: 1;
	overflow: hidden;
    width: 32px;
}
.hs-blog-post .post-bottom ul.social-list li a.share_linkedin > .icon {
    background-color: rgb(0, 123, 181);
}
.hs-blog-post .post-bottom ul.social-list li a.share_facebook > .icon {
    background-color: rgb(59, 89, 152);
}
.hs-blog-post .post-bottom ul.social-list li a.share_pinterest > .icon {
    background-color: rgb(189, 8, 28);
}
.hs-blog-post .post-bottom ul.social-list li a.share_twitter > .icon {
    background-color: rgb(85, 172, 238);
}
.hs-blog-post .post-bottom ul.social-list li a.share_googleplus > .icon {
    background-color: rgb(221, 75, 57);
}
.hs-blog-post .post-bottom ul.social-list li a.share_reddit > .icon {
    background-color: rgb(255, 69, 0);
}
.hs-blog-post .post-bottom ul.social-list li a.share_stumbleupon > .icon {
    background-color: rgb(239, 78, 35);
}
.hs-blog-post .post-bottom ul.social-list li a > .icon svg {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: none;
    display: block;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: auto;
    height: auto;
}
.hs-blog-post .post-bottom ul.social-list li a > .name {
	border-radius: 4px;
	clip: rect(1px,1px,1px,1px);
	display: inline-block;
	height: 32px;
	line-height: 32px;
	opacity: 1;
	overflow: hidden;
	position: absolute;
	width: 32px;
    z-index: -1;
}
.hs-blog-post .post-bottom ul.social-list li a:hover > span {
	opacity: 0.7;
}
.hs-blog-post .post-body img.alignnone {
    margin-bottom: 10px;
}

/* =============== Case Studies Blog Styles =============== */
@media (-webkit-min-device-pixel-ratio:0) {
    .case-studies-blog .custom_top-pane .top-pane-content h1 {
		line-height: normal;
	}
}
.case-studies-blog.hs-blog-listing .body-container {
    padding-bottom: 49px;
}
.case-studies-blog .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
	margin: 0;
}
.case-studies-blog .post-listing .post-item .post-right {
    padding-left: 260px;
}
.case-studies-blog .post-listing .post-item .post-body h2 {
    display: none;
}
.case-studies-blog .post-listing a.more-link {
    color: #2275b6;
}
.case-studies-blog.hs-blog-post .body-container {
    padding: 50px 0 49px;
}
.case-studies-blog.hs-blog-post .body-container .row-fluid .page-center {
    padding: 0 10px;
}
.case-studies-blog.hs-blog-post .post-body h2 {
    color: #444;
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0;
	padding-bottom: 10px;
    position: relative;
    text-align: left;
	text-transform: uppercase;
}
.case-studies-blog.hs-blog-post .post-body h2:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #2275b7;
    margin: 0;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.case-studies-blog.hs-blog-post .post-body table {
	border-collapse: collapse;
    margin: 30px auto;
}
.case-studies-blog.hs-blog-post .post-body table th {
    background: #2275b7;
    color: #fff;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 20px 10px;
    text-transform: uppercase;
    vertical-align: middle;
}
.case-studies-blog.hs-blog-post .post-body table td {
    border-bottom: 1px solid #ddd;
    color: #222;
    /* font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    padding: 20px;
    vertical-align: middle;
}
.case-studies-blog.hs-blog-post .post-bottom {
    border: 0 none;
    padding: 0;
}
.case-studies-blog.hs-blog-post .post-bottom a.back {
    display: inline-block;
    margin-right: 1px;
}
.case-studies-blog.hs-blog-post .post-bottom a.quote {
    border: 2px solid #2275b7;
	border-radius: 4px;
	color: #2275b7;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	margin: 10px 0;
	padding: 10px 30px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.case-studies-blog.hs-blog-post .post-bottom a.quote:hover {
    background: #2275b7;
    color: #fff;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .case-studies-blog .custom_top-pane .top-pane-content h3 {
        line-height: 36px;
    }
    .case-studies-blog.hs-blog-post .post-bottom a.back {
        margin-right: 4px;
    }
}

/* =============== Videos Blog Styles =============== */
.videos-blog .body-container {
    padding: 0;
}
.videos-blog .row-fluid .custom_section.one {
    padding: 50px 0 49px;
}
.videos-blog .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    margin: 0 0 0.225em;
}
.videos-blog .post-listing .post-item .post-right {
    padding-left: 260px;
}
.videos-blog .post-listing .post-item .post-right .post-body {
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: normal;
}
.videos-blog .blog-sidebar ul li.listing {
    display: none;
}

/* =============== Reference Blog Styles =============== */
.reference-blog.hs-blog-listing .row-fluid .blog-content,
.reference-blog.hs-blog-listing.tag-page .row-fluid .custom_listing-categories,
.reference-blog.hs-blog-post .row-fluid .custom_listing-categories {
    display: none;
}
.reference-blog.hs-blog-listing.tag-page .row-fluid .blog-content {
    display: block;
}
.reference-blog .post-bottom {
    border-top: 1px solid #DDD;
    display: table;
    margin: 0 auto;
    padding: 20px 10px 39px;
    position: relative;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}
.reference-blog .post-bottom a.back {
    background-color: transparent;
    border: 2px solid #888;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 auto;
    padding: 12px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.reference-blog .post-bottom a.back:hover {
    background-color: #2275b7;
    border-color: #2275b7;
    color: #fff;
}
.reference-blog .post-bottom a.quote,
.reference-blog .post-bottom a.contact {
    border: 2px solid transparent;
	border-radius: 4px;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	margin: 5px;
	padding: 10px 30px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.reference-blog .post-bottom a.quote {
    border-color: #2275b7;
    color: #2275b7;
}
.reference-blog .post-bottom a.contact {
    border-color: #2275b6;
    color: #2275b6;
}
.reference-blog .post-bottom a.quote:hover {
    background: #2275b7;
    color: #fff;
}
.reference-blog .post-bottom a.contact:hover {
    background: #2275b6;
    color: #fff;
}
.reference-blog.hs-blog-post .body-container .row-fluid .page-center {
    padding: 30px 10px 50px;
}
.reference-blog .post-header h1 {
    margin-bottom: 30px;
    text-align: center;
}
.reference-blog .post-header h1:after {
    margin: auto;
}
.reference-blog h1.tag-title {
    color: #444;
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0;
	padding-bottom: 10px;
    position: relative;
    text-align: center;
	text-transform: uppercase;
}
.reference-blog h1.tag-title:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #2275b7;
    margin: auto;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.reference-blog.hs-blog-listing .body-container {
    padding: 60px 0 120px;
}
.reference-blog.tag-page .body-container {
    padding: 60px 0;
}
.reference-blog.hs-blog-listing .body-container .row-fluid .page-center,
.reference-blog.tag-page .body-container .row-fluid .page-center {
    padding: 0;
}
.reference-blog.tag-page .body-container .post-listing ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.reference-blog.tag-page .body-container .post-listing ul li {
    margin-bottom: 10px;
    padding: 5px 15px;
}
.reference-blog.tag-page .body-container .post-listing ul li i {
    color: #2275b7;
    margin-right: 5px;
    font-size: 18px;
}
.reference-blog.tag-page .body-container .post-listing ul li a {
    color: #2275b7;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    line-height: 24px;
    position: relative;
}
.reference-blog.tag-page .body-container .post-listing ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    background: #2275b7;
    height: 1px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.reference-blog.tag-page .body-container .post-listing ul li a:hover:after {
    left: 0;
    right: 0;
}
.reference-blog.tag-page .post-bottom {
    padding: 40px 10px 39px;
    text-align: left;
}
.reference-blog ul.blog-pagination {
    float: right;
    padding: 0;
    position: relative;
    top: -1px;
}
.reference-blog ul.blog-pagination li {
    margin-left: 0.025em;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li {
    border: 0 none !important;
    float: left;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 10px 15px;
    width: 50%;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a {
    color: #2275b7;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 15px;
    position: relative;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a:before {
    color: #2275b7;
    margin-right: 5px;
    font-size: 18px;
    position: relative;
    top: -1px;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a .link {
    position: relative;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a .link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    background: #2275b7;
    height: 1px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a:hover .link:after {
    left: 0;
    right: 0;
}
.reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter .filter-link-count {
    color: #222;
    display: initial;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: 20px;
}
.reference-blog.hs-blog-post .post-body h2 {
    color: #444;
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	margin: 20px 0 30px;
	padding-bottom: 10px;
    position: relative;
    text-align: center;
	text-transform: uppercase;
}
.reference-blog.hs-blog-post .post-body h2:after {
    position: absolute;
    width: 40px;
    border-bottom: 3px solid #2275b7;
    margin: auto;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
}
.reference-blog.hs-blog-post .post-body .caption {
    color: #222;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: 21px;
    margin-top: 19px;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a,
    .reference-blog.hs-blog-post .post-body .caption {
        line-height: normal;
    }
    .reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li a:before {
        top: 0;
    }
}

/* =============== Library Blog Styles =============== */
ul.library-blogs {
    display: block;
    list-style-type: none;
    margin: 0 -10px;
    padding: 0;
}
ul.library-blogs li {
    border: 0 none;
    margin-bottom: 10px;
    float: left;
    width: 50%;
    padding: 10px 0;
}
ul.library-blogs li:nth-child(2n) {
    padding-left: 30px;
}
ul.library-blogs li:nth-child(2n+1) {
    padding-right: 30px;
}
ul.library-blogs li a {
    background: #fff;
    border: 2px solid #CCC;
    border-radius: 5px;
    color: #2275b7;
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;;
}
ul.library-blogs li i {
    color: #2275b7;
    margin-right: 5px;
    font-size: 18px;
}
ul.library-blogs li a:hover {
    border-color: #2275b7;
}
.library-blog .body-container {
    background: #f5f5f5;
    padding: 60px 0 120px;
}
.library-blog .body-container .row-fluid .page-center {
    padding: 0;
}
.library-blog .hs-breadcrumb-menu-wrapper {
    display: table;
    margin: 0 0 25px;
    table-layout: fixed;
    width: 100%;
}
.library-blog .hs-breadcrumb-menu-wrapper ul.hs-breadcrumb-menu {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.library-blog .hs-breadcrumb-menu-wrapper ul.hs-breadcrumb-menu li.hs-breadcrumb-menu-item {
    color: #888;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    line-height: normal;
    margin: 0;
    padding: 0;
}
.library-blog .hs-breadcrumb-menu-wrapper ul.hs-breadcrumb-menu li.hs-breadcrumb-menu-item a {
    color: #2275b7;
}
.library-blog .hs-breadcrumb-menu-wrapper ul.hs-breadcrumb-menu li.hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider:before {
    content: " > ";
    color: #222;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    font-weight: 400;
    padding: 0 0.28125em 0 0;
}
.library-blog.hs-blog-listing .row-fluid .blog-content,
.library-blog.hs-blog-listing.tag-page .row-fluid .custom_listing-categories,
.library-blog.hs-blog-post .row-fluid .custom_listing-categories {
    display: none;
}
.library-blog.hs-blog-listing.tag-page .row-fluid .blog-content {
    display: block;
}
.library-blog .post-bottom {
    border-top: 1px solid #DDD;
    display: table;
    margin: 0 auto;
    padding: 20px 10px 39px;
    position: relative;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}
.library-blog .post-bottom a.back {
    background-color: transparent;
    border: 2px solid #888;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 auto;
    padding: 12px 30px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.library-blog .post-bottom a.back:hover {
    background-color: #2275b7;
    border-color: #2275b7;
    color: #fff;
}
.library-blog .post-bottom a.quote,
.library-blog .post-bottom a.contact {
    border: 2px solid transparent;
	border-radius: 4px;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 18px;
	font-weight: 700;
	line-height: 50px;
	margin: 5px;
	padding: 0 30px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.library-blog .post-bottom a.quote {
    border-color: #2275b7;
    color: #2275b7;
}
.library-blog .post-bottom a.contact {
    border-color: #2275b6;
    color: #2275b6;
}
.library-blog .post-bottom a.quote:hover {
    background: #2275b7;
    color: #fff;
}
.library-blog .post-bottom a.contact:hover {
    background: #2275b6;
    color: #fff;
}
.library-blog .post-header h1 {
    margin-bottom: 30px;
    text-align: center;
}
.library-blog .post-header h1:after {
    margin: auto;
}
.library-blog.tag-page .body-container {
    background: #fff;
    padding: 60px 0 39px;
}
.library-blog.tag-page .body-container .row-fluid .page-center {
    padding: 0 10px;
}
.library-blog.tag-page .body-container .post-listing ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.library-blog.tag-page .body-container .post-listing ul li {
    line-height: 20px;
    padding: 10px 0;
}
.library-blog.tag-page .body-container .post-listing ul li i {
    color: #2275b7;
    margin-right: 5px;
    font-size: 18px;
}
.library-blog.tag-page .body-container .post-listing ul li a {
    color: #2275b7;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 20px;
    line-height: 24px;
    position: relative;
}
.library-blog.tag-page .body-container .post-listing ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    background: #2275b7;
    height: 1px;
    -webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
.library-blog.tag-page .body-container .post-listing ul li a:hover:after {
    left: 0;
    right: 0;
}
.library-blog.tag-page .post-bottom {
    margin-top: 30px;
    padding: 40px 10px 0;
    text-align: left;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li {
    border: 0 none !important;
    margin-bottom: 10px;
    float: left;
    width: 50%;
    padding: 10px 0;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li:nth-child(2n) {
    padding-left: 30px;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li:nth-child(2n+1) {
    padding-right: 30px;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a {
    background: #fff;
    border: 2px solid #CCC;
    border-radius: 5px;
    color: #2275b7;
    display: block;
    /* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    padding: 30px 30px 30px 57px;
    position: relative;
    -webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a:before {
    content: "\f07b";
    color: #2275b7;
    margin-right: 5px;
    font-size: 18px;
    top: 34px;
    left: 30px;
}
.library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a:hover {
    border-color: #2275b7;
}
.library-blog.hs-blog-post .body-container {
    background: #fff;
    padding: 30px 0 50px;
}
.library-blog.hs-blog-post .body-container .row-fluid .page-center {
    padding: 0 10px;
}
.library-blog.hs-blog-post .hs-breadcrumb-menu-wrapper {
    margin: 0 0 5px;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .library-blog .post-bottom a.contact {
        margin-left: 10px;
    }
}


/* Other Blog Styles */
#hubspot-author_data .hs-author-avatar {
	margin-top: 10px;
}
#hubspot-author_data .hs-author-social-section {
	margin-top: 22px;
}
#hubspot-author_data:after {
	content: '';
	display: block;
	clear: both;
}
#hubspot-author_data .hs-author-avatar img {
	width: 50px;
	float: left;
	margin-right: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
	border-width: 0;
	border-radius: 5px;
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: 240px;
	display: block !important;
	float: none;
	margin: 10px 0 0;
}
.hs-blog-social-share {
	padding: 10px 0 0 0;
	height: auto;
}
.comment {
	margin: 10px 0;
	border-top: 1px solid #ccc;
	padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

.hs-blog-post #comment-form form ul.inputs-list li.hs-form-booleancheckbox label.hs-form-booleancheckbox-display > span {
	position: relative;
    top: -1px;
    left: 2px;
    font-size: 15px;
}
.hs-blog-post #comment-form form .actions {
    text-align: left;
}
.hs-blog-post #comment-form form .hs-button {
	margin-bottom: 50px;
}

/* =============== Blog Sidebar =============== */
.row-fluid .blog-sidebar.span3 {
    float: right;
    margin: 0;
    width: 25%;
}
.body-container .hs_cos_wrapper_type_post_listing ul,
.body-container .hs_cos_wrapper_type_post_filter ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.body-container .hs_cos_wrapper_type_post_listing ul li,
.body-container .hs_cos_wrapper_type_post_filter ul li {
	border-top: 1px solid #DDD;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin: 0 auto;
	padding: 15px 10px;
	position: relative;
}
.body-container .hs_cos_wrapper_type_post_listing ul li:last-child,
.body-container .hs_cos_wrapper_type_post_filter ul li:last-child {
    border-bottom: 1px solid #DDD;
}
.body-container .hs_cos_wrapper_type_post_listing ul li a,
.body-container .hs_cos_wrapper_type_post_filter ul li a {
	color: #666;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin: 0 auto;
    padding-left: 15px;
	position: relative;
}
.body-container .hs_cos_wrapper_type_post_filter ul li.active-tag > a {
    color: #2275b7;
}
.body-container .hs_cos_wrapper_type_post_listing ul li a:before,
.body-container .hs_cos_wrapper_type_post_filter ul li a:before {
    content: '\f0da';
	font-family: FontAwesome;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    left: 0;
    top: 1px;
}
.filter-link-count {
    display: none;
}

/* =============== Blog Author Page and Author Bio =============== */
.hs-blog-listing .hs-author-profile {
	border-bottom: 1px solid #ccc;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
}
.hs-blog-post .hs-author-profile {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 20px 0 20px 0;
	margin: 20px 0 20px 0;
}
.hs-author-profile .hs-author-profile:after {
	content: '';
	display: block;
	clear: both;
}
.hs-author-profile .hs-author-avatar {
	float: left;
	margin-right: 15px;
	max-width: 100px;
}
.hs-author-profile .hs-author-avatar img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	max-width: 100%;
}
.hs-author-profile .hs-author-bio {
	overflow: hidden;
	padding-top: 15px;
}
.hs-author-profile h2.hs-author-name {
	margin: 0 0 10px 0;
}
.hs-author-profile .hs-author-social-section {
    margin: 15px 0 0;
}


/* ==========================================================================
   6. FORMS
   ========================================================================== */


/* =============== Global Form Styles =============== */

/* Form Field */
.hs-form-field {
    margin-bottom: 15px;
}

/* Descriptions */
.hs-field-desc {}

/* Form Title */
h3.form-title {}

/* Labels and Legends */
.hs-form-field > label,
.body-container .widget-type-google_search label {
    color: #222;
    display: inline-block;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
	font-weight: 700;
	line-height: 20px;
    margin-bottom: 5px;
}
.hs-form-required {
	color: #ee0000;
	margin-left: 3px;
}

/* One Line Inputs */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="file"],
textarea,
select {
    background-color: #fff;
	border: none;
	border-bottom: 1px solid #DDD;
	border-radius: 2px;
	color: #888;
	display: block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 24px;
	font-weight: 700;
	line-height: 37px;
	min-height: 50px;
	padding: 6px 12px;
	width: 100%;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {}

/* Separate Styles for Multiple Line Inputs */
textarea {
    min-height: 120px;
}
textarea:focus {}

/* Separate Styles for Drop Downs */
select {}
select:focus {}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  padding: 0;
}
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}

/* Required */
input:focus:required:invalid,
textarea:focus:required:invalid,
select:focus:required:invalid {}

input:focus:required:invalid:focus,
textarea:focus:required:invalid:focus,
select:focus:required:invalid:focus {}

/* Error */
form .hs-input.error,
form .hs-input.invalid {
	background-color: #F2DEDE;
}
form .hs-input.error:hover,
form .hs-input.invalid:hover {
	border-color: #dd4b39;
}
form .hs-input.error:focus,
form .hs-input.invalid:focus {
	border-color: #843534;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
}
form ul.hs-error-msgs {
    line-height: 19px;
    padding: 4px 0 0 !important;
}
form ul.hs-error-msgs li label {
    color: #a94442;
    margin: 0;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    line-height: 20px;
}
form .hs_error_rollup {
    margin: -15px 0 15px;
}

/* Placeholder Text */
::-webkit-input-placeholder {}
:-moz-placeholder {}
::-moz-placeholder {}
:-ms-input-placeholder {}


/* =============== Multi Column Form =============== */

.hs-form fieldset.form-columns-1 {}
.hs-form fieldset.form-columns-1 .hs-form-field {}
.hs-form fieldset.form-columns-2 {}
.hs-form fieldset.form-columns-2 .hs-form-field {}
.hs-form fieldset.form-columns-3 {}
.hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}
form.hs-form fieldset { max-width: none; }
form.hs-form fieldset .hs-form-field { padding: 0 10px 0 0; }
form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 400px) {
	form.hs-form fieldset .hs-form-field { padding: 0; }
	form.hs-form fieldset.form-columns-3 .hs-form-field,
	form.hs-form .form-columns-2 .hs-form-field .hs-input,
	form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100%; }
	form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}


/* =============== Blog Comment Form =============== */

/* Label */
#comment-form .hs-form-field > label {}
#comment-form label {}

/* Inputs */
#comment-form input[type="text"] {}
#comment-form input[type="text"]:focus {}

#comment-form textarea {}
#comment-form textarea:focus {}

#comment-form input[type="checkbox"] {}


/* =============== Blog Subscription Form =============== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field > label {}
#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"] {}
#hs_form_target_blog_subscription input[type="email"]:focus {}
#hs_form_target_blog_subscription input[type="radio"], #hs_form_target_blog_subscription input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
}

/* =============== Google Search Form =============== */

/* Label */
.widget-type-google_search label {}

/* Input */
.widget-type-google_search form .hs-input {
    margin-bottom: 15px;
}


/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.body-container form .actions,
.body-container .hs_cos_wrapper_type_google_search form > .field > .input {
    text-align: center;
}

/* =============== All Global Buttons (Excluding CTAs) =============== */

.hs-button.primary,
input[type="submit"],
input[type="button"] {
	cursor: pointer;
	-webkit-appearance: none;
	text-decoration: none !important;
	background: #2275b7;
	border: none;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	/* font-family: 'Futura PT wf', Helvetica, Arial, sans-serif; */
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	min-height: 59px;
	min-width: 180px;
	padding: 15px 20px;
	text-align: center;
	white-space: normal;
	width: auto;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;;
}
@-moz-document url-prefix() {
    .hs_submit .hs-button.primary.large {
        line-height: 27px;
    }
}
.hs-button.primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #2d8bd7;
}

.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {}


/* =============== Form Module Button =============== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}
.hs_cos_wrapper_type_form .hs-button.primary.large:hover {}
.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}


/* =============== Blog Comment Button =============== */

#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}


/* =============== Blog Subscription Button =============== */

#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* =============== Google Search Button =============== */

.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}


/* ==========================================================================
   8. MISCELLANEOUS
   ========================================================================== */
.fancybox-close {
    background: none;
    top: -41px;
    right: 0;
}
.fancybox-close:before {
    content: '\f00d';
    position: absolute;
    left: 0;
    top: 3px;
    font-family: FontAwesome;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: #fff;
}


/* System Pages
   ========================================================================== */

/* Error Templates 404, 500 */
body.error-template.one-column {}
body.error-template.one-column .content-wrapper {}
body.error-template.one-column .main-content {}

/* Password template */
body.password-template.one-column {}
body.password-template.one-column .content-wrapper {}
body.password-template.one-column .main-content {}

/* Email Subscribition templates */
body.subscription-template.one-column {}
body.subscription-template.one-column .content-wrapper {}
body.subscription-template.one-column .main-content {}


.error-template,
.password-template,
.subscription-template {}

.error-template .body-container form .actions,
.error-template .body-container .hs_cos_wrapper_type_google_search form > .field > .input,
.password-template .body-container form .actions,
.password-template .body-container .hs_cos_wrapper_type_google_search form > .field > .input,
.subscription-template .body-container form .actions,
.subscription-template .body-container .hs_cos_wrapper_type_google_search form > .field > .input {
    text-align: left;
}

.password-template .hs-button {
    margin-top: 15px;
}

.subscription-template .checkbox-row input {
	position: relative;
	top: 10px;
}


/* ==========================================================================
   9. MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1800px) {
    .custom_banner-parallax {
        height: 108.013172vh;
    }
}

@media (min-width: 1201px) and (max-width: 1366px) {
    .custom_banner-parallax {
        height: 51.683748vw;
    }
}

@media (max-width: 1200px) {
    .row-fluid .custom_footer {
        padding: 23px 20px 20px;
    }
    .custom_banner-parallax {
        height: 51.75vw;
    }
    .custom_support-page .custom_text-container {
        width: 96%;
    }
}

@media (max-width: 1024px) {
    .custom_banner-parallax {
        height: 580px;
    }
}

@media (max-width: 1023px) {
    .row-fluid .custom_header {
        background: #333;
        position: relative;
    }
    .row-fluid .custom_header-top {
        padding: 0;
    }
    .row-fluid .custom_header:after,
    .row-fluid .custom_header-top:after,
    .row-fluid .custom_top-menu,
    .row-fluid .custom_header-phone {
        display: none;
    }
    .row-fluid .custom_header-search {
        position: absolute;
        top: 10px;
        right: 135px;
        padding: 0;
    }
    .custom_logo .logo-inner {
        padding-top: 9px;
    }
    .row-fluid .custom_logo a {
        position: relative;
        z-index: 9999;
    }
    .custom_logo img {
        height: 80px;
    }
    .row-fluid .custom_header-right,
    .row-fluid .custom_login-button,
    .row-fluid .custom-menu-primary {
        float: none;
        width: 100%;
    }
    .row-fluid .custom-menu-primary {
        padding-top: 49px;
        position: relative;
    }
    .custom_login-button a {
        padding: 3px 15px;
        position: absolute;
        top: 45px;
        right: 45px;
        z-index: 999;
    }
    .custom_header-lang .switcher {
        position: absolute;
        top: 10px;
        left: 5px;
    }
    .custom_header-lang .switcher > .selected a {
        top: 0;
        left: 5px;
    }
    .custom_top-pane {
        margin-top: 0;
    }
    .custom_banner-parallax {
        top: 0;
    }
    .custom_banner-parallax .banner-content .button {
        margin-bottom: 0;
    }
    .custom_home-page .row-fluid .custom_section.one {
        padding-top: 30px;
    }
    .custom_home-page .custom_section.two .main-content.middle .row-fluid .column {
    	margin: 10px auto;
    	width: 33.3%;
    }
    .custom_solution-box {
    	padding: 30px 10px;
    }
    .custom_solutions-page .custom_section.one .custom_solutions-container .custom_solution-box {
        padding: 30px 60px;
    }
    .custom_solution-box p,
    .custom_solution-box > i {
    	display: none;
    }
    img.aligncenter {
        margin-bottom: 20px;
    }
    img.alignright {
    	display: block;
        float: none;
        margin: 0 auto 20px;
    }
    .custom_whitepaper-presentation img.alignright {
        display: inline;
        float: right;
        margin: 0 0 0 1.5em;
    }
}

@media (max-width: 991px) {
    /* .custom_testimonials-section ul#testimonial-slider {
        margin: 0 auto;
        max-width: 75%;
    } */

    .row-fluid .blog-content,
    .row-fluid .blog-content.span9,
    .row-fluid .blog-sidebar,
    .row-fluid .blog-sidebar.span3 {
        float: none;
        width: 100%;
    }
    .row-fluid .blog-sidebar,
    .row-fluid .blog-sidebar.span3 {
        margin-top: 20px;
    }
    .hs-blog-post .post-banner-image {
        display: block;
        float: none;
        margin: 30px auto 0;
        max-width: 360px;
        padding: 0 10px;
        text-align: center;
    }
    .hs-blog-post .post-inner {
        padding: 10px;
    }
    .post-header h1 {
        text-align: center;
    }
    .post-header h1:after {
        margin: 0 auto;
    }
    .hs-blog-post .post-bottom {
        padding: 20px 20px 49px;
    }
    .library-blog.hs-blog-post .post-bottom {
        padding-bottom: 39px;
    }
    ul.library-blogs li,
    ul.library-blogs li:nth-child(2n),
    ul.library-blogs li:nth-child(2n+1) {
        display: block;
        float: none;
        margin: 0 auto;
        padding: 10px;
        width: 100%;
    }
    ul.library-blogs li a {
        padding: 15px 20px;
    }
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li,
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li:nth-child(2n),
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li:nth-child(2n+1) {
        display: block;
        float: none;
        margin: 0 auto;
        padding: 10px;
        width: 100%;
    }
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a {
        padding: 15px 20px 15px 47px;
    }
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a:before {
        top: 20px;
        left: 20px;
    }
    .library-blog .hs-breadcrumb-menu-wrapper {
        padding: 0 10px;
    }
    .library-blog.tag-page .hs-breadcrumb-menu-wrapper,
    .library-blog.hs-blog-post .hs-breadcrumb-menu-wrapper {
        padding: 0;
    }
    .reference-blog .custom_listing-categories .hs_cos_wrapper_type_post_filter ul li {
        float: none;
        margin-bottom: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .custom_testimonials-section ul#testimonial-slider li .testimonial-content {
        margin: 0 auto;
        padding: 0 1em;
    }

    .custom_solutions-page .custom_section .custom_solutions-container {
        text-align: center;
    }
    .custom_solutions-page .custom_section.one .custom_solutions-container .custom_solution-box,
    .custom_solutions-page .custom_section.two .custom_solutions-container .custom_solution-box {
        display: inline-block;
        float: none;
        vertical-align: top;
        width: 300px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 35px;
        line-height: normal;
    }
    h2 {
        font-size: 30px;
        line-height: normal;
    }
    h3 {
        font-size: 25px;
        line-height: normal;
    }
    h4 {
        font-size: 20px;
        line-height: normal;
    }

    /* .custom_testimonials-section .main-content.bottom {
        margin: 0 auto;
        width: 75%;
    } */

    .row-fluid .custom_top-pane .page-center {
        height: 300px;
        padding-top: 0;
    }
    .custom_top-pane .top-pane-content h1 {
    	font-size: 35px;
    	line-height: 42px;
    }
    .custom_top-pane .top-pane-content h3,
    .case-studies-blog .custom_top-pane .top-pane-content h3 {
    	font-size: 25px;
    	line-height: 30px;
    }
    .body-container .hs-menu-flow-vertical.flyouts > ul ul {
    	background-color: transparent;
    	box-shadow: none;
    	padding: 5px 0;
    	width: 100%;
    }
    .body-container .hs-menu-flow-vertical.flyouts > ul ul li a {
    	color: #222;
    	font-size: 15px;
    	line-height: 20px;
    	padding: 5px 10px 5px 25px;
    	text-decoration: none;
    	white-space: normal !important;
    }
    .body-container .hs-menu-flow-vertical.flyouts > ul ul li.active > a,
    .body-container .hs-menu-flow-vertical.flyouts > ul ul li.active-branch > a,
    .body-container .hs-menu-flow-vertical.flyouts > ul ul li:hover > a {
    	color: #2275b7;
    }
    .body-container .hs-menu-flow-vertical.flyouts > ul ul ul {
        margin-top: 0;
    }
	.body-container .hs-menu-flow-vertical.flyouts > ul ul ul li a {
		padding-left: 40px;
	}
	.body-container .hs-menu-flow-vertical.flyouts > ul ul ul ul li a {
		padding-left: 50px;
	}
	.post-listing .post-item .post-left {
        display: none;
    }
    .post-listing .post-item .post-right,
    .case-studies-blog .post-listing .post-item .post-right,
    .videos-blog .post-listing .post-item .post-right {
        padding: 10px;
    }
    .post-header h2,
    .post-listing-simple h2 {
        font-size: 18px;
    }
    .post-listing .post-item .post-body p {
        font-size: 17px;
        line-height: 25px;
    }
    .hs-blog-post .post-bottom {
        text-align: center;
    }
    .case-studies-blog.hs-blog-post .post-bottom {
        text-align: left;
    }
    .hs-blog-post .post-bottom ul.social-list {
        display: block;
        text-align: center;
        float: none;
        width: 100%;
        padding: 15px 0 0;
    }
    .hs-blog-post .post-body img {
        height: auto !important;
    }
	.row-fluid .custom_footer {
        padding: 23px 0 20px;
    }
	.row-fluid .custom_copyright,
	.row-fluid .custom_footer-socials {
	    float: none;
	    width: 100%;
	}
	.row-fluid .custom_copyright,
	.custom_footer-socials ul {
	    text-align: center;
	}
	.custom_footer-socials ul {
	    padding: 3px 0 5px;
	}
	.custom_banner-parallax .banner-content h1 {
	    font-size: 25px;
	}
	.custom_home-page .custom_section.two .main-content.top .hs_cos_wrapper_type_header h1 {
	    margin-bottom: 10px;
	}
	.custom_home-page .custom_section.two .main-content.middle .row-fluid .column {
	    display: block;
	    float: none;
        width: 300px;
    }
    .custom_home-page .custom_section.two .main-content.bottom {
        padding: 20px 0;
    }
    .custom_home-page .custom_section.five .row-fluid .main-content {
        float: none;
        width: 100%;
    }
    .custom_home-page .custom_section.five .row-fluid .main-content.right .video-container {
        display: inline-block;
        margin-bottom: 25px;
    }
    .custom_solution-presentation .custom_content-section .button {
        margin-bottom: 22px;
    }
    .custom_tabs-container {
        margin: 0 0 20px;
        padding: 0 5px;
        width: 100%;
    }
    .custom_tabs-container ul.custom_tabs-list {
        display: none;
    }
    .custom_tabs-container .custom_tabs-wrap {
        border: 0 none;
        padding: 50px 0 0;
    }
    .custom_tabs-container .custom_tabs-wrap .custom_tab-module {
        display: block !important;
    }
    .custom_tabs-container .custom_tabs-wrap .custom_tab-module .tab-inner {
        padding: 0;
    }
    .custom_tabs-container .custom_tab-module .tab-title {
        background-color: #f8f8f8;
        border: 1px solid #f0f0f0;
        border-radius: 5px;
        display: block;
        margin-bottom: 1px;
        -webkit-transition: background .2s ease-in-out;
	-moz-transition: background .2s ease-in-out;
	-ms-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;;
    }
    .custom_tabs-container .custom_tab-module.active .tab-title {
        border-radius: 5px 5px 0 0;
    }
    .custom_tabs-container .custom_tab-module .tab-title h3 {
        color: #666;
        font-size: 20px;
        line-height: 1;
        margin: 0;
        padding: 14px 20px;
    }
    .custom_tabs-container .custom_tab-module .tab-content {
        background-color: #f8f8f8;
        border: 1px solid #f0f0f0;
        border-radius: 0 0 5px 5px;
        display: none;
        margin-bottom: 1px;
        padding: 15px 20px;
    }
    .custom_tabs-container .custom_tab-module:first-child .tab-content {
        display: block;
    }
    .grey-box .button {
        margin-bottom: 0 !important;
    }
    .custom_tabs-container .custom_tab-module .tab-content table {
        width: 100% !important;
    }
    .custom_tabs-container .custom_tab-module .tab-content table td {
        width: auto !important;
    }
    .video-center {
        padding: 56.25% 20px 0;
    }
    .video-center iframe,
    .video-center object,
    .video-center embed {
        left: 0;
        height: 100%;
        width: 100%;
        -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
	-o-transform: none;
    transform: none;;
    }
    .custom_download-page .custom_content-section .row-fluid .hs_cos_wrapper_type_form {
        padding: 20px 10px;
    }
    .custom_whitepaper-presentation img.alignleft,
    .custom_whitepaper-presentation img.alignright {
        display: block;
        float: none;
        margin: 0 auto;
    }
    .two-column .body-container {
        padding: 30px 10px;
    }
    .two-column .body-container .row-fluid .page-center {
        padding: 20px 5px;
    }
    .two-column .body-container .row-fluid .main-content {
        margin-bottom: 60px;
        padding: 20px 10px;
    }
    .two-column .body-container .row-fluid .main-content.span8,
    .two-column .body-container .row-fluid .sidebar.right.span4,
    .two-column .body-container .row-fluid .main-content,
    .two-column .body-container .row-fluid .sidebar.right {
        width: 100%;
    }
    .two-column .main-content form .hs-button {
        bottom: -46px;
        margin: 0 0 0 -8px;
    }
    .two-column .body-container .row-fluid .sidebar.right {
        padding-bottom: 10px;
    }
    .two-column .body-container .row-fluid .sidebar.right,
    .two-column .sidebar.right .row-fluid .hs_cos_wrapper_type_header h1 {
        text-align: center;
    }
    .two-column .sidebar.right .row-fluid .hs_cos_wrapper_type_header h1:after {
        margin: 0 auto;
    }
    .custom_partners-page .custom_section.one .row-fluid .hs_cos_wrapper_type_form form {
        margin-bottom: 35px;
        padding: 20px 10px;
    }
    .custom_partners-page .custom_section.one form fieldset.form-columns-2 .hs-form-field,
    .custom_partners-page .custom_section.one form fieldset.form-columns-3 .hs-form-field {
    	float: none;
    	padding: 0;
        width: 100%;
    }
    .custom_partners-page .custom_section.one form .hs-button {
        margin: 0 0 24px -15px;
        position: static;
        -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
	-o-transform: none;
    transform: none;;
    }
    .custom_whitepaper-box {
        padding: 20px 10px;
    }
    .custom_whitepaper-box > .whitepaper-icon,
    .custom_download-box > .download-icon {
        display: block;
        float: none;
        margin: 0 auto;
    }
    .custom_whitepaper-box > .whitepaper-content,
    .custom_download-box > .download-content {
        padding-left: 0;
        text-align: center;
    }
    .custom_support-page .custom_text-container > .hs_cos_wrapper_type_rich_text {
        padding: 20px;
    }
    ul.library-blogs li a,
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a {
        font-size: 18px;
    }
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a {
        padding-left: 46px;
    }
    .library-blog .body-container .hs_cos_wrapper_type_post_filter ul li a:before {
        top: 16px;
    }
    .reference-video {
        position: relative;
        padding-top: 56.25%;
        height: 0;
        overflow: hidden;
        width: 100%;
    }
    .reference-video iframe,
    .reference-video object,
    .reference-video embed {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .reference-blog.tag-page .post-bottom {
        text-align: center;
    }
    .reference-blog ul.blog-pagination {
        float: none;
        margin-top: 25px;
        top: 0;
    }
    .reference-blog ul.blog-pagination li a {
        padding: 4px 5px;
        width: 25px;
    }
}

@media (max-width: 567px) {
    .custom_testimonials-section ul#testimonial-slider {

    }

    .custom_whitepaper-presentation .custom_content-section .main-content.top {
        text-align: justify;
    }
}

@media (max-width: 516px) {
    .custom_testimonials-section ul#testimonial-slider li .testimonial-content {
        width: 100vw;
    }
}

@media (max-width: 480px) {
	.hs-author-profile .hs-author-avatar {
		margin: 15px 0;
		float: none;
	}
	.hs-author-profile .hs-author-bio {
		padding-top: 0;
	}
}

@media (max-width: 479px) {
    .custom_whitepaper-presentation .custom_content-section table td {
        padding: 10px;
    }
    .custom_whitepaper-presentation .custom_content-section table.features-table th {
        width: 50% !important;
    }
    .custom_whitepaper-presentation .custom_content-section table.features-table td {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .row-fluid .custom_header-search {
        top: 103px;
        left: 0;
        right: 0;
        width: 100%;
    }
    .custom_header-search form {
        max-width: 100%;
    }
    .custom_header-search form .hs-input {
        border: solid 1px #fff;
        line-height: 35px;
        padding: 0 10px;
        width: 100%;
        background: #fff;
        color: #333;
    }
}