/* ******************************************************************************
*********************************************************************************
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 {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* 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;
  height:auto;
}

/* 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 */
  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;
}

.testimonial-banner-area .dnd-section[class*="force-full-width"] > .row-fluid,
.testimonial-page .dnd-section[class*="force-full-width"] > .row-fluid {
  padding: 0;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@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";
  src: url("https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/MDRG_June2021/fonts/FontAwesome.eot") format("embedded-opentype"),
    url("https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/MDRG_June2021/fonts/FontAwesome.woff2") format("woff2"),
    url("https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/MDRG_June2021/fonts/FontAwesome.woff") format("woff"),
    url("https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/MDRG_June2021/fonts/FontAwesome.ttf") format("truetype"),
    url("https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/MDRG_June2021/fonts/FontAwesome.svg") format("svg");
  font-style: normal; 
  font-weight: normal;
}


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

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.53;
}

@media (max-width:991px) {
  body {
    font-size: 18px;
  }
}

@media (max-width:767px) {
  body {
    font-size: 16px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Lato, serif;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
  outline: 0;
  transition: all 0.3s ease-in;
}
a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width:100%;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.14;
}

@media (max-width:1240px) {
  h1 {
    font-size: 56px;
  }
}

@media (max-width:1199px) {
  h1 {
    font-size: 65px;  
  }
}

@media (max-width:767px) {
  h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
}

@media (max-width:580px) {
  h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
}

h2 {
  font-size: 1.6rem;
  line-height: 1.25;
}

@media (max-width:991px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width:767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width:440px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.38;
}

@media (max-width:1240px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

ul li,
ol li {
}

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

blockquote {
  margin: 0 0 1rem;
}

/* Horizontal Rules */


hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-top-color: #aab0ae;
}

/* 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;
}

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}

.content-wrapper,
.page-center {
  margin: 0 auto;
}

.dnd-section > .row-fluid,
.content-wrapper,
.page-center {
  padding: 0 15px;
  width: 100%;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

.hs-search-module .input a.hs-button.primary {
  margin-top: 27px;
}

h3.form-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 52px;
  font-family: "Josefin Sans";
  font-weight: bold;
  margin-bottom: 30px;
}

h3.form-title:after {
  content: '';
  display: block;
  width: 20%;
  border: 2px solid;
  margin: 4% 0 4%;
  border-color: #00e76d;
  margin-top: 0
}

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}

.hs-button { 
  outline: none;
  clear: both;
  cursor: pointer;
  vertical-align: top;
  width: auto;
  box-shadow: 0px 1px 54px rgb(0 0 0 / 8%);
  text-align: center;
  font-size: 22px;
  letter-spacing: -1px;
  line-height: 12px;
  font-family: "Josefin Sans";
  font-weight: 700;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  margin: 0; 
  position: relative;
  max-width: auto;
  height: 50px;
  display: inline-block;
  
  text-decoration: none;
  padding-top: 20px !important;
  margin-top: 10px;
}

@media (max-width:1240px) {
  h3.form-title {
    letter-spacing: -1px;
    line-height: 52px;
    font-size: 31px;
  }
}

@media (max-width:767px) {
  .hs-button {
    margin-bottom: 15px;
  }
  h3.form-title {
    font-size: 24px;
    letter-spacing: 0;
  }
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

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


.hs-form label {
  font-size: 14px;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f00 !important;
  font-family: Helvetica,Arial,sans-serif;
  font-weight: 700 !important;
  font-size: 11px;
}

.hs-input,input[type=password] {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  font-weight: 400;
  line-height: 1.5;
  outline: none !important;
  padding: 5px 4px;
  letter-spacing: normal;
  border: 0;
  border-bottom: 2px solid #D1D6DC;
  font-Family: Helvetica, Arial, sans-serif;
  font-size: 14px;  
  box-sizing: border-box;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  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: #bfbfbf;
}

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

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: #f00 !important;
}
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: #b9554d;
}

.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;
}

.field {
  margin-bottom: 18px;
}

.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: 1rem;
  color: #494a52;
}
.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: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
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-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  display: block; 
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none; 
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */


header.header {
  display: block;
  position: fixed;
  top: 0;
  background-color: transparent;
  padding: 16px 0;
  z-index: 9;
  width: 100%;
  color: #404040;
}

.fixed header.header {
  background-color: #17292c;
  position: fixed;
  z-index: 9999;
  padding: 16px 0 4px;
}

header .page-center {
  padding-right: 75px;
  padding-left: 75px;
  max-width: none;
}

header .header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.header-inner .h-inner {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.h-inner .nav-bar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
  padding: 0;
}

.nav-bar .logo-wrapper {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.nav-bar .logo-wrapper img {
  vertical-align: middle;
  border-style: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  width: 145px !important;
}

.nav-bar .navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important;
}

.custom-menu-primary .hs-menu-wrapper>ul {
  margin-top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  font-family: 'Lato', sans-serif;
}

.custom-menu-primary .hs-menu-wrapper>ul>li {
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>a {
  color: #ffffff;
  cursor: pointer;
  margin-right: 30px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  display: block;
  padding: 8px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:hover>a {
  color: #5DBC63;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
  margin-right: 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul {
  display: none;
  position: absolute;
  background: #172f32;
  top: 100%;
  list-style: none;
  min-width: 206px;
  padding: 11px 0;
  left: -12px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
  color: #ffffff;
  cursor: pointer;
  font-family: 'Lato', sans-serif; 
  font-weight: 700;
  line-height: normal;
  margin: 0 !important;
  text-align: left;
  display: block;
  font-size: 15px;
  padding: 6px 20px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover>a {
  color: #5DBC63;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
  content: '';
  position: absolute;
  top: 20px;
  margin-top: -4px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5.5px 0 5.5px;
  border-color: #ffffff transparent transparent transparent;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul {
  position: absolute;
  background: #172f32;
  list-style: none;
  min-width: 206px;
  display: none;
  left: 100%;
  top: 0;
  padding: 11px 0;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li {
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li>a {
  cursor: pointer;
  font-family: 'Lato', sans-serif;   
  font-weight: 700;
  line-height: normal;
  margin: 0 !important;
  text-align: left;
  color: #fff;
  display: block;
  font-size: 15px;
  padding: 6px 26px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li:hover>a {
  color: #5DBC63;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li.hs-item-has-children:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 11px;
  border-color: transparent transparent transparent #ffffff;
  top: 15px;
  margin-top: -5px;
}

.no-banner header.header {
  background-color: #17292c;
}





.no-banner .fixed-wrapper {
  min-height: 103px;
}

@media (min-width:576px) {
  .header-inner .h-inner {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


@media (min-width:768px) {
  header.header {
    border-bottom-color: #f0f0f0;
  }
}

@media (min-width:992px) {
  .h-inner .nav-bar {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .nav-bar .navbar-toggler {
    display: none;
  }
  .nav-bar .navbar-collapse {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .custom-menu-primary .hs-menu-wrapper>ul {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:hover>ul {
    display: block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover>ul {
    display: block !IMPORTANT;
    left: 100%;
    top: -11px;
  }
  .custom-menu-primary.mobile {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
    top: 17px;
  }
}


@media (max-width:1680px) {
  .no-banner .fixed-wrapper {
    min-height: 91px;
  }
  header.header {
    position: absolute;
    top: 0;
    padding: 20px 0 0;
    z-index: 9;
    width: 100%;
  }
  header .page-center {
    padding-right: 65px;
    padding-left: 65px;
  }
}

@media (max-width:1200px) and (min-width:992px) {
  .custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(4)>ul {
    right: 0;
    left: auto;
  }
}

@media (max-width:1199px) {
  header .page-center {
    padding-right: 25px;
    padding-left: 25px;
  }
}


@media (max-width:991px) {
  .no-banner .fixed-wrapper {
    min-height: 86px;
  }
  .nav-bar .navbar-collapse {
    display: none;
  }
  .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    border-radius: .25rem;
    cursor: pointer;
  }
  .navbar-toggler .bar1,
  .navbar-toggler .bar2,
  .navbar-toggler .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
  }
  header.header {
    padding: 8px 0 7px;
  }
  .mobile-open .navbar-toggler .bar1 {
    -webkit-transform: rotate( -45deg  ) translate(-9px, 6px);
    transform: rotate( -45deg ) translate(-8px, 5px);
  }
  .mobile-open .navbar-toggler .bar2 {
    opacity: 0;
  }
  .mobile-open .navbar-toggler .bar3 {
    -webkit-transform: rotate( 45deg ) translate(-8px, -8px);
    transform: rotate(  45deg ) translate(-11px, -8px);
  }
  .nav-bar .navbar-collapse {
    max-height: calc(100vh - 82px);
    overflow-y: auto !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul {
    background: #000000ad;
    padding: 15px;
    background: linear-gradient(to right, rgb(83, 105, 118), rgb(41, 46, 73));
    background-image: linear-gradient( 90deg , rgb(213, 36, 81) 0%, rgba(135, 19, 51, 0.99) 100%, rgba(0, 212, 255, 0) 100%);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    margin-right: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    position: unset;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul {
    position: unset;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a:after {
    right: -10px;
  }
  .fixed header.header {
    padding: 8px 0 7px;
  }
  .custom-menu-primary.desktop {
    display: none;
  }
  .child-trigger {
    position: absolute;
    width: 25px;
    height: 35px;
    top: 0;
    right: -14px;
    cursor: pointer;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li .child-trigger {
    z-index: 9999;
    right: 15px;
    width: 20px;
  }
}


@media (max-width:767px) {
  header .page-center {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width:480px) {
  .nav-bar .logo-wrapper {
    margin-left: -15px;
  }
}


/* Custom Mega menu style  */
/* custom Mega Menu style */
  #menu ul li ul {
    z-index: -1 !important;
    left: -50px;
    right: -50px;
    width: 115% !important;
}
.hs-blog-listing header.header{
  padding: 0px 0px;
} 
    .no-banner .hs-blog-listing .fixed-wrapper {
        min-height: auto;
    }
.nav-bar {
    width: 100%;
} 
.header-button{
    background-color: #00E76D;
    color: #000;
    display: inline-block;
    font-family: Lato, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    min-width: 105px;
    text-align: center;
    padding: 11px 17px;
    flex: 0 0 auto;
    width: auto;
}
.header-button:hover {
    background-color: rgba(57, 145, 63, 1.0);
    color: rgba(255, 255, 255, 1.0);
    padding-top: px;
    padding-bottom: px;
    padding-left: px;
    padding-right: px;
}
.header-button.mobile{
    background-color: #00E76D;
    color: #000;
    display: inline-block;
    font-family: Lato, sans-serif;
    font-size: 20px;
    line-height:20px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    min-width: 100%;
    padding: 18.5px 17px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin: 0px auto;
}

.mobile-btn{
  padding: 0px 20px 40px;
  
}
.header-button.mobile:hover {
    background-color: #00E76D;
    border-color: var(--success-hover);
    color: #fff;
    color: rgba(255, 255, 255, 1.0);
    padding-top: px;
    padding-bottom: px;
    padding-left: px;
    padding-right: px;
}
 .header-button.mobile {
    display: none;
}
.mobile-btn{
    display: none;
  }
.nav-bar .logo-wrapper {
    
    flex: 0 0 auto;
    width: auto;
  padding-bottom: 0px;
    padding-top: 0px;
}
.nav-bar .logo-wrapper img {
    height: 40px;
    width: auto !important;
} 

/* .no-banner .hs-blog-listing  .fixed-wrapper {
    min-height: auto;
} */
.nav-bar.nav-bar-custom {
    display: flex;
    justify-content: center;
}
#menu li>ul li a {
    
    font-weight: 500;
}
#menu {
    padding: 0;
    text-align: center;
    position: relative;
}
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}
#menu ul li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 17px;
    font-weight:700;
}
#menu ul li {
    display: inline-block;
}
#menu > ul > li > ul {
    width: 100%;
    background: var(--primary);
    padding: 20px;
    position: absolute;
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
}

#menu li>ul {
    visibility: hidden;
    opacity: 0;
}
#menu ul li:hover ul {
    z-index: 999 !important;
}
#menu ul.main-menu-list> li.parent-items:hover>ul {
    visibility: visible;
    opacity: 1;
}
#menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    background: none;
    flex: 1 0 0%;
}
#menu li>ul li {
    border-bottom: var(--primary) 1px solid;
    display: block;
    margin: 0;
    text-align: left;
}

#menu > ul > li > ul > li > a {
    color: #B4D0D4 !important;
    padding: 1em 0;
    width: 85%;
    display: inline-block;
    border-bottom: 1px solid rgba(93, 188, 99, 0.3) !important;
    text-transform: uppercase;
    margin: 0 auto !important;
    font-weight: bold;
}
#menu li > ul li a {
    font-size: 17px;
}
#menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
    flex-wrap: inherit;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}
#menu li .sub-menu {
    background-color: #17292c;
    min-width: 200px;
    white-space: nowrap;
}
#menu li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
#menu ul li ul ul {
    left: 0;
    width: 90% !important;
}
#menu li>ul {
    min-width: 200px;
    white-space: nowrap;
    background-color: #17292c;
}
.mega-menu-wrapper-div{
  justify-content: center !important;
}
#menu li.parent-items.menu-item-has-children:hover > a:after {
    content: '\f077';
}
#menu li.parent-items.menu-item-has-children > a:after {
    content: '\f078';
    font: normal normal normal 14px/1 FontAwesome!important;
    margin-left: 5px;
    position: relative;
    top: 0px;
}
#menu ul.main-menu-list > li a{
  padding: 29px 20px;
  margin-right: 30px;
}
#menu ul.main-menu-list > li .sub-menu a{
  padding: 10px 10px;
  margin-right: 0px;
}
#menu ul li.parent-items:hover> a {
    border-bottom: #5dbc63 solid 2px;
}
#menu ul li a:hover{
  color: #5dbc63;
}
ul.sub-menu.adjusted-width {
    width: 100% !important;
    max-width: 232px !important;
    display: flex;
    justify-content: flex-end;
    margin-right: 0px !important;
    right: 30px !important;
} 
@media screen and (max-width:1200px){
  #menu ul.main-menu-list > li a {
    padding: 30px 10px;
    margin-right: 15px;
} 
}
@media screen and (max-width:1023px){
     .mobile_menu_wrap_test ul.main_menu2 li ul.our-work-menu li>a.nav-link {
        padding-left: 20px;
        padding-right: 20px;
        color: #fff;
        display: block;
        font-size: 16px;
        padding-bottom: 20px;
        padding-top: 20px;
        position: relative;
/*         text-transform: uppercase; */
        font-weight: 700;
        line-height: normal;
        text-align: left;
        text-decoration: none;
    }
  .hs-blog-listing header.header{
  padding: 15px 0px;
} 
  .no-banner .hs-blog-listing .fixed-wrapper{
  min-height: 70px !important;
}
  .header-button {
    display: none;
}
  .header-button.mobile {
    display: block;
}
  .overflow_hidden {
            overflow: hidden;
        }
  .mobile_menu_wrap_test.menu_show2 .mobile-btn {
    position: fixed;
    bottom: 30px;
    display: block;
    width: 100%;
        }
/*   .mobile-btn{
    height: 45%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  } */
/*   .mobile_menu_wrap_test.menu_show2{
    overflow: scroll;
  }  */
  .nav-bar.nav-bar-custom{
    flex: 1 0 0%;
    justify-content: flex-end;
  }
  .custom-menu-primary.desktop{
    display: none;
  }
  .custom-menu-primary.mobile{
    display: block;
  }
  .custom-menu-primary.mobile ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
  .mobile_menu_wrap_test ul li.hassub .sub_menu_open2 {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
    padding: 21px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    header.site-header ul li a {
        margin-right: 0;
    }
    .mobile_menu_wrap_test ul.main_menu2 li a {
      font-size: 16px;
      text-decoration: none;
      text-align: left;
      font-weight: 700;
      line-height: normal;
      color: #fff;
  }
  .mobile_menu_wrap_test ul.main_menu2 li {
    padding: 20px;
    position: relative;
  }
      header.site-header ul li a {
        margin-right: 0;
    }
/* .main_menu2 li.parent-items.menu-item-has-children:hover > a.sub_menu_open2:after {
    content: '\f077';
} */
.main_menu2 li.parent-items.menu-item-has-children > a.sub_menu_open2:after {
  content: '\f054';
  font: normal normal normal 14px/1 FontAwesome!important;
  margin-left: 5px;
  position: relative;
  top: 0px;
} 
  .main_menu2 li .sub-menu.show_submenu2 .menu-item.hassub.newkhan > a.nav-link.active:before {
  content: '\f077';
}
.main_menu2 li .sub-menu.show_submenu2 .menu-item.hassub.newkhan > a.nav-link:before {
  content: '\f078';
  font: normal normal normal 14px/1 FontAwesome!important;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 18px !important;
}  
.mobile_menu_wrap_test ul li li > a.active {
  color: #5dbc63 !important;
  }
  .main_menu2 li .sub-menu.show_submenu2 .menu-item.hassub.newkhan > a.sub_menu_open2:after{
    display:none;
  }
.mobile_menu_wrap_test ul li.hassub ul {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  background: #17292c;
  margin: 0;
  transition: all linear 0.3s;
  padding: 90px 0 100px;
  z-index: 9;
  visibility: hidden;
  }
  .mobile_menu_wrap_test ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 15px;
  }
  .mobile_menu_wrap_test ul li.hassub ul.show_submenu2 {
    visibility: visible;
    right: 0;
  }
  .mobile_menu_wrap_test ul li.hassub ul li.back_to_mainmenu {
    position: absolute;
    top: 0;
    width: 100%;
    background: #17292c;
    display: inline-block;
    z-index: 999;
    padding:20px;
  }
  .bi-chevron-left::before {
    content: "\f053";
    font: normal normal normal 14px / 1 FontAwesome !important;
}
  .mobile_menu_wrap_test ul.main_menu2 li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile_menu_wrap_test ul li.hassub ul li.back_to_mainmenu a {
    font-size: 15px;
    color: #bbb;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
  }
  .mobile_menu_wrap_test {
    position: fixed;
    top: 60px;
    bottom: 0;
    right: -100%;
    z-index: 99999;
    background: #17292c;
    padding: 0 0 75px;
    transition: all linear 0.2s;
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    width: 100%;
  }
  .mobile_menu_wrap_test.menu_show2 {
    right: 0;
  }
  .mobile_menu_wrap_test ul li.hassub li.hassub > a {
    color: #B4D0D4;
    text-transform: uppercase;
  }
  .mobile_menu_wrap_test ul li.hassub li.hassub>a {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    display: block;
  }
  
  .mobile_menu_wrap_test ul li.hassub ul ul li {
    border-bottom: 0 !important;
  }
  .mobile_menu_wrap_test ul li.hassub li.hassub .sub-menu-second li {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right:20px;
  }
  .mobile_menu_wrap_test ul li.hassub li.hassub.newkhan>a{
    padding-left: 20px;
    padding-right:20px;
  }
  .mobile_menu_wrap_test ul.main_menu2 li .sub-menu li{ 
    padding:0px;
  }
  .mobile_menu_wrap_test ul li.hassub ul ul {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100%;
    background: #17292c;
    margin: 0;
    -webkit-transition: all linear 0.3s 0s;
    transition: all linear 0.3s 0s;
    padding: 0 !important;
    z-index: 9;
    visibility: hidden !important;
    height: 0;
    display: none !important;
  }
  .mobile_menu_wrap_test ul li.hassub ul ul.show_submenu2.active {
    visibility: visible !important;
  }
  .mobile_menu_wrap_test ul li.hassub ul ul.active {
    padding: 0 0 40px !important;
    visibility: visible !important;
    height: auto !important;
    display: block !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }
  .menu-open .toggle-icon .bar2 {
    opacity: 0;
  }
  .menu-open .toggle-icon .bar1 {
    -webkit-transform: rotate(-45deg) translate(-2px,8px);
    transform: rotate(-45deg) translate(-2px,8px);
  }
  .menu-open .toggle-icon .bar3 {
    -webkit-transform: rotate(45deg) translate(-3px,-01px);
    transform: rotate(45deg) translate(-3px,-10px);
  }
  .toggle-icon {
    background-color: transparent !important;
    border: 1px solid transparent !important;
    border-radius: .25rem;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: .25rem .75rem;
    z-index: 999999;
  }
  .toggle-icon .bar1, .toggle-icon .bar2, .toggle-icon .bar3 {
    background-color: #fff;
    height: 2px;
    margin: 6px 0;
    transition: .4s;
    width: 26px;
  }
  
}

@media screen and (max-width:767px){
  .hs-blog-listing .nav-bar .logo-wrapper {
        margin-left: 0px !important;
    }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

footer.footer {
  display: block;
  padding: 12% 0 0%;
  background-color: #172f32;
}

footer .bottom-section {
  background-color: #31f3a9;
  height: 70px;
  padding: 15px 40px;
}

.bottom-section .container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
}

.bottom-section .container .copyright {
  float: left;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 48px;
  color: #000000;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.bottom-section .container .footer-right {
  float: right;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 48px;
  color: #000000;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.copyright p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.copyright p a {
  color: #000;
}

.footer-right p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  font-weight: 600;
}

.footer-right p a {
  color: #000;
}

.footer-right p i {
  color: #f62459;
}

.fa {
  font: normal normal normal 14px/1 FontAwesome !important;
}

.fa, .fas, .far, .fal, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-rendering: auto;
}

.fa-heart:before {
  content: "\f004";
}

footer .top-section {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 75px;
  padding-left: 75px;
}

.top-section .top-section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.top-section-inner .first,
.top-section-inner .second,
.top-section-inner .third,
.top-section-inner .fourth {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.top-section-inner .first {
  width: 50%;
}

.top-section-inner .second {
  width: 50%;
}

.top-section-inner .links {
  padding-bottom: 30px;
}

.top-section-inner .first ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 40px;
}

.top-section-inner .first ul li {
  list-style: none;
}

.top-section-inner .first ul li a {
  display: block;
  padding: 0;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 40px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  list-style: none;
}

.top-section-inner .second ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 40px;
}

.top-section-inner .second ul li {
  list-style: none;
}

.top-section-inner .second ul li a {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 40px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  list-style: none;
  display: block;
  padding: 0;
}

.social ul {
  padding: 0;
  margin: 0;
}

.social ul li {
  float: left;
  display: inline;
  list-style: none;
  padding: 23px 25px;
}

.social ul li i {
  color: #fff !important;
  font-size: 20px !important;
  letter-spacing: 0px !important;
  line-height: 48px !important;
  font-weight: 400 !important;
}

.fa-facebook:before {
  content: "\f09a";
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-twitter:before {
  content: "\f099";
}

.social ul li a {
  display: inline;
}

.top-section-inner .fourth ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.top-section-inner .fourth ul li {
  list-style: none;
  padding-right: 32%;
}

.top-section-inner .fourth ul li i {
  padding-right: 12px;
  font-size: 22px !important;
  letter-spacing: 0px;
  line-height: 41px !important;
  color: #00e76d;
  font-weight: 400 !important;
  text-align: right;
  position: absolute;
  margin-left: -30px;
}

.top-section-inner .fourth ul li a {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 40px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  list-style: none;
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-phone:before {
  content: "\f095";
}

.fa-envelope:before {
  content: "\f0e0";
}

footer.footer.lp-footer {
  padding: 0;
}

.footer-logo .logo-inner img {
  width: 182px !important;
}


@media (min-width:768px) {
  .top-section-inner .first {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .top-section-inner .second {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .top-section-inner .third {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .top-section-inner .fourth {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width:1680px) {
  footer .top-section {
    padding-right: 65px;
    padding-left: 65px;
  }
  .top-section-inner .fourth ul li {
    padding-right: 0%;
  }
  .bottom-section .container {
    padding-right: 65px;
    padding-left: 65px;
  }
}

@media (max-width:1240px) {
  .top-section-inner .first ul li a,
  .top-section-inner .second ul li a {
    font-size: 14px;
    line-height: 36px;
  }
  .top-section-inner .fourth ul li a {
    font-size: 14px;
    line-height: 36px;
  }
}


@media (max-width:1199px) {
  .bottom-section .container {
    padding-right: 25px;
    padding-left: 25px;
  }
  footer .top-section {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (max-width:1024px) {
  footer.footer {
    padding: 18% 0 0%;
  }
}

@media (max-width:991px) {
  .top-section-inner .first ul {
    padding: 0;
  }
  .top-section-inner .first ul li a,
  .top-section-inner .second ul li a {
    font-size: 14px;
    line-height: 36px;
  }
  .top-section-inner .second ul {
    padding: 0;
  }
  .top-section-inner .fourth ul {
    padding: 0;
  }
}

@media (max-width:767px) {
  footer .bottom-section {
    height: 110px;
    padding: 15px 40px;
  }
  .bottom-section .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .bottom-section .container .copyright {
    text-align: center;
    float: none;
  }
  .bottom-section .container .footer-right {
    float: none;
    text-align: center;
  }
  .copyright p {
    font-size: 16px;
    line-height: 36px;
    padding-top: 10px;
  }
  footer .top-section {
    padding-right: 15px;
    padding-left: 15px;
  }
  .top-section-inner .links {
    padding-bottom: 0;
  }
  .top-section-inner .fourth ul {
    padding-left: 40px;
  }
  .social ul li {
    padding: 10px 25px;
    padding-top: 4px;
  }
  .top-section-inner .first ul,
  .top-section-inner .second ul {
    padding: 0 10px;
  }
  footer.footer {
    padding: 5% 0 0%;
  }
  footer.footer.lp-footer .bottom-section {
    height: 85px;
  }
}

@media (max-width:500px) {
  footer.footer.lp-footer .bottom-section {
    height: 97px;
  }
}

@media (max-width:480px) {
  footer .bottom-section {
    height: 130px;
    padding: 0;
  }
}
/* ******************************************************************************
*********************************************************************************
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 */


.blog-wrapper {
  display: block;
  padding: 5% 0 0;
  padding-top: 74px;
  padding-bottom: 30px;
}

.blog-wrapper .blog-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
}

.blog-heading .content-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}

.blog-heading .content-center .md {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.blog-heading .content-center .md p {
  margin-bottom: 29px;
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 52px;
  color: #53645b;
  text-align: center;
  padding: 0% 5% 3%;
  font-family: "Josefin Sans";
  font-weight: 400;
  padding-bottom: 0;
}

.blog-select-wrap ul.l_tinynav1 {
  display: none;
}

.blog-wrapper .blog-select-wrap {
  text-align: center;
}

.blog-select-wrap select {
  word-wrap: normal;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-size: 19px;
  line-height: 25px;
  background-image: url(https://8808890.fs1.hubspotusercontent-na1.net/hubfs/8808890/raw_assets/public/MDRG_June2021/images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: 92% center;
  background-color: #0a1728;
  color: #fff;
  border: none;
  max-width: 323px;
  width: 100%;
  height: 49px;
  padding: 6px 18px;
  margin-bottom: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.blog-select-wrap h3 {
  margin: 0;
}

.blog-wrapper .blog-index {
  display: flex;
  flex-flow: wrap;
}

.blog-index .index-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  width: 100%;
}

.blog-index .index-inner .post-item {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.blog-pagination {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
  margin-top: 30px;
}

.post-item a.blog-thumb {
  display: block;
  margin-bottom: 18px;
}

.post-item a.blog-thumb .blog-thumb-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 48.4%;
  position: relative;
}

.blog-thumb-image .blog-thumb-hover {
  background-color: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.blog-thumb-image .blog-thumb-hover span.btn.btn--hollow {
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  line-height: 1.5;
  font-size: 19px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  border-radius: 0;
  padding: 13px 15px;
  display: table;
  min-width: 251px;
  border: 2px solid currentColor;
  border-color: #fff;
  color: #fff;
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.post-item a.blog-thumb .blog-thumb-content {
  padding: 30px 50px 30px 0;
}

.post-item a.blog-thumb .blog-thumb-content h3 {
  margin-top: 0;
  font-size: 26px;
  line-height: 1.38;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  margin-bottom: 4px;
}

.post-item a.blog-thumb .blog-thumb-content span.authorName {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 25px;
  color: #53645b;
  text-transform: capitalize;
}

.post-item a.blog-thumb:hover {
  color: #000;
  text-decoration: none;
  outline: 0;
  transition: all 0.3s ease-in;
}

a.blog-thumb:hover .blog-thumb-image .blog-thumb-hover {
  opacity: 1;
}

.blog-thumb-image .blog-thumb-hover span.btn.btn--hollow:hover {
  background-color: #fff;
  color: #212529;  
}

.blog-pagination ul {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
}

.blog-pagination ul li {
  color: #53645b;
  font-size: 19px;
  padding: 6px 7px;
  display: inline-block;
}

.blog-pagination ul li a {
  color: #53645b;
}

.blog-pagination ul li a.active {
  color: #284f97;
}


/* post page css */
.post-banner {
  display: block;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  padding: 174px 0 89px;
  text-align: center;
  background-color: #17292c;
}

.post-banner .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
  display: flex;
  height: 60%;
}

.post-banner .post-banner-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  margin: 0;
  width: 100%;
}

.post-banner-inner .p-inner {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  align-self: flex-end;
}

.p-inner .case-stydy {
  padding: 0;
}

.case-stydy .heading-bold {
  text-align: center;
  color: #ffffff;
}

.case-stydy .heading-bold p {
  font-size: 19px;
  line-height: 1.53;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-bottom: 29px;
}

.case-stydy .heading-bold h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  color: #ffffff;
  font-family: "Josefin Sans";
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
}

.post-wrapper {
  display: block;
  padding-top: 60px;
  padding-bottom: 60px;
}

.post-wrapper .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
}

.post-wrapper .post-wrapper-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.post-wrapper .post-wrapper-inner .post-wrapper-i {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.post-wrapper-i .author-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.author-section img {
  height: auto;
  margin-right: 27px;
  max-width: 92px;
  border-radius: 50%;
  height: 92px;
  width: 92px;
}

.author-section .authorDataRight h2 {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 25px;
  color: #53645b;
  margin-bottom: 0;
  margin-top: 15px;
  font-weight: bold;
}

.author-section .authorDataRight h3 {
  margin-top: 0;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 25px;
  color: #53645b;
  margin-bottom: 0;
}

.post-wrapper-i .page-content {
  max-width: 90%;
}

.post-wrapper-i .page-content p {
  font-size: 19px;
  line-height: 1.53;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin-bottom: 29px;
}

.related-post-wrapper {
  display: block;
  padding-top: 70px;
  padding-bottom: 70px;
}

.related-post-wrapper .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 75px;
  padding-left: 75px;
}

.related-post-wrapper .text-center {
  text-align: center!important;
}

.related-post-wrapper .text-center h2 {
  margin-top: 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.25;
  font-family: "Josefin Sans";
  color: #333333;
  margin-bottom: 70px;
}

.rel-wrapper .rel-wrapper-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.rel-wrapper-inner .rel-wrapper-i {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.related_post-item a {
  display: block;
}

.related_post-item a .blog-img {
  width: 100%;
  height: 365px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}

.related_post-item .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px 0px;
}

.related_post-item .card-body .card-title {
  margin-bottom: .75rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #0b1729;
}

.related_post-item .card-body p.card-text {
  padding: 0;
  margin: 0;
  color: #0b1729;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-size: 26px;
  line-height: 32px;
  max-width: 68%;
}

.related_post-item:hover .card-body .card-title {
  color: #284f97;
}

.related_post-item:hover .card-body p.card-text {
  color: #284f97;
}



/* end */



section.cta-bg {
  display: block;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  padding: 105px 0 126px;
}

.cta-bg .cta-bg-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cta-bg .cta-bg-inner .c-inner {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.c-inner h2 {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
  color: #f52459;
  margin-bottom: 11px;
}

.c-inner p {
  font-weight: 400;
  margin-bottom: 29px;
  font-size: 40px;
  line-height: 1.25;
  font-family: "Josefin Sans";
}

.c-inner a.btn {
  outline: 0;
  text-align: center;
  vertical-align: middle;
  font-size: 19px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  border-radius: 0;
  padding: 13px 15px;
  display: table;
  min-width: 251px;
  border: 2px solid transparent;
  background-color: #f52459;
  color: #fff;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  margin: 30px auto 0;
  line-height: 1.5;
}

.c-inner a.btn:hover {
  color: #fff;
  background-color: #7AA0D3;
}

.filter-link-count {
  display: none;
}

.blog-comments {
  max-width: 800px !important;
}

.at-share-dock-outer.addthis-smartlayers.addthis-smartlayers-mobile {
  display: none;
}

.post-item-inner.no-image a.blog-thumb .blog-thumb-image .blog-thumb-hover {
  opacity: 1;
}


@media (min-width:576px) {
  .blog-heading .content-center .md {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .blog-index .index-inner .post-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .blog-pagination {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .post-banner-inner .p-inner {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .post-wrapper .post-wrapper-inner .post-wrapper-i {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .rel-wrapper-inner .rel-wrapper-i {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}



@media (min-width:768px) {
  .blog-heading .content-center .md {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .blog-index .index-inner .post-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .rel-wrapper-inner .rel-wrapper-i {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}


@media (min-width:1200px) {
  .blog-wrapper .blog-index {
    padding-left: 25px;
    padding-right: 25px;
  }
  .case-stydy .heading-bold p {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 34px;
  }
  .case-stydy .heading-bold h1 {
    font-size: 72px;
    line-height: 80px;
  }
}


@media (max-width:1680px) {
  .blog-wrapper .blog-container {
    padding-right: 65px;
    padding-left: 65px;
  }
  .post-banner .container {
    padding-right: 65px;
    padding-left: 65px;
  }
  .post-wrapper .container {
    padding-right: 65px;
    padding-left: 65px;
  }
  .related-post-wrapper .container {
    padding-right: 65px;
    padding-left: 65px;
  }
}



@media (max-width:1240px) {
  .c-inner h2 {
    font-size: 56px;
  }
}


@media (max-width:1199px) {
  .blog-wrapper .blog-container {
    padding-right: 25px;
    padding-left: 25px;
  }
  .post-banner .container {
    padding-right: 25px;
    padding-left: 25px;
  }
  .case-stydy .heading-bold {
    font-size: 65px;
    line-height: 70px;
  }
  .case-stydy .heading-bold h1 {
    font-size: 65px;
    line-height: 70px;
  }
  .post-wrapper .container {
    padding-right: 25px;
    padding-left: 25px;
  }
  .related-post-wrapper .container {
    padding-right: 25px;
    padding-left: 25px;
  }
}


@media (max-width:991px) {
  .blog-heading .content-center .md p {
    font-size: 36px;
    line-height: 42px;
  }
  .blog-wrapper {
    padding-top: 60px;
  }
  .blog-select-wrap select {
    margin-bottom: 40px;
  }
  .post-item a.blog-thumb .blog-thumb-content {
    padding: 20px 0;
  }
  .post-item a.blog-thumb .blog-thumb-content h3 {
    font-size: 24px;
  }
  section.cta-bg {
    padding: 90px 0;
  }
  .c-inner p {
    font-size: 32px;
  }
  .c-inner a.btn {
    min-width: 180px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .case-stydy .heading-bold p {
    font-size: 18px;
  }
  .post-wrapper-i .page-content p {
    font-size: 18px;
  }
  .related-post-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .related-post-wrapper .text-center h2 {
    margin-bottom: 50px;
    font-size: 32px;
  }
  .related_post-item .card-body p.card-text {
    font-size: 23px;
    line-height: 29px;
    max-width: 100%;
  }
  hr {
    margin: 0;
  }
  .addthis-smartlayers.addthis-smartlayers-desktop {
    display: none;
  }
  .at-share-dock-outer.addthis-smartlayers.addthis-smartlayers-mobile {
    display: block;
  }
  .blog-thumb-image .blog-thumb-hover span.btn.btn--hollow {
    min-width: 180px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .blog-index .index-inner {
    margin-left: 0;
  }
  .post-wrapper .post-wrapper-inner {
    margin-left: 0;
  }
  .post-wrapper-i .page-content {
    max-width: 100%;
  }
}


@media (max-width:767px) {
  .blog-wrapper {
    padding-top: 40px;
  }
  .blog-wrapper .blog-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .blog-heading .content-center .md p {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 36px;
  }
  .blog-select-wrap select {
    font-size: 16px;
    line-height: 22px;
    background-size: 14px;
    margin-bottom: 30px;
    height: 40px;
  }
  section.cta-bg {
    padding: 70px 0;
  }
  .c-inner h2 {
    font-size: 36px;
  }
  .c-inner p {
    font-size: 30px;
  }
  .c-inner a.btn {
    font-size: 16px;
    min-width: 130px;
    padding: 10px 15px;
  }
  .post-banner {
    height: inherit !important;
    padding-top: 110px;
  }
  .post-banner .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .case-stydy .heading-bold {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 40px;
  }
  .case-stydy .heading-bold p {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .case-stydy .heading-bold h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .post-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .post-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .author-section img {
    max-width: 80px;
    margin-right: 15px;
    height: auto;
  }
  .author-section .authorDataRight h2 {
    margin-top: 0;
  }
  .post-wrapper-i .page-content p {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .related-post-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .related-post-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .related-post-wrapper .text-center h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .related_post-item .card-body p.card-text {
    font-size: 21px;
    line-height: 27px;
  }
  .blog-thumb-image .blog-thumb-hover span.btn.btn--hollow {
    font-size: 16px;
    min-width: 130px;
    padding: 10px 15px;
  }
}




@media (max-width:580px) {
  .case-stydy .heading-bold h1 {
    font-size: 34px;
    line-height: 36px;
  }
}




@media (max-width:440px) {
  .post-item a.blog-thumb .blog-thumb-content h3 {
    font-size: 20px;
  }
  .c-inner h2 {
    font-size: 23px;
  }
  .c-inner p {
    font-size: 20px;
  }
  .c-inner a.btn {
    font-size: 14px;
    min-width: 130px;
    padding: 8px 12px;
  }
  .blog-thumb-image .blog-thumb-hover span.btn.btn--hollow {
    font-size: 14px;
    min-width: 130px;
    padding: 8px 12px;
  }
}






.content-wrapper { 
  margin: 0 auto;
}

.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}


.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #F8FAFC;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.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: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* 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 form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */


ul.no-list.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-type-email_simple_subscription form#email-prefs-form {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.systems-page form{
  max-width:700px;

}
.systems-page input[type="email"] {
  width: 100% !important;
}
.widget-type-email_subscriptions form {
  width: 100%;
  max-width: 100%;
}
p.header {
  background: none;
}

.systems-page input[type="password"] {
  height: auto !important;
}

.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: Lato, 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 0px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  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: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  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: #494a52;
}

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

@media(max-width:767px){
  .systems-page h1{
    font-size:25px;
  }
  .systems-page h2{
    font-size:20px;
  }
  h1.error-page_heading {
    font-size: 25px;
  }
  .systems-page form{
    max-width:100%;
  }
}

@media screen and (min-width: 1024px) {
#menu ul li ul {
	height: 0px;
	overflow: hidden;
}
#menu ul li:hover ul {
	height: auto;
	overflow: visible;
}
}