/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

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

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

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

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

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

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

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

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

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

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  border-style: none;
}

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

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

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

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
    src: url('//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/Answer4u_January2021/Fonts/FontAwesome.eot') format("embedded-opentype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/fontawesome-webfont.woff2) format("woff2"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome.woff) format("woff"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome.ttf) format("truetype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome.svg) format("svg");
}

@font-face {
  font-family: "Font Awesome\ 5 Brands";
  font-style: normal;
  font-weight: 400;
  src: url('//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/Answer4u_January2021/Fonts/FontAwesome5Brands-Regular.eot') format("embedded-opentype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/fa-brands-400.woff2) format("woff2"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Brands-Regular.woff) format("woff"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Brands-Regular.ttf) format("truetype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Brands-Regular.svg) format("svg");
}

@font-face {
  font-family: "Font Awesome\ 5 Free";
  font-style: normal;
  font-weight: 400;
  src: url('//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/Answer4u_January2021/Fonts/FontAwesome5Free-Regular.eot') format("embedded-opentype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/fa-regular-400.woff2) format("woff2"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Regular.woff) format("woff"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Regular.ttf) format("truetype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Regular.svg) format("svg");
}

@font-face {
  font-family: "Font Awesome\ 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url('//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/Answer4u_January2021/Fonts/FontAwesome5Free-Solid.eot') format("embedded-opentype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/fa-solid-900.woff2) format("woff2"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Solid.woff) format("woff"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Solid.ttf) format("truetype"),
    url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/fonts/FontAwesome5Free-Solid.svg) format("svg");
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/71f83c/00000000000000003b9b093b/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),
    url("//use.typekit.net/af/71f83c/00000000000000003b9b093b/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),
    url("//use.typekit.net/af/71f83c/00000000000000003b9b093b/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/86b539/00000000000000003b9b093a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"),
    url("//use.typekit.net/af/86b539/00000000000000003b9b093a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"),
    url("//use.typekit.net/af/86b539/00000000000000003b9b093a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
  font-style: italic;
  font-weight: 700;
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/4838bd/00000000000000003b9b0934/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
    url("//use.typekit.net/af/4838bd/00000000000000003b9b0934/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),
    url("//use.typekit.net/af/4838bd/00000000000000003b9b0934/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/6aec08/00000000000000003b9b0935/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),
    url("//use.typekit.net/af/6aec08/00000000000000003b9b0935/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),
    url("//use.typekit.net/af/6aec08/00000000000000003b9b0935/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/437c3d/00000000000000003b9b0932/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"),
    url("//use.typekit.net/af/437c3d/00000000000000003b9b0932/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"),
    url("//use.typekit.net/af/437c3d/00000000000000003b9b0932/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "proxima-nova";
  src: url("//use.typekit.net/af/f02b29/00000000000000003b9b0933/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("woff2"),
    url("//use.typekit.net/af/f02b29/00000000000000003b9b0933/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("woff"),
    url("//use.typekit.net/af/f02b29/00000000000000003b9b0933/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("opentype");
  font-style: italic;
  font-weight: 300;
}

html {
  font-size: 16px;
}


body {
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  color: #272432;
  line-height: 1.5;
  letter-spacing: .25px;
  background-color: #fff;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Anchor Links */
a {
  color: #e84138;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a:hover, a:focus {
  outline: 0;
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: proxima-nova, sans-serif;
  color: #272432;
  word-break: break-word;
}

h1 {
  font-size: 2.125rem;
}

h2 {
  font-size: 2.125rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 1rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 500px;
}

.hs-button {
  display: inline-block;
  width: auto;
  margin: 10px 0;
  cursor: pointer;
  background: #e84138;
  border: 0px solid;
  color: #fff;
  padding: .375rem 5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  font-weight: 400;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  min-height: calc(2.25rem + 2px);
  font-family: proxima-nova,sans-serif;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.hs-button:hover {
  background-color: #c01910;
  border-color: #c01910;
  color: #fff;
  text-decoration: none;
}

.hs-button:focus {
  background-color: #c01910;
  border-color: #c01910;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
  box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
}

.hs-button:active {
  background-color: #ff6960;
  border-color: #ff6960;
}


.hs-form label {
  color: #33475b;
  display: block;
  margin-bottom: 4px;
}

.hs-error-msgs label,
.hs-form .hs-error-msgs label {
  display: block;
  margin-top: .5rem;
  color: #e84138;
}

.hs-input,
input[type="password"] {
  display: inline-block;
  width: 100% !important;
  min-height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: .25rem;
  font-family: proxima-nova,sans-serif;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

input[type="password"] {
  height: auto !important;
  margin: 0 !important;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto !important;
  height: auto;
  min-height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #6c757d;
}

.hs-input::-webkit-input-placeholder {
  color: #6c757d;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
  box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #000000;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #e84138;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

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

.hs-error-msgs {
  padding-left: 0;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 16px;
  color: #272432;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: proxima-nova, sans-serif;
}

@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

.hs_faq_page {}
.banner-area .dnd-section>.row-fluid {
  padding: 0;
}

.hs_faq_page .dnd-section .dnd-column {
  padding: 0;
}
.panel-title a.accordion-toggle:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/plus.svg);
}
.open .panel-title a.accordion-toggle:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/minus.svg);
}
.hs_faq_page .dnd-section[class*="full-width-section"] {
  padding: 17px 0 0;
}
.hs_faq_page .dnd-section[class*="full-width-section"]  > .row-fluid {
  padding: 0;
}
.hs_btn_wrap.is_active span.icon--plus:before {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/minus.svg);
}



.hs_has_padding .body-container-wrapper {
  /*   padding-top: 116px; */
}
.hs_answering_service_page {}

.hs_answering_service_r1 .dnd-section {
  padding-bottom: 0;
}
.hs_answering_service_r1 .span6.widget-span {
  padding: 0;
  width: 50%;
  margin-left: 30px;
}
.hs_answering_service_r1 .span6.widget-span:first-child {
  margin-left: 0;
  margin-top: -15px;
}
.hs_answering_service_r2 .dnd-section:first-child {
  padding-top: 15px;
}
.hs_answering_service_r2 .hs_cos_wrapper_type_rich_text h2 a {
  color: inherit;
}

.hs_answering_service_r2 .dnd-section[class*="full-width-section"] {
  padding-bottom: 0;
}
.hs_answering_service_r2 .dnd-section[class*="full-width-section"] > .row-fluid{
  padding: 0;
}
.hs_answering_service_r3 .span6.widget-span {
  padding: 0;
}
.hs_answering_service_r3 .widget-type-rich_text {
  margin-top: 16px;
}
.hs_answering_service_r4 .dnd-section {
  padding-top: 30px;
}
/* .hs_answering_service_r4 .dnd-section .row-fluid {
padding: 0;
} */


.hs_contactus_page {}

.hs_contactus_r2 .dnd-section {
  padding-top: 0;
}
.hs_contactus_r2 .dnd-section>.row-fluid {
  padding: 0;
}
.hs_contactus_r2 .dnd-section .span6.widget-span {
  padding: 0 15px;
  margin: 0;
  width: 50%;
}
.hs_contactus_r2 .dnd-section .widget-type-rich_text a {
  color: inherit;
}
.hs_contactus_r2 h3.form-title {
  display: none;
}
.hs_contactus_r2 form {
  max-width: 100%;
  position: relative;
  padding-top: 6px;
}
.hs_contactus_r2 form fieldset {
  max-width: 100%;
}
.hs_contactus_r2 form fieldset>.field {
  padding: 0 15px;
}
.hs_contactus_r2 form fieldset.form-columns-3>.field {
  width: 33.333%;
}
.hs_contactus_r2 form fieldset.form-columns-2>.field {
  width: 50%;
}
.hs_contactus_r2 form .field>label {
  display: none;
}
.hs_contactus_r2 form fieldset>.field>.input {
  margin: 0;
}
.hs_contactus_r2 form .field .hs-input {
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #000000;
  border-radius: .25rem;
}
.hs_contactus_r2 form .field textarea.hs-input {
  min-height: 206px;
}
.hs_contactus_r2 form .hs-richtext {
  text-align: center;
  line-height: 1.5;
  margin: -7px 0 0;
}
.hs_contactus_r2 form .hs-richtext p {
  font-size: 80%;
  font-weight: 400;
  color: #272432;
  letter-spacing: .25px;
}
.hs_contactus_r2 form .hs-richtext p a {
  color: inherit;
}
.hs_contactus_r2 form .hs-richtext p a:hover {
  color: #e84138;
}
.hs_contactus_r2 form .hs_submit.hs-submit {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hs_contactus_r2 form input.hs-button.primary.large {
  margin: 0 auto;
}
.hs_contactus_r3 .dnd-section {
  padding: 0;
}
.hs_contactus_r3 .dnd-section>.row-fluid {
  padding: 0;
}
.hs_contactus_r3 .hs-faq-grp .hs-faq-sec {
  background-color: #ee4035;
}



.hs_careers_page {}
.hs_careers_r1 .dnd-section {
  padding-bottom: 28px;
}
.hs_careers_r1 .dnd-section>.row-fluid {
  padding: 0;
}
.hs_careers_r1 .span8.widget-span {
  width: 66.66%;
  padding-left: 15px;
  margin-right: 15px;
  overflow: hidden;
  margin-top: -5px;
}
.hs_careers_r1 .span8.widget-span .widget-type-linked_image img {
  width: 100%;
  max-width: 730px !important;
  object-fit: cover;
  min-height: 495px;
}
.hs_careers_r1 .span4.widget-span {
  margin: 0;
  padding: 0;
  width: calc(33.34% - 30px);
}
.hs_careers_r2 .dnd-section {
  padding-bottom: 30px;
}
.hs_careers_r3 .dnd-section>.row-fluid .widget-type-cell,
.hs_careers_r2 .dnd-section>.row-fluid .widget-type-cell {
  padding: 0;
}
.hs_careers_r3 h3.form-title {
  display: none;
}
.hs_careers_r3 form {
  max-width: 100%;
  position: relative;
  padding-top: 16px;
  margin: 0 -10px;
  margin-right: 0;
  padding-right: 8px;
}
.hs_careers_r3 form fieldset {
  max-width: 100%;
  padding: 0 5px;
}
.hs_careers_r3 form fieldset>.field {
  padding: 0 5px;
  margin-bottom: 5px;
}
.hs_careers_r3 form fieldset.form-columns-3>.field {
  width: 33.333%;
}
.hs_careers_r3 form fieldset.form-columns-2>.field {
  width: 50%;
}
.hs_careers_r3 form .field>label {
  margin-bottom: 7px;
}
.hs_careers_r3 form fieldset>.field>.input {
  margin: 0;
}
.hs_careers_r3 form fieldset.form-columns-2>.field>.input,
.hs_careers_r3 form fieldset.form-columns-3>.field>.input {
  padding: 0 4px;
}
.hs_careers_r3 form .field .hs-input {
  padding: 5px;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  min-height: 1px;
}
.hs_careers_r3 form .field textarea.hs-input {
  max-height: 47px;
}
.hs_careers_r3 form .hs-richtext {}
.hs_careers_r3 form .hs-richtext p {
  line-height: 1.5;
}
.hs_careers_r3 form .hs-richtext p a {
  color: inherit;
}
.hs_careers_r3 form .hs-richtext p a:hover {
  color: #e84138;
}
.hs_careers_r3 form fieldset>.field>.input>ul.inputs-list.multi-container {
  margin: 0;
  padding: 3px 0 0 36px;
}
.hs_careers_r3 form fieldset>.field>.input label.hs-form-checkbox-display {
  font-family: proxima-nova,sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #272432;
  letter-spacing: .25px;
  margin-bottom: 0.7rem;
}
.hs_careers_r3 form fieldset>.field>.input label.hs-form-checkbox-display>input {
  min-width: 30px;
  margin-left: 1%;
  margin-right: 1%;
}
.hs_careers_r3 form .legal-consent-container {
  padding: 0 5px;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field {
  padding-left: 32px;
  margin-bottom: 22px;
  margin-top: -10px;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list {
  margin: 0;
  padding: 0;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list label {
  display: flex;
  align-items: center;
  font-family: proxima-nova,sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #272432;
  letter-spacing: .25px;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list label input {
  margin-left: 16px;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list label span {
  margin-left: 5px;
}
.hs_careers_r3 form .hs_submit.hs-submit {
  margin: 4.7rem 0 0;
}
.hs_careers_r3 form input.hs-button.primary.large {
  margin: 0 auto;
  border-radius: 2px;
  font-weight: 700;
  padding: 5px 10px;
  min-width: 200px;
  min-height: 36px;
}
.hs_careers_r3 form fieldset>.field.hs_skills_experience_and_qualifications {
  margin-top: 11px;
}

.hs_careers_r4 .dnd-section {
  padding-top: 30px;
  padding-bottom: 18px;
  color: #fff;
}
.hs_careers_r4 .dnd-section .widget-type-cell {
  padding: 0;
}
.hs_careers_r4 h5 {
  color: #fff;
  font-size: 1.75rem;
  line-height: 2.125rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hs_careers_r4 p:last-child {
  margin-bottom: 0;
}
.hs_careers_r4 a:hover,
.hs_careers_r4 a {
  color: #fff;
}



.hs_who_we_are_page .dnd-section>.row-fluid>.widget-type-cell,
.hs_who_we_are_r1 .dnd-section>.row-fluid {
  padding: 0;
}
.hs_who_we_are_r1 .hs-customerSupport-wrp .btn-cs a {
  background-color: #2fb088;
}
.hs_who_we_are_r1 .hs-customerSupport-wrp .btn-cs a:hover {
  background-color: #1a5f4a;
}



.hs_who_we_are_page .hs_contact_enquiry_wrap .hs_btn_wrap span.icon--plus:hover:before {
  color: #2fb088;
}
.hs_who_we_are_page .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large {
  background: #2fb088;
}
.hs_who_we_are_page .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large:hover {
  border-color: rgba(167,27,19,1.0);
  background-color: rgba(167,27,19,1.0);
}
.hs_who_we_are_r2 .client_logo_wrap {
  padding-top: 20px;
}
.hs_who_we_are_r2 .client_logo_wrap .title_wrap {
  padding-bottom: 0;
}
.hs_who_we_are_r2 .client_logo_wrap .client_logos {
  margin: 0;
}
.hs_who_we_are_r3 {
  padding-top: 20px;
}
.hs_who_we_are_r3 .dnd-section>.row-fluid {
  padding: 0;
}
.client_testimonials .panel-title a.accordion-toggle:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/plusb.svg);
}
.client_testimonials .open .panel-title a.accordion-toggle:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/minusb.svg);
}

.hs_who_we_are_page .contetWithimage-sec .dnd-section {
  padding-top: 100px;
}
.hs_who_we_are_page .contetWithimage-sec .span4.dnd-column {
  padding-top: 25px;
}


.hs_who_we_are_r5 .dnd-section {
  padding-top: 80px;
  padding-bottom: 78px;
}
.hs_who_we_are_r5 .dnd-section .dnd-column {
  padding: 0;
}
.hs_who_we_are_r5 h2 {
  font-size: 1.9rem;
}
.hs_who_we_are_r5 * {
  color: #fff;
}

.hs_who_we_are_r6 .dnd-section {
  padding-top: 0;
  padding-bottom: 0;
}
.hs_who_we_are_r6 .dnd-section>.row-fluid {
  padding :0;
}
.hs_who_we_are_r6 .hs-customerSupport-btn.cs-withSupport-img {
  margin-bottom: 0;
}
.hs_who_we_are_r7 .dnd-section {
  padding-top: 64px;
  padding-bottom: 0;
}
.hs_who_we_are_r7 .dnd-section>.row-fluid {
  padding: 0;
}


.hs_who_we_are_r8 .dnd-section {
  padding-bottom: 0;
}
.hs_who_we_are_r8 .widget-type-rich_text * {
  color: #fff;
}
.hs_who_we_are_r8 .dnd-section .span4.widget-span {
  background: #daece3;
  border: 2px solid #2fb088;
  border-radius: 10px;
  height: 100%;
  padding: 1.375rem 2rem 1.375rem 2rem;
  color: #272432;
  margin-bottom: 2rem;
  width: 33.33%;
  margin-right: 30px;
  margin-left: 0;
}
.hs_who_we_are_r8 .dnd-section .span4.widget-span:last-child {
  margin-right: 0;
}
.hs_who_we_are_r8 .dnd-section .span4.widget-span * {
  color: #272432;
}
.hs_who_we_are_r8 .dnd-section .span4.widget-span p {
  margin-bottom: 0;
}
.hs_who_we_are_r8 .dnd-section:last-child {
  padding-bottom: 64px;
}

.hs_who_we_are_r9 .dnd-section {
  padding-bottom: 60px;
  padding-top: 73px;
}
.hs_who_we_are_r9 .dnd-section .span4.widget-span {
  padding-top: 14px;
}
.hs_who_we_are_r10 .dnd-section {
  padding: 30px 0 0;
}
.hs_who_we_are_r10 .dnd-section>.row-fluid {
  padding: 0;
}
.hs_who_we_are_r11 .dnd-section {
  background-color: #272432;
  color: #fff;
  padding: 21px 0 0;
}
.hs_2col_left .dnd-section h3 {
  color: #2fb088;
  font-size: 2.125rem;
}
.hs_2col_left .dnd-section .span3.widget-span {
  max-width: 150px;
}
.hs_2col_left .dnd-section .span9.widget-span {
  margin-left: 1rem;
  width: calc(100% - 150px);
}
.hs_2col_left .dnd-section .span9 p {
  font-size: 1.25rem;
  font-weight: 300;
}
.hs_2col_left .dnd-section:last-child {
  padding-top: 30px;
  padding-bottom: 35px;
}
.hs_2col_left .dnd-section:last-child p {
  font-size: 1rem;
}
.hs_2col_left .dnd-section ul {
  padding: 0;
  list-style: none;
}
.hs_2col_left .dnd-section ul li {
  padding-left: 1.3em;
  padding-bottom: .5rem;
}
.hs_2col_left .dnd-section ul li:before {
  color: #2fb088;
  content: "\f058";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}
.hs_who_we_are_r12.hs_2col_left .dnd-section {
  padding-top: 38px;
  padding-bottom: 0;
}
.hs_who_we_are_r13 .dnd-section {
  padding-top: 40px;
  padding-bottom: 0;
}
.hs_who_we_are_r13 .dnd-section {
  color: #fff;
}
.hs_who_we_are_r13 .dnd-section:last-child p:first-child {
  font-size: 1.25rem;
  font-weight: 300;
}
.hs_who_we_are_r13 .dnd-section:last-child {
  padding-bottom: 45px;
}

.hs_who_we_are_r14 .dnd-section:first-child {
  padding-top: 63px;
  padding-bottom: 0;
}
.hs_who_we_are_r14 .dnd-section {
  padding-bottom: 0;
}
.hs_who_we_are_r14 .dnd-section h2 {
  margin-bottom: 30px;
}
.hs_who_we_are_r14 .dnd-section:nth-child(2) {
  padding-top: 13px;
}


.hs_who_we_are_r15 .dnd-section {
  padding: 0;
}
.hs_who_we_are_r15 .dnd-section>.row-fluid {
  padding: 0;
}





/* ======================================= Service Page ======================================= */
.hs-service-section1 .dnd-section > .row-fluid {
  padding: 0;
}

.color_theme_Blue .hs_contact_enquiry_wrap .hs_btn_wrap:not(.is_active) span.icon--plus:hover:before {
  color: #17acbf;
  background: #fff;
}

.hs-service-section1 .hs_contact_enquiry_wrap .form_wrap {
  margin: 0;
}

.hs-service-section1 .hs_contact_enquiry_wrap .form_wrap form fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.hs-service-section1 .hs_contact_enquiry_wrap .form_wrap form fieldset > div {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.hs_contact_enquiry_wrap .form_wrap form .hs_submit.hs-submit {
  margin-bottom: 40px;
  width: auto;
  float: none;
}

.color_theme_Blue .hs_contact_enquiry_wrap .form_wrap form .hs_submit.hs-submit .hs-button {
  background: #17acbf;
}

.hs_contact_enquiry_wrap .form_wrap form .hs_submit.hs-submit .hs-button:hover {
  background: #a71b13;
}

.hs-service-section2 .widget-type-rich_text {
  font-size: 1.25rem;
  font-weight: 300;
}

.hs-service-section4 .widget-type-rich_text {
  margin-bottom: 30px;
}

.color_theme_Blue .hs-service-section5 h2 span {
  color: #17acbf;
}

.hs-service-section5 .widget-type-rich_text {
  color: #fff;
}

.hs-service-section5 .widget-type-rich_text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hs-service-section5 .widget-type-rich_text ul li {
  padding-left: 1.3em;
  padding-bottom: .5rem;
}

.hs-service-section5 .widget-type-rich_text ul li:before {
  color: #e5680c;
  content: "\f058";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}

.color_theme_Blue .hs-service-section5 .widget-type-rich_text ul li:before {
  color: #17acbf;
}

.hs-service-section5 .widget-type-rich_text ul ul {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.hs-service-section5 .widget-type-rich_text ul ul li:before {
  opacity: .5;
}

.hs-service-section6 .widget-type-rich_text {
  font-size: 1.25rem;
  font-weight: 300;
}

.hs-service-section6 .widget-type-rich_text h2 {
  color: #17acbf;
  margin-bottom: 30px;
}

.hs-service-section6 .widget-type-rich_text p {
  margin-bottom: 30px;
}

.color_theme_Blue .custom-package-tabber table thead {
  background: #17acbf;
}

.color_theme_Blue .custom-package-tabber table tbody tr:nth-child(odd) {
  background: #daf7fb;
}

.hs-service-section6 .dnd_area6-row-1-force-full-width-section > .row-fluid,
.hs-service-section7 .dnd_area7-row-0-force-full-width-section > .row-fluid,
.hs-service-section9 .dnd_area9-row-0-force-full-width-section > .row-fluid,
.hs-service-section11 .dnd_area11-row-0-force-full-width-section > .row-fluid,
.hs-service-section12 .dnd_area12-row-0-force-full-width-section > .row-fluid{
  padding: 0;
}

.hs-service-section8 .widget-type-rich_text {
  margin-bottom: 30px;
}

.hs-service-section8 .hs_services_wrap .hs_services_form .hs_inner_wrap {
  margin-left: 0;
  margin-right: 0;
}

.hs-service-section8 .widget-type-rich_text p a {
  color: #272432;
}

.hs-service-section9 .hs-customerSupport-wrp .btn-cs a {
  display: inline-block;
}

.color_theme_Blue .hs-customerSupport-wrp .btn-cs a {
  background: #17acbf;
  color: #fff;
}

.color_theme_Blue .hs-customerSupport-wrp .btn-cs a:hover {
  background: #0c5a64;
}

.color_theme_Blue .hs-customerSupport-wrp .btn-cs a:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgb(23 172 191 / 25%);
  box-shadow: 0 0 0 0.2rem rgb(23 172 191 / 25%);
}

.hs-service-section10 .widget-type-rich_text {
  font-size: 1.25rem;
  font-weight: 300;
}

.hs-service-section10 .hs_content_with_image_wrap .hs_img {
  min-height: 377px;
}

.hs-service-section10 .hs_content_with_image_wrap .hs_content_with_image:last-child {
  margin: 0;
}

.hs-service-section10 .widget-type-rich_text h2 a {
  color: #272432;
}

.hs-service-section11 .hs-faq-grp .hs-faq-sec .hs-faq-read-more .readmore-btn {
  margin-top: 1px;
  margin-bottom: 9px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.hs-service-page .hs_contact_enquiry_wrap .hs_contact_enquiry_form {
  padding-top: 29px;
}

.hs-service-section10 .dnd-section > .row-fluid {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}

.hs-service-section10 .dnd-section > .row-fluid:after, 
.hs-service-section10 .dnd-section > .row-fluid:before {
  content: none;
}

.hs-service-section10 .dnd-section .span6 {
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 1em;
  position: relative;
  float: none;
  margin: 0;
  width: 100%;
  margin-right: 30px;
}

.hs-service-section10 .dnd-section .span6:last-child {
  margin-right: 0;
}
.hs-service-section10 .dnd-section .span6 > div {
  width: 100%;
}
.hs-service-section11 .hs-faq-grp .hs-faq-sec .hs-faq-read-more .readmore-btn:hover {
  background: #fff;
  color: #e84138;
}
.color_theme_Blue .hs-faq-grp .content-active .hs-faq-accordion-tab a {
  background: #17acbf;
}
.color_theme_Blue .hs-faq-grp .hs-faq-accordion-content {
  background: rgba(23,172,191,.2);
}
.color_theme_Blue .hs-faq-grp .hs-faq-accordion-content-inner a {
  color: #17acbf;
}
.color_theme_Blue .hs-faq-grp .hs-faq-accordion-content-inner a:hover {
  color: #0c5a64;
}

.hs-service-section2 .widget-type-rich_text ul {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
}

.hs-service-section2 .widget-type-rich_text ul li {
  padding-left: 1.3em;
  padding-bottom: .5rem;
}

.hs-service-section2 .widget-type-rich_text ul li:before {
  color: #e5680c;
  content: "\f058";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}

.color_theme_Orange .hs-service-section2 .widget-type-rich_text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.color_theme_Orange .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large {
  background: #e5680c;
}

.color_theme_Orange .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large:hover {
  background: #a71b13;
  color: #fff;
}

.color_theme_Orange .hs_contact_enquiry_wrap .form_wrap form .hs_submit.hs-submit {
  margin-bottom: 54px;
}

.color_theme_Orange .hs-service-section2 .widget-type-rich_text {
  text-align: center;
  margin-bottom: 30px;
}

.custom-how-it-works-wrap #virtualAssistant #chat {
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.custom-how-it-works-wrap #diaryManagement #contacts {
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}
.color_theme_Purple .hs-service-section4 .widget-type-rich_text {
  max-width: calc(80% - 6px);
  margin: 0 auto;
}
.color_theme_Orange .hs-service-section4 .widget-type-rich_text {
  margin-bottom: 50px;
}

.color_theme_Orange .hs-service-section5 .widget-type-rich_text h2,
.color_theme_Orange .hs-service-section5 .widget-type-rich_text p {
  margin-bottom: 30px;
}

.color_theme_Orange .hs-service-section5 .widget-type-rich_text ul {
  margin-bottom: 1rem;
}

.color_theme_Orange .hs-service-section6 .widget-type-rich_text h2 {
  color: #e5680c;
}

.hs-service-section6 .widget-type-rich_text .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  font-size: 16px;
  font-weight: 300;
  color: #272432;
  text-align: center;
}

.hs-service-section6 .widget-type-rich_text table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  text-align: center;
  border: 1px solid #fff;
}

.hs-service-section6 .widget-type-rich_text table thead {
  color: #fff;
  background: #e5680c;
}

.hs-service-section6 .widget-type-rich_text table thead tr th {
  vertical-align: middle;
  border: 0;
  background-color: transparent;
}

.hs-service-section6 .widget-type-rich_text table tbody tr:nth-child(odd) {
  background: #fef7f2;
}

.hs-service-section6 .widget-type-rich_text table tbody tr td {
  white-space: nowrap;
  border: 0;
}

.color_theme_Orange .hs-service-section10 .dnd-section:last-child .widget-type-rich_text h2 {
  margin-bottom: 16px;
}

.hs-faq-grp .content-active .hs-faq-accordion-tab a {
  background: #e5680c;
}

.hs-faq-grp .hs-faq-accordion-content {
  background: rgba(229,104,12,.2);
}

.hs_content_with_image_wrap .hs_content ul {
  padding-left: 0;
  list-style: inside;
}

.color_theme_Orange .hs-service-section10 .hs_content_with_image_wrap .hs_img {
  min-height: 285px;
}

.color_theme_Orange .hs-service-section9 .hs-customerSupport-wrp .btn-cs a {
  background: #e5680c;
}

.color_theme_Orange .hs-service-section9 .hs-customerSupport-wrp .btn-cs a:hover, 
.color_theme_Orange .hs-service-section9 .hs-customerSupport-wrp .btn-cs a:focus {
  background: #843c07;
}

.hs-service-section9 .hs-customerSupport-wrp .hs-customerSupport-image {
  background-position: center center;
}

.color_theme_Purple .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large {
  background: #756eaf;
}

.color_theme_Purple .hs_contact_enquiry_wrap .form_wrap form input.hs-button.primary.large:hover {
  color: #fff;
  background: #a71b13;
}

.hs-service-section5 .dnd_area5-row-0-force-full-width-section > .row-fluid {
  padding: 0;
}

.color_theme_Purple .hs-customerSupport-wrp .btn-cs a {
  background: #756eaf;
  color: #fff;
}

.color_theme_Purple .hs-customerSupport-wrp .btn-cs a:hover {
  background: #474176;
}

.color_theme_Purple .hs-advancedSlider-wrp.withoutImage .hs-advancedSlider-left-part h4 {
  color: #756eaf;
}

.color_theme_Purple .hs-advancedSlider-wrp.withoutImage .hs-advancedSlider-left-part .ctu a {
  background: #756eaf;
  color: #fff;
}

.color_theme_Purple .hs-advancedSlider-wrp.withoutImage .hs-advancedSlider-left-part .ctu a:hover {
  background: #474176;
}

.hs-service-section4 .cta_button.hs-button {
  background-image: none;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  white-space: normal;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
  border-radius: 0;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 15px 43px;
  border-radius: 5px;
  min-height: auto;
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.color_theme_Purple .hs-service-section4 .cta_button.hs-button {
  color: #fff;
  background-color: #756eaf;
}

.color_theme_Purple .hs-service-section4 .cta_button.hs-button:hover {
  color: #fff;
  background-color: #69639e;
}
.hs-service-page .row-fluid [class*="span"] {
  min-height: auto;
}
.color_theme_Purple .hs-service-section9 .hs-customerSupport-wrp .hs-customerSupport-image {
  background-position: center top;
}
.color_theme_Purple .hs-customerSupport-wrp .hs-customerSupport-image-wrp .fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 2em;
}
.color_theme_Purple .hs-customerSupport-wrp .hs-customerSupport-image-wrp .fa.fa-play {
  font: normal normal normal 14px/1 FontAwesome;
  left: 2px;
  line-height: inherit;
  font-size: 21.3333px;
}
.color_theme_Purple .hs-advancedSlider-wrp.withoutImage .slick-control-next, 
.color_theme_Purple .hs-advancedSlider-wrp.withoutImage .slick-control-prev {
  background: #756eaf;
}



/* Animations */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes ot {
  from {
    transform: translateX(200%);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes ot {
  from {
    transform: translateX(200%);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.career-page-banner .banner-wrap .banner-content {
  margin: 0;
}
.career-page-banner .banner-wrap {
  margin-top: 0;
}
.hs_careers_r1 .dnd-section > .row-fluid {
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-height: 1em;
  position: relative;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.hs_careers_r1 .dnd-section > .row-fluid::after, 
.hs_careers_r1 .dnd-section > .row-fluid:before {
  content: none;
}
.hs_careers_r1 .span8.widget-span {
  margin: 0;
  padding: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 1em;
  position: relative;
  width: 100%;
  margin-right: 30px;
}
.hs_careers_r1 .span4.widget-span {
  margin: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 1em;
  position: relative;
  width: 100%;
}
.hs_careers_r1 .span4.widget-span .widget-type-rich_text {
  padding-top: 25px;
  margin-bottom: 30px;
}
.hs_careers_r1 .dnd-section:first-child {
  padding-bottom: 22px;
}

.hs_careers_r3 form .field .hs-input:focus {
  box-shadow: none;
  outline: -webkit-focus-ring-color auto 1px;
  outline-offset: 0px;
}
.hs_careers_r3 form {
  margin: 0;
  padding-right: 0;
}
.hs_careers_r3 form fieldset {
  padding: 0;
}
.hs_careers_r3 form .legal-consent-container {
  padding: 0;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list {
  padding-bottom: 1rem;
  padding-left: 40px;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list label {
  display: inline-block;
  margin-bottom: .5rem;
  width: 100%;
  font-family: proxima-nova,sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #272432;
  letter-spacing: .25px;
  line-height: 1.5;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field ul.inputs-list label input {
  margin: 0px;
  width: 30px !important;
}
.hs_careers_r3 form .legal-consent-container .hs-dependent-field {
  margin: 0;
  padding: 0;
}
.hs_careers_r3 form fieldset>.field {
  padding: 0;
}

/* ================================== Home page ================================ */
.hs-home-section1 .dnd_area-row-0-force-full-width-section > .row-fluid,
.hs-home-section4 .dnd_area4-row-0-force-full-width-section > .row-fluid,
.hs-home-section5  .dnd_area5-row-0-force-full-width-section > .row-fluid,
.hs-home-section11 .dnd_area11-row-0-force-full-width-section > .row-fluid {
  padding: 0;
}

.hs-home-section2 .widget-type-rich_text {
  max-width: calc(80% - 0px);
  margin: auto;
}

.hs-home-section3 .widget-type-rich_text, .hs-home-section6 .widget-type-rich_text {
  margin-bottom: 30px;
}

.hs-home-section3 .widget-type-rich_text h2 a {
  color: #272432;
}

.hs-home-section3 .hs-advancedSlider-wrp .advancedSlider-item-content p + a {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  background: #e84138;
  color: #fff;
}

.hs-home-section3 .hs-advancedSlider-wrp .advancedSlider-item-content p + a:hover {
  background: #a71b13;
}

.hs-home-section4 .hs-customerSupport-wrp .link-gray p a {
  color: #fff;
}

.hs-home-section4 .hs-customerSupport-wrp .link-gray p a:hover {
  color: #e84138;
}

.hs-home-section7 #home #phone {
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.contetWithimage-sec .span4.dnd-column .widget-type-rich_text h2 {
  margin-bottom: 30px;
}
.hs-home-section8 .hs-popupVideo-grp .fa {
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
}
.hs-home-section9 .dnd-section > .row-fluid {
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-height: 1em;
  position: relative;
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.hs-home-section9 .dnd-section > .row-fluid:after, .hs-home-section9 .dnd-section > .row-fluid:before {
  content: none;
}

.hs-home-section9 .dnd-section .span8, .hs-home-section9 .dnd-section .span4 {
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 1em;
  position: relative;
  width: 100%;
  margin: 0;
}

.hs-home-section9 .dnd-section h3 {
  color: #fff;
}

.hs-home-section9 .dnd-section .hs-button {
  border: 1px solid #fff!important;
  background: 0 0!important;
  color: #fff!important;
  padding: .5rem 2rem!important;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  white-space: normal;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
  border-radius: 0;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: none;
}

.hs-home-section9 .dnd-section .hs-button:hover {
  background: #fff!important;
  color: #e84138!important;
}

.hs-home-section9 .dnd-section .span4 > .dnd-row {
  position: relative;
  overflow-wrap: break-word;
  transition: box-shadow .2s;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.color_theme_Orange .hs-advancedSlider-wrp .custom-button a {
  background: #e5680c;
}
.color_theme_Orange .hs-faq-grp .content-active .hs-faq-accordion-tab a {
  background: #e5680c;
}
.color_theme_Orange .hs-faq-grp .hs-faq-accordion-content {
  background: rgba(229,104,12,.2);
}
.color_theme_Orange .hs-faq-grp .hs-faq-accordion-content-inner p a {
  color: #e5680c;
}
.color_theme_Orange .hs-faq-grp .hs-faq-accordion-content-inner p a:hover {
  color: #843c07;
}

.body-emailHandling-grp .email_handling_section6.contetWithimage-sec h2 {
  margin-bottom: .5rem !important;
}

.color_theme_Purple .hs_contact_enquiry_wrap .hs_btn_wrap span.icon--plus:hover:before {
  color: #756eaf;
}

.color_theme_Purple .hs-faq-grp .content-active .hs-faq-accordion-tab a {
  background: #756eaf;
}

.color_theme_Purple .hs-faq-grp .hs-faq-accordion-content {
  background: rgba(117,110,175,.2);
}

.color_theme_Purple .hs-faq-grp .hs-faq-accordion-content-inner a {
  color: #756eaf;
}

.color_theme_Purple .hs-faq-grp .hs-faq-accordion-content-inner a:hover {
  color: #474176;
}

/* ============================================================================= Media queries ================================================ */
@media (min-width: 768px) {
  .hs-service-section8 .dnd-section:last-child .widget-type-rich_text {
    max-width: calc(80% - 6px);
    margin: auto;
  }
  .hs-service-section10 .dnd-section .span6 {
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-flex-basis: calc(50% - 15px);
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .hs_careers_r1 .span8.widget-span {
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-flex-basis: calc(66.66% - 10px);
    -ms-flex-preferred-size: calc(66.66% - 10px);
    flex-basis: calc(66.66% - 10px);
    max-width: calc(66.66% - 10px);
  }
  .hs_careers_r1 .span4.widget-span {
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-flex-basis: calc(33.34% - 20px);
    -ms-flex-preferred-size: calc(33.34% - 20px);
    flex-basis: calc(33.34% - 20px);
    max-width: calc(33.34% - 20px);
  }

  .hs-home-section9 .dnd-section .span8 {
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-flex-basis: calc(80% - 6px);
    -ms-flex-preferred-size: calc(80% - 6px);
    flex-basis: calc(80% - 6px);
    max-width: calc(80% - 6px);
    margin-right: 30px;
  } 

  .hs-home-section9 .dnd-section .span4 {
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-flex-basis: calc(20% - 24px);
    -ms-flex-preferred-size: calc(20% - 24px);
    flex-basis: calc(20% - 24px);
    max-width: calc(20% - 24px);
  }

}

@media (min-width: 992px) {
  .hs_careers_r4 h5 {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }
  .hs-service-section1 .hs_contact_enquiry_wrap .form_wrap form fieldset.form-columns-3 > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}


/* ============================================ */
@media (min-width: 768px) and (max-width: 991px) {
  .hs-home-section4 .hs-customerSupport-wrp .hs-customerSupport-content {
    max-width: 100%;
    padding: 100px 40px;
  }
}

@media(max-width: 991.9px) {
  .hs_has_padding .body-container-wrapper {
    /*     padding-top: 152px; */
  }

  .hs_answering_service_r2 .dnd-section[class*="full-width-section"] {
    padding-top: 0;
  }
  .hs_answering_service_r3 .dnd-section {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .hs_contactus_r1 .dnd-section .widget-type-cell {
    padding: 0;
  }
  .hs_careers_r1 .span8.widget-span .widget-type-linked_image img {
    max-width: 451px !important;
    min-height: 735px;
  }
  .hs_who_we_are_r4 .dnd-section {
    padding-top: 20px;
  }
  .hs-home-banner .custom-advanced-banner .banner-content img {
    max-height: 80px;
    width: auto;
  }
}
/*=========End 991px*/

@media(max-width: 767.9px) {
  .hs_answering_service_r1 .span6.widget-span {
    padding: 0;
    width: 100%;
    margin: 0;
  }
  .hs_answering_service_r1 .span6.widget-span:first-child {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .hs_answering_service_r1 h1 {
    font-size: 1.8rem;
  }
  .hs_answering_service_r2 .widget-type-rich_text {
    padding:0;
  }
  .hs_contactus_r2 .dnd-section .span6.widget-span {
    width: 100%;
  }
  .hs_contactus_r2 form fieldset.form-columns-2>.field,
  .hs_contactus_r2 form fieldset.form-columns-3>.field {
    width: 100%;
  }
  .hs_careers_r1 .span8.widget-span {
    width: 100%;
    margin-top: -5px;
  }
  .hs_careers_r1 .span4.widget-span {
    margin: 0;
    padding: 25px 15px 0;
    width: 100%;
  }
  .hs_careers_r1 .span4.widget-span p:last-child {
    margin-bottom: 0;
  }
  .hs_careers_r1 .span8.widget-span {
    margin: 0;
    padding: 0;
  }
  .hs_careers_r1 .span4.widget-span {
    padding: 25px 0 0;
  }
  .hs_careers_r4 h5 {
    font-size: 1.25rem;
    line-height: 1.825rem;
  }
  .hs_careers_r3 form {
    margin: 0;
    padding: 16px 0 0;
  }
  .hs_careers_r3 form fieldset {
    padding: 0;
  }
  .hs_careers_r3 form fieldset>.field {
    padding: 0 3px;
  }
  .hs_careers_r3 form fieldset.form-columns-2>.field>.input,
  .hs_careers_r3 form fieldset.form-columns-3>.field>.input {
    padding: 0;
  }
  .hs-service-section10 .hs_content_with_image_wrap .hs_content_with_image {
    height: auto;
    margin-bottom: 2rem!important;
  }

  .hs-service-section4 .hs-advancedSlider-wrp.withImage .slick-control-prev {
    left: 0;
    z-index: 999;
  }

  .hs-service-section4 .hs-advancedSlider-wrp.withImage .slick-control-next {
    right: 0;
    z-index: 999;
  }
  .hs_who_we_are_page .contetWithimage-sec .span8.dnd-column {
    margin-bottom: 30px;
  }
  .hs_who_we_are_r5 .dnd-section .dnd-column {
    margin-bottom: 40px;
  }
  .hs_who_we_are_r8 .dnd-section .span4.widget-span {
    width: 100%;
    margin: 0 0 2rem;
  }
  .hs_who_we_are_r9 .dnd-section .span4.widget-span {
    padding-top: 30px;
  }
  .hs_who_we_are_r9 .dnd-section .span4.widget-span p:last-child {
    margin-bottom: 0;
  }
  .hs_2col_left .dnd-section .span9.widget-span {
    margin: 0;
    width: 100%;
  }
  .hs_careers_r1 .span8.widget-span .widget-type-linked_image img {
    max-width: 100% !important;
    min-height: 468.5px;
  }
  .hs_careers_r1 .span4.widget-span {
    padding: 0;
  }
  .hs_careers_r1 .span8.widget-span {
    margin-right: 0;
  }
  .hs_careers_r1 .dnd-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hs-home-section2 .widget-type-rich_text {
    max-width: 100%;
  }

  .hs-home-section2 .hs_services_wrap .hs_services_items {
    padding: 0;
  }

  .hs-home-section4 .hs-customerSupport-wrp .hs-customerSupport-content {
    padding: 100px 30px;
  }

  .hs-home-section6 .hs-advancedSlider-wrp.withImage .slick-control-prev {
    left: 0;
  }

  .hs-home-section6 .hs-advancedSlider-wrp.withImage .slick-control-next {
    right: 0;
  }
  .hs-service-section8 .dnd-section:last-child {
    padding-bottom: 28px;
  } 
  .hs-service-section9 .hs-customerSupport-wrp .hs-customerSupport-image {
    background-position: center top;
  }
  .hs-home-section2 .hs_services_wrap .hs_services_form {
    padding-left: 0;
    padding-right: 0;
  }

  .hs-service-section8 .hs_services_wrap .hs_services_items {
    padding-left: 0;
    padding-right: 0;
  }
  .hs-service-section10 .dnd-section > .row-fluid > .dnd-column {
    width: 100%;
  }
}
/* ==================================== style css ========================== */

/* Email Handling */
.hs_has_padding .body-emailHandling-grp{
  padding-top:0;
}
.email_handling_section3 .form_wrap form .hs_submit.hs-submit,
.email_handling_section8 .form_wrap form .hs_submit.hs-submit{
  margin-bottom:3.3rem !important;
}
.email_handling_section5 * {
  color: #fff;
}
.email_handling_section5 h2 {
  font-size: 1.9rem;
}
.email_handling_section5 a:hover,
.email_handling_section5 a:focus{
  color: #fff;
}
.email_handling_section7 h2 {
  padding-bottom: 22px;
}
.email_handling_section7 h2 a,
.email_handling_section7 h2 a:hover{
  color: #272432;
  text-decoration: none;
}

.email_handling_section7 .hs_cos_wrapper_type_header h2{
  padding-bottom:0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: .5;
}
.hs-faq-grp.content-show .hs-faq-sec .hs-faq-read-more span:before {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/cricle-min.svg)  !important;
}
.hs-faq-grp .hs-faq-accordion-tab a span:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/plus.svg) !important;
}
.hs-emailHandling-tabber-wrp .tab-btn a:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/plus-tabber.svg) !important;
}
.tab-btn.active a:after {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/min-tabber.svg) !important;
}
.email_handling_section5 .span6.dnd-column:first-child{
  padding-right: 15px;
}
.contetWithimage-sec .span4.dnd-column {
  padding: 50px 5px 0;
}

@media screen and (min-width: 1200px){
  .email_handling_section5 .span6.dnd-column:first-child{
    padding-right: 55px;
  }
}

@media(min-width:768px){
  .email_handling_section5 .span6.dnd-column:last-child {
    padding-left: 15px;
  }
  .email_handling_section5 .span6.dnd-column {
    width: 50% !important;
    margin-left: 0 !important;
  }
  .contetWithimage-sec .span8.dnd-column {
    width: calc(66.66% - 10px);
    margin-right: 30px;
  }
  .contetWithimage-sec .span4.dnd-column {
    width: calc(33.34% - 20px);
    margin-left: 0;
    padding: 50px 5px 0;
  }
  .email_handling_section5 h3 {
    font-size: 2.125rem;
  }
}

@media(max-width:767px){
  .email_handling_section5 .dnd-column {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .email_handling_section5 .dnd-column:first-child {
    margin-bottom: 2.5rem;
  }
}

/* Two Column */
.two-column-wrp{
  padding-bottom: 50px;
  padding-top: 50px;
}
.two-column-wrp .dnd-section>.row-fluid {
  max-width: 100%;
  padding: 0;
}
.two-column-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 30px;
}
.two-column-col-md-4,
.two-column-col-md-8{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.bd-toc {
  border-bottom: 1px solid #272432;
  border-top: 1px solid #272432;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.two-column-left h6 {
  display: block;
  width: 100%;
  color: #272432;
  padding: 0 1rem;
  position: relative;
  margin: 0;
  line-height: 1.5;
}
.two-column-left h6 a{
  color: #272432;
  text-decoration:none;
}
.two-column-left h6:hover a {
  color: #e84138;
}
.two-column-left ul {
  margin: 0;
  list-style: none;
  padding: .5rem 1rem;
}
.two-column-left ul li a{
  display: block;
  width: 100%;
  padding: 0;
  color: #272432;
}

.two-column-right ul li a,
.two-column-right ul li a:hover{
  color: #b41c29;
}
.two-column-left ul li a:hover {
  color: #E84138;
  text-decoration:none;
}

@media (min-width: 768px){
  .two-column-col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .two-column-col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .bd-toc {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 10rem;
    height: calc(100vh - 10rem);
    overflow-y: auto;
  }
}
@media (max-width: 767px){
  .two-column-left .row-fluid [class*="span"] {
    min-height: 0;
  }
  .two-column-left h6{
    cursor: pointer;
  }
  .two-column-left h6 a:after {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    content: "";
    background-repeat: no-repeat; 
    background-position:center center;;
    background-size: 100% 100%;
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/plus-tabber.svg)  !important;
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
  }
  .two-column-left h6.active a:after {
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/min-tabber.svg)  !important;
  }

  .two-column-left ul {
    display: none;
  }
  .two-column-left ul {
    margin: 0;
    list-style: none;
    padding: 0 1rem 1rem 1rem;
    top: .5rem;
    position: relative;
  }
  .meetings-iframe-container iframe {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    display: block;
  }
}

@media (max-width: 500px) {
  .hs-service-section6 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width:479px){
  .email_handling_section5 iframe {
    height: 311px !important;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  @media (max-width: 767px) {
    .hs_careers_r1 .span8.widget-span .widget-type-linked_image img {
      min-height: 358px;
    }
  }
}
.custom-header-wrapper {
  display: block;
  width: 100%;
  min-height: 118px;
}

.custom-header {
  border-bottom: 5px solid #e84138;
  z-index: 10001;
  background: #fff;
  width: 100%;
/*   position: fixed; */
  top: 0;
}
.scroll-header .custom-header {
  position: fixed;
}
.custom-header .page-center {
  padding: 0;
  max-width: 100%;
}

.custom-header .header-inner {
  position: relative;
}

.custom-logo {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 0;
  padding-left: 0;
}

.custom-logo a {
  display: inline-block;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  padding: 1.875rem 0 1.25rem 0;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

.custom-logo img {
  max-width: 100%;
  height: auto;
  width: auto !important;
}

.custom-menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  position: static;
  text-align: center;
  width: 100%;
}

.custom-top-menu {
  width: 100%;
  display: none !important;
}

.custom-menu-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom-logo > .hs_cos_wrapper > .hs_cos_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.custom-logo > .hs_cos_wrapper {
  width: 100%;
  height: 100%;
}

.custom-top-menu .hs-menu-wrapper > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-top-menu .hs-menu-wrapper > ul > li > a {
  padding: .5rem 0;
  width: 100%;
  display: inline-block;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: #939198;
}

.custom-top-menu .hs-menu-wrapper > ul > li.free-guides > a {
  background-color: #E84138;
}

.custom-top-menu .hs-menu-wrapper > ul > li.resources > a {
  background-color: #E84138;
}

.custom-top-menu .hs-menu-wrapper > ul > li.customer-reviews > a {
  background-color: #2fb088;
}

.custom-top-menu .hs-menu-wrapper > ul > li.contact-us > a {
  background-color: #272432;
}

.custom-menu-primary .hs_cos_wrapper {
  width: 100%;
}

.custom-menu-primary .navigation-primary > ul {
  padding: 0;
  width: 100%;
  display: none;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.custom-menu-primary .navigation-primary > ul > li {
  min-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.custom-menu-primary .navigation-primary > ul > li > a {
  padding: .5rem 0;
  font-size: 1.125rem;
  font-weight: 400;
  color: #272432;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom-menu-primary .navigation-primary > ul > li.active-branch > a {
  color: #fff;
  background: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li:hover > a {
  color: #fff;
  background: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu {
  border-top: 5px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  display: none;
}

.custom-menu-primary .navigation-primary > ul > li:hover > .dropdown-menu {
  display: block;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
  background: #fff;
  border-bottom: 5px solid #fff;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li {
  position: relative;
  width: 100%;
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 0;
  padding-left: 0;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  display: initial;
}

li.first > a,
li.second > a,
li.blank > a {
  display: none !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%!important;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li {
  min-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: static;
  background: #ddd;
  border-bottom: 5px solid #fff;
  min-height: 3.438rem;
  width: 100%;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li > a {
  display: block !important;
  padding: .5rem 1rem;
  font-weight: 400;
  color: #272432;
  width: 100% !important;
  line-height: 2.125rem;
  text-align: left;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  font-size: 1.125rem;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.empty > a {
  display: none !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li:last-child.empty {
  border-bottom: 0;
  min-height: 3.125rem;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul {
  height: 100%;
  display: grid;
  grid-auto-rows: 1fr;
  text-align: left;
  grid-template-columns: 1fr 1fr 1fr 2fr;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  overflow: visible;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:not(:last-child) > ul > li:last-child > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  background: #919191;
  min-height: 3.125rem;
  color: #fff;
  text-align: center;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:before,
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:after {
  content: "";
  width: 2px;
  height: 8.5rem;
  background: 0 0;
  top: 1rem;
  position: absolute;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:after {
  right: -3px;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:before {
  left: -3px;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-right: 0;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > a {
  display: none !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1rem 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:first-child {
  display: none;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:not(:first-child) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: .875rem;
  line-height: 1rem;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:not(:first-child) > a {
  display: block;
  color: #272432;
  cursor: text;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:first-child > a {
  display: none;
}

.custom-menu-primary .navigation-primary > ul > li.Inbound.Telemarketing > .dropdown-menu > ul > li.second > ul,
.custom-menu-primary .navigation-primary > ul > li.Emergency.Call.Handling > .dropdown-menu > ul > li.second > ul {
  grid-template-columns: 1fr 1fr 3fr;
}

.custom-menu-primary .navigation-primary > ul > li.About.us > .dropdown-menu > ul > li.second > ul {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.custom-menu-primary .navigation-primary>ul>li>.dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:first-child > img {
  display: block;
  max-width: 80px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.custom-menu-primary .navigation-primary > ul > li.About.us > .dropdown-menu > ul > li.first > ul > li:last-child {
  border-bottom: 0;
  min-height: 3.125rem;
}

.custom-menu-primary .navigation-primary > ul> li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.menu-img-bg {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/virtual.png);
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > ul {
  position: relative;
  background: rgba(0,0,0,.66);
  color: #fff;
  height: 100%;
  padding: 1.5rem;
  width: 50%;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > ul > li:first-child > a {
  display: block;
  font-size: 1.188rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #fff;
  cursor: text;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > ul > li:nth-child(2) > a {
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
  cursor: text;
  margin-bottom: 1rem;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > ul > li:last-child > a {
  display: inline-block;
  line-height: 1.5;
  border-radius: .25rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-weight: 400;
  background: #e84138;
  color: #fff;
  font-size: 1rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child > ul > li:last-child > a:hover {
  background: #a71b13;
}

.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li:last-child > ul {
  width: 100%;
}

.custom-menu-primary .navigation-primary > ul > li.inbound-telemarketing > .dropdown-menu > ul > li.second > ul,
.custom-menu-primary .navigation-primary > ul > li:nth-child(4) > .dropdown-menu > ul > li.second > ul {
  grid-template-columns: 1fr 1fr 3fr;
}

.custom-menu-primary .navigation-primary > ul > li:nth-child(4) > .dropdown-menu > ul > li.second > ul > li:last-child > ul,
.custom-menu-primary .navigation-primary > ul > li.inbound-telemarketing > .dropdown-menu > ul > li.second > ul > li:last-child > ul {
  width: 33%;
}

.custom-menu-primary .navigation-primary > ul > li.outsourced-customer-service > .dropdown-menu > ul > li.second > ul > li.menu-img-bg {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/outsource.png);
}

.custom-menu-primary .navigation-primary > ul > li.inbound-telemarketing > .dropdown-menu > ul > li.second > ul > li.menu-img-bg {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/inbound.png);
}

.custom-menu-primary .navigation-primary > ul > li:nth-child(4) > .dropdown-menu > ul > li.second > ul > li.menu-img-bg {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/ooh_03.png);
}

.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.menu-img-bg {
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/SPL_7940-Edit.png);
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank:hover > ul > li.blank > ul > li:not(:first-child) > a {
  color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li:not(.empty).active {
  background-color: #FFFFFF;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.active > a {
  color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li:not(.empty):hover {
  background-color: #FFFFFF;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li:hover > a {
  color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:not(:last-child):hover > ul > li:last-child > a {
  background-color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank.active > ul > li.blank > ul > li:not(:first-child) > a {
  color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:not(:last-child).active > ul > li:last-child > a {
  background-color: #e84138;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.virtual-receptionist-service:hover > a, 
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.virtual-receptionist-service.active > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover > ul > li.blank > ul > li:not(:first-child) > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:first-child.active > ul > li.blank > ul > li:not(:first-child) > a {
  color: #e5680c;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:first-child:hover > ul > li:last-child > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:first-child.active > ul > li:last-child > a {
  background-color: #e5680c;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.flexi-virtual-assistant-service:hover > a, 
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.flexi-virtual-assistant-service.active > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(2):hover > ul > li.blank > ul > li:not(:first-child) > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(2).active > ul > li.blank > ul > li:not(:first-child) > a {
  color: #17acbf;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:nth-child(2):hover > ul > li:last-child > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:nth-child(2).active > ul > li:last-child > a {
  background: #17acbf;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.diary-management-service:hover > a, 
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.diary-management-service.active > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(3):hover > ul > li.blank > ul > li:not(:first-child) > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(3).active > ul > li.blank > ul > li:not(:first-child) > a {
  color: #756eaf;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:nth-child(3):hover > ul > li:last-child > a, 
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li:nth-child(3).active > ul > li:last-child > a {
  background: #756eaf;
}


.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:hover:before,
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:hover:after {
  background: #e81348;
  z-index: 9;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover:after,
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover:before {
  background: #e5680c;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(2):hover:after,
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(2):hover:before {
  background: #17acbf;
}

.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(3):hover:after,
.custom-menu-primary .navigation-primary > ul > li.virtual-reception-services > .dropdown-menu > ul > li.second > ul > li.blank:nth-child(3):hover:before {
  background: #756eaf;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover:before {
  background: transparent !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child:after,
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:last-child:before {
  background: transparent !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:nth-last-child(2):hover:after {
  background: transparent !important;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.who-we-are:hover > a, 
.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li.who-we-are.active > a, 
.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover > ul > li.blank > ul > li > a, 
.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child.active > ul > li.blank > ul > li > a {
  color: #2fb088;
}

.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover > ul > li:last-child > a,
.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child.active > ul > li:last-child > a {
  background: #2fb088;
}

.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child:hover:after,
.custom-menu-primary .navigation-primary > ul > li.about-us > .dropdown-menu > ul > li.second > ul > li.blank:first-child.active:after {
  background: #2fb088;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li:first-child {
  border-left: 4px solid #fff;
}

.custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.first > ul > li:last-child {
  border-bottom: 0;
  min-height: 3.125rem;
}

.custom-menu-primary ul.submenu.level-4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: visible;
}
.custom-menu-primary ul.submenu.level-4 li:first-child{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: auto;
  margin-top: auto;
}

.custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.second>ul>li:last-child>ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
  .custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li,
  .custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul {
    width: 100%;
  }

}

/* =========================================== Media queries ============================ */
@media (min-width: 992px) {
  .custom-header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .custom-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .custom-menu-wrap {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .custom-top-menu {
    display: block !important;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .custom-menu-primary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .custom-top-menu .hs-menu-wrapper > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom-top-menu .hs-menu-wrapper > ul > li {
    width: 20%;
  }
  .custom-top-menu .hs-menu-wrapper > ul > li > a {
    font-size: .875rem;
  }
  .custom-menu-primary .navigation-primary > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom-menu-primary .navigation-primary > ul > li {
    position: static;
    width: 20%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom-menu-primary .navigation-primary > ul > li > a {
    padding-right: .5rem;
    padding-left: .5rem;
    font-size: .875rem;
  }
  .mobile-trigger,
  .custom-mobile-menu {
    display: none !important;
  }
  .custom-menu-primary ul.submenu.level-4 {
    height: 100%;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.second>ul>li:last-child>ul>li {
    margin: 0;
  }
  .custom-header-wrapper.lp-page-header .header-inner {
    min-height: 113px !important;
  }
}

@media (min-width: 1200px) {
  .custom-menu-primary {
    height: 100%;
  }
}

@media (min-width: 1300px) {
  .custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul > li:first-child {
    display: block;
  }
}

@media (min-width: 992px) and (max-width:1400px){
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.first>ul>li>a {
    font-size: .875rem;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.second>ul>li:not(:last-child)>ul>li:last-child>a {
    font-size: .875rem;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.second>ul>li:last-child>ul {
    display: block;
    border: 0;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.second>ul>li:last-child {
    border-left: 2px solid #fff;
  }
  .custom-menu-primary,
  #hs_cos_wrapper_navigation-primary,
  .navigation-primary,
  .custom-menu-primary .navigation-primary>ul{
    height: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .custom-menu-primary, 
  #hs_cos_wrapper_navigation-primary,
  .navigation-primary, 
  .custom-menu-primary .navigation-primary>ul {
    height: auto;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.first>ul>li>a {
    text-align: left;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
  .custom-menu-primary .navigation-primary>ul>li>.dropdown-menu>ul>li.first>ul>li>a {
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .custom-top-menu .hs-menu-wrapper > ul > li > a,
  .custom-menu-primary .navigation-primary > ul > li > a {
    font-size: 1.125rem;
    font-weight: 400;
  }
}

@media (min-width: 1600px) {
  .custom-menu-primary .navigation-primary > ul > li > .dropdown-menu > ul > li.second > ul > li.blank > ul > li.blank > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
/* ========================== */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    padding: .5rem 1rem;
    background: rgba(39,36,50,.1);
    width: 100%;
    border-radius: 0;
    border: 0;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
  }

  .navbar-toggler .navbar-toggler-icon {
    width: 2.5em;
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/download.svg);
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: none;
  } 

  .navbar-toggler:hover {
    text-decoration: none;
  }

  .mobile-trigger {
    display: block;
    width: 100%;
  }

  .custom-menu-wrap {
    display: block;
    width: 100%;
    min-height: 1px;
  }

  .custom-mobile-menu {
    display: none;
    width: 100%;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    width: 100%;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li {
    min-width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li > a {
    padding: .5rem 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: #272432;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li:hover > a {
    color: #fff;
    background: #e84138;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li.active-branch > a {
    color: #fff;
    background: #e84138;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul {
    position: relative;
    display: none;
    border-top: 5px solid transparent;
    border-bottom: 5px solid #fff;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li {
    min-width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-height: 3.438rem;
    width: 100%;
    border-bottom: 1px solid #939198;
    background: #f3f3f3;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li a {
    display: block;
    padding: .5rem 1rem;
    font-weight: 400;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
    line-height: 2.125rem;
    text-align: center;
    color: #272432;
    width: 100%;
    font-size: 1.125rem;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li a:hover {
    color: #e84138;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li:hover {
    background: #fff;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .custom-header-wrapper {
    min-height: 152px !important;
  }
  .custom-header {
    position: static;
  }
  .scroll-header .custom-header {
    position: fixed;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li.child-open {
    background: #e84138;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li.child-open > a {
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    position: relative;
    color: #fff;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li.child-open > a:after {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/close.svg);
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li.virtual-receptionist-service:hover > a {
    color: #e5680c;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li.flexi-virtual-assistant-service:hover > a {
    color: #17acbf;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li.diary-management-service > a:hover {
    color: #756eaf;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul ul li.who-we-are:hover > a {
    color: #2fb088;
  }

  .custom-mobile-menu .hs-menu-wrapper > ul > li:last-child > ul li:last-child {
    border-bottom: 0;
    min-height: 3.125rem;
  }

}

@media (max-height: 500px) and (orientation: landscape){
  .custom-mobile-menu .hs-menu-wrapper>ul {
    height: calc(100vh - 150px);
    overflow: scroll;
    display: block;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
}
.footer__container {
  margin: 0 auto;
}

.footer .page-center{
  padding-left:15px;
  padding-right:15px;
}

.custom-footer {
  background: #272432;
  color: #fff;
  font-size: .875rem;
  padding: 3.125rem 0;
}

.custom-footer-content {
  float: none;
  width: 100%;
  margin-left: 0;
}
.custom-footer-content-wrp {
  margin-right: -15px;
  margin-left: -15px;
}
  
.custom-footer-content-wrp .custom-footer-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-footer {
  position: relative;
  width: 100% !important;
  padding-right: 15px;
  padding-left: 15px;
  float: none !important;
  margin-left: 0 !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-footer h3,
.social-wrp h4{
  font-family: inherit;
  line-height: 1.2;
  color: inherit;
  font-weight: 900;
  font-size: .875rem;
  margin-top: 0;
  margin-bottom: 1.75rem;
}
.col-footer .hs-menu-wrapper > ul {
  padding-left: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  display: block;
  list-style-type: disc;
}
.col-footer .hs-menu-wrapper > ul > li {
  float: none;
  width: 100%;
  position: relative;
}
.col-footer .hs-menu-wrapper > ul > li > a {
  color: #fff;
  padding: 0;
  display: initial;
}
.col-footer .hs-menu-wrapper > ul > li > a:hover {
  color: #fff;
  text-decoration: none;
}
.custom-footer-address p {
  line-height: 1.5rem;
}

.custom-footer-address p a {
  color: #fff;
  text-decoration: none;
}
.custom-footer-address p a:hover {
  color: #fff;
  text-decoration: none;
}
.custom-footer-copyright {
  float: none ;
  width: 100% ;
  margin-left: 0 ;
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1rem;
}
.custom-footer-copyright p {
  line-height: 1.5rem;
  font-size: 80%;
  font-weight: 400;
  margin: 0;
}
.custom-footer-trustpilot-module iframe {
  height: 290px;
}
.social-wrp h4{
  margin-bottom: 1.5rem;
  margin-top: .5rem;
}
.social {
  font-size: .8rem;
}
.text-white {
  color: #fff;
}
.social-wrp {
  float: left;
  width: 100%;
}
.social a {
  outline: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #e84138;
  text-decoration: none;
  display: inline-block;
}
.social .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.social .fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -15%;
}
.social .fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.social .fa-stack-1x, 
.social .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.social .fa-stack-2x {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2em;
}
.social .fa-stack-1x {
  line-height: inherit;
}
.social .fa-inverse {
  color: #fff;
}
.social .fa, .social .fas {
  font-weight: 900;
}
.social .fa,
.social .far, 
.social .fas {
  font-family: Font Awesome\ 5 Free;
}
.fa.fa-facebook, 
.fa.fa-twitter,
.fa.fa-linkedin, 
.fa.fa-pinterest-p, 
.fa.fa-whatsapp, 
.fa.fa-xing, 
.fa.fa-xing-square,
.fa.fa-youtube,
.fa.fa-youtube-play, 
.fa.fa-youtube-square {
  font-family: Font Awesome\ 5 Brands;
}
.social .fa-stack-2x {
  font-size: 2em;
}
.fa-circle:before {
  content: "\f111";
}
.fa-twitter:before {
  content: "\f099";
  /* content: "𝕏";*/
  /* font-family: sans-serif; /* fallback to a clean glyph pending font awesome 6 support for X (\e61b) in Hubspot */
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-circle:before {
  content: "\f111";
}
.fa-facebook-f:before, 
.fa-facebook:before {
  content: "\f09a";
}
.fa-circle:before {
  content: "\f111";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-circle:before {
  content: "\f111";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-circle:before {
  content: "\f111";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa.fa-facebook:before {
  content: "\f39e";
}
.fa.fa-youtube-play:before {
  content: "\f167";
}



/* Media Query */

@media(max-width: 991px) {
  .custom-footer {
    padding: 2rem 0
  }
  .col-footer h3{
    margin-bottom: 0;
    margin-top: 1.75rem
  }
  .social-wrp h4  {
    margin-bottom: 1.5rem;
    margin-top: .5rem;
  }
}

@media(max-width: 767px) {
  .col-footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
  .col-footer .hs-menu-wrapper>ul>li {
    display: list-item
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

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

.author-header h1 {
  font-size: 2.125rem;
  font-weight: 500;
  margin-bottom: .5rem;
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
  color: #272432;
  margin: 0 0 15px 0;
}

.author-header>div {
  padding: 1rem 0;
}

.author-header img {
  max-width: 96px;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}
.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #e84138;
}

/* Blog Comments */
.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments h2.form-title {
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
  color: #272432;
  font-size: 2.125rem;
}

/* ======================================================================================================== */
.blog-banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/a4u_2017_034-min.png);
}

.blog-banner .banner-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  display: block;
  width: 100%;
  background-image: linear-gradient(45deg,rgba(232,65,56,.36),rgba(232,65,56,.36));
}

.blog-banner .page-center {
  width: 100%;
}

/* START new css code to improve layout of blog header */

.blog-banner .blog-banner-content {
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 9;
  padding: 40px 20px;
  width: 720px;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;

}

.blog-banner .blog-banner-content h1 {
  margin-bottom: .5rem;
  font-family: inherit;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  width: 100%;
  font-size: 2.8rem;
  font-weight: 700;
}

.blog-banner .blog-banner-content p {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: .5rem;
    width: 100%;

}

/* END new css code to improve layout of blog header */

.blog-content-wrapper .content-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.blog-index .post-listing {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-item {
  display: inline-block;
  margin-bottom: 1rem;
  width: 50%;
  padding: 0 15px;
}

.hs-featured-image-wrapper {
  border: 1px solid #e84138;
  margin-bottom: .75rem;
}

.hs-featured-image-wrapper img {
  float: none;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

.post-header h2 {
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
  color: #272432;
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.post-header h2 a {
  color: #272432;
  outline: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.post-header h2 a:hover {
  color: #e84138;
}

a.more-link {
  background: 0;
  border: 0;
  padding: 0;
  color: #e84138;
  margin-top: .25rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 1rem;
  display: inline-block;
}

a.more-link:hover {
  color: #a71b13;
}

.blog-pagination {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-pagination a {
  position: relative;
  display: inline-block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #272432;
}

.blog-pagination a.active {
  background-color: #272432;
  border-color: #272432;
  color: #fff;
}

.blog-pagination a:first-child {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.blog-pagination a:not(.active):hover {
  color: #000;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
  z-index: 2;
}

.blog-sidebar h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
  color: #272432;
  margin-bottom: .5rem;
}

.blog-sidebar > div {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #707070;
}

.blog-sidebar > div:last-child {
  border: 0;
}

.blog-sidebar-topic-filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}

.blog-sidebar-topic-filter ul > li {
  margin: .5rem 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.blog-sidebar-topic-filter ul > li > a {
  background: #272432;
  border: 1px solid #272432;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  padding: .25rem 1.5rem;
  font-weight: 700;
  display: block;
}

.blog-sidebar-topic-filter ul > li > a:hover {
  color: #272432;
  background: 0;
}

.blog-sidebar img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

/* .blog-sidebar > div:nth-child(2) .hs-cta-wrapper {
display: block;
margin-bottom: 2rem;
padding-bottom: 1px;
} */

.blog-sidebar-form .widget-type-form {
  background: #272432;
  padding: 1.25rem;
  color: #fff;
}

.blog-sidebar-form .widget-type-form h3.form-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.875rem;
}

.blog-sidebar-form form {
  max-width: 100%;
}

.blog-sidebar-form .hs-form-field > label {
  display: none;
}

.blog-sidebar-form .hs-form-field .hs-input {
  font-weight: 400;
  vertical-align: middle;
  outline: 0;
  margin: 0;
  font-family: inherit;
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.blog-sidebar-form .hs-button {
  background: #e84138;
  outline: 0;
  margin: 0;
  font-family: inherit;
  width: 100%;
  height: calc(2.25rem + 2px);
  background-clip: padding-box;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  background-color: transparent;
  background-image: none;
  border: 1px solid #e84138 !important;
  color: #e84138;
}

.blog-sidebar-form .hs-button:hover {
  color: #fff;
  background: #a71b13;
}

.blog-sidebar-form .hs-form-field .hs-input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #e84138;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgb(191 43 23 / 25%);
  box-shadow: 0 0 0 0.2rem rgb(191 43 23 / 25%);
}

.blog-sidebar-site-search .hs-search-field__bar {
  max-width: 700px;
}

.blog-sidebar-site-search form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.blog-sidebar-site-search .hs-search-field__input {
  font-weight: 400;
  vertical-align: middle;
  outline: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  font-family: inherit;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.blog-sidebar-site-search .hs-search-field__input:focus {
  border-color: #e84138;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
  box-shadow: 0 0 0 0.2rem rgba(232,65,56,.25);
}
.blog-sidebar-site-search button {
  outline: 0;
  width: auto;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  font-family: inherit;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  color: #fff;
  position: relative;
  z-index: 2;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #272432;
}

.blog-sidebar-site-search button svg {
  display: none;
}

.blog-sidebar-site-search button:before {content: 'Search';}

.blog-sidebar-site-search button:hover {
  outline: 0;
  background: #e84138;
}

.blog-sidebar-site-search button:focus {
  outline: 0;
}

.blog-sidebar-authors .author-items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.blog-sidebar-authors .auth-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  margin-bottom: 1.5rem;
}

.blog-sidebar-authors .auth-item img {
  max-width: 95px;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

.blog-sidebar-social-share .dwsocialshare {
  font-size: 1.5rem;
}

.blog-sidebar-social-share .dwsocialshare a {
  margin-right: 1rem;
  color: #272432;
  cursor: pointer;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-google-plus:before {
  content: "\f0d5";
}

.blog-sidebar-social-share .dwsocialshare a:hover {
  color: #e84138;
}

/* .blog-sidebar > div:nth-last-child(3) {
border: 0;
padding: 0;
margin: 0;
} */

.blog-sidebar-popular ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar-popular ul li {
  display: inline-block;
}

.blog-sidebar-popular ul li a {
  font-size: 1rem;
  color: #939299;
  padding: .5rem 1rem;
  border: 1px solid #939299;
  border-radius: 3px;
  display: inline-block;
  margin-right: .9rem;
  margin-bottom: .75rem;
}

.blog-sidebar-popular ul li a:hover {
  color: #fff;
  background: #939299;
}

/* blog post */
.hs-blog-post .blog-content-wrapper .content-wrapper {
  padding-top: 4.5rem;
}

.entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
}

.entry-meta .avatar {
  border-radius: 100%;
  overflow: hidden;
  margin-right: 1.5rem;
  min-width: 82px;
  max-width: 82px;
}

.entry-meta .avatar img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

.entry-meta .entry-meta-wrapper {
  border-top: 1px solid #272432;
  border-bottom: 1px solid #272432;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 0;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.entry-meta-wrapper .post-by, .entry-meta-wrapper .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.entry-meta-wrapper .dwsocialshare {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.entry-meta-wrapper .dwsocialshare a {
  color: #272432;
  margin-left: 1rem;
  cursor: pointer;
}

.entry-meta-wrapper .dwsocialshare i.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
}

.entry-meta-wrapper .dwsocialshare i.fa.fa-facebook:before {
  content: "\f09a";
}

.entry-meta-wrapper .dwsocialshare a:hover {
  color: #e84138;
}

.section.post-header h1 {
  color: #e84138;
  font-size: 2.125rem;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
}

.post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  padding: 40px 0 20px;
}

.post-pagination>div {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.post-pagination h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: proxima-nova,sans-serif;
  color: #272432;
}

.fa-angle-double-left:before {
  content: "\f100";
}

.post-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-nav a:first-child {
  min-width: 80px;
}

.post-nav img {
  border: 1px solid #e84138;
  max-width: 80px;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

.post-nav a.wpp-post-title {
  margin-left: 1.25rem;
  color: #272432;
}

.post-nav a.wpp-post-title:hover {
  color: #e84138;
}

.fa-angle-double-right:before {
  content: "\f101";
}

.section.post-footer .hs-input {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  width: 100%;
  -webkit-appearance: none;
  vertical-align: middle;
  font-family: proxima-nova,sans-serif;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #000;
  font-weight: 400;
}

.section.post-footer .hs-input:focus {
  border-color: #e84138;
  -webkit-box-shadow: 0 0 0 0.2rem rgb(232 65 56 / 25%);
  box-shadow: 0 0 0 0.2rem rgb(232 65 56 / 25%);
  outline: 0;
}

.grecaptcha-badge {
  margin: 0;
}

.blog-comments .hs-submit {
  text-align: left;
}

.blog-comments .hs-submit .hs-button {
  margin-top: 15px;
  margin-bottom: 0;
}

.blog-sidebar-form .hs_error_rollup {
  margin-bottom: 20px;
  padding: 0;
}
.blog-sidebar-form .hs_error_rollup > ul {
  margin: 0;
  padding: 0;
}
.blog-sidebar-form .hs_error_rollup > ul > li {
  margin: 0;
  padding: 0;
}
.blog-sidebar-form  .hs_error_rollup > ul > li{
  display: block;
  margin-top: .5rem;
  color: #e84138;
  border: 1px solid #e9ecef;
  background-color: #fff;
  border-radius: .25rem;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

.blog-sidebar-social-share .dwsocialshare .fa {
  font-family: FontAwesome;
}

.blog-sidebar-social-share .dwsocialshare .fa.fa-facebook:before {
  content: "\f09a";
}

.blog-pagination a:last-child {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}


/* ============================ Custom CSS for Pillar Page Links - GM ====================== */

.pillar-link-container {
    position: relative;
    width: 100%;
    width:500px;
    max-width: 100%; /* Adjust based on your preference */
    margin: 1rem auto!important; /* Add margin to separate each link */
    border:none!important;
}

.pillar-link {
    display: block;
    position: relative;
    width: 100%;
    height: 250px; /* Adjust based on your preference */
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
    overflow: hidden;
}

.pillar-link1 {
    /* background-image: url('bpo-blog-cta-500.jpg'); */
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/bpo-blog-cta-500.jpg); 
}

.pillar-link2 {
   /* background-image: url('call-answering-blog-cta-500.jpg'); */
   background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/call-answering-blog-cta-500.jpg); 
}

.pillar-link3 {
    /* background-image: url('phone-answering-blog-cta-500.jpg'); */
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/phone-answering-blog-cta-500.jpg); 
}

.pillar-link4 {
    /* background-image: url("https://6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/Answer4u_January2021/Images/ai-customer-service-500.jpg"); */
    background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/ai-customer-service-500.jpg); 
  
}

.pillar-link5 {
        background-image: url(//6754983.fs1.hubspotusercontent-na1.net/hubfs/6754983/raw_assets/public/Answer4u_January2021/images/disaster-recovery-business-continuity-guide-500.jpg); 
  
}

.pillar-overlay {
    position: absolute;
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.pillar-overlay1 {

    background-color: rgba(16, 45, 123,0.7); /* Adjust overlay color and transparency */
}
.pillar-overlay2 {

    background-color: rgba(23, 172, 191,0.7); /* Adjust overlay color and transparency */
}
.pillar-overlay3 {

    background-color: rgba(0, 0, 0, 0.5); /* Adjust overlay color and transparency */
}

.pillar-overlay h3 {
    font-size: 18px;
    line-height:24px;
    font-weight:700;
    padding:0;
  color:#ffffff;
}



/* ============================ Media queries ====================== */
@media (max-width: 991px) {
  .entry-meta .entry-meta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .blog-index .post-listing {
    margin: 0;
  }

  .post-item {
    width: 100%;
    padding: 0;
  }

  .post-pagination {
    margin: 0;
    display: block;
    padding: 15px 0 40px;
  }

  .post-pagination>div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .blog-sidebar {
    padding: 50px 0 0;
  }

}

@media (max-width: 576px) {
  .blog-sidebar-authors .auth-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .blog-sidebar-authors .author-items-wrap {
    margin: 0;
  }

  .next-post-wrap {
    margin-top: 15px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: proxima-nova, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: 650px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: proxima-nova, sans-serif;
  font-size: 1.25rem;
  color: #272432;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #272432;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

.custom-error-page {
  position: relative;
  background-color: #000;
  min-height: 30rem;
  width: 100%;
  overflow: hidden;
  height: auto;
}

.custom-error-page img {
  max-width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: unset;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.custom-error-page .error-page-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: rgba(232,65,56,.36);
  z-index: 1;
  color: #fff;
  padding: 2rem;
  width: 100%;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-animation: fadeIn 21s 1;
  -webkit-animation-delay: 1s;
  animation: fadeIn 21s 1;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  min-height: 100%;
  text-align: center;
}

.custom-error-page .error-page-content .page-title {
  font-size: 2.5rem;
  color: #fff;
}

.custom-error-page .error-page-content .page-subtitle {
  font-weight: 900;
  font-size: 250px;
  line-height: 200px;
  color: #fff;
}

.custom-error-page .error-page-content .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.custom-error-page .error-page-content a {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  background: #272432;
  color: #fff;
  width: 100%;
}

.custom-error-page .error-page-content a:hover {
  background: #000;
}

@media (min-width: 380px) {
  .custom-error-page .error-page-content a {
    width: 400px;
  }
}

@media (min-width: 1200px) {
  .custom-error-page img {
    max-width: 100%;
    position: static;
    top: 0;
    left: 0;
    min-width: inherit;
    min-height: inherit;
    width: auto;
    height: auto;
    z-index: 0;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@media (min-width: 1400px) {
  .custom-error-page .error-page-content {
    padding: 5% 10%; 
  }
}
@media (max-width: 767px) {
  .systems-page .success {
    min-width: 100%; 
  }
}

@media (max-width: 550px) {
  .custom-error-page .error-page-content .page-subtitle {
    font-size: 130px;
    line-height: 150px;
  }
}