/* ******************************************************************************
*********************************************************************************
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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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.
 */

/* 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.
 */


/* 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 */
  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.
*********************************************************************************
****************************************************************************** */

.banner-area .dnd-section,
.banner-area .dnd-section > .row-fluid{
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.body-container-wrapper {
  padding-top: 80px;
  background-color: white;
  position: relative;
  transition: all 0.7s ease;
  transform: translate(0px, 0px);
}
.dnd-section > .row-fluid, .page-center, .content-wrapper {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px;
  padding-right: 90px;
}


@media(max-width: 1000px) {
  .dnd-section > .row-fluid, .page-center, .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .body-container-wrapper {
    padding-top: 58px;
  }


}


@media(max-width: 480px) {
  .dnd-section > .row-fluid, .page-center, .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }



}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face { 
  font-family: "Lovelo";
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/Lovelo_Black.eot") format("embedded-opentype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/Lovelo/Lovelo_Black.woff) format("woff"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/Lovelo/Lovelo_Black.ttf) format("truetype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/Lovelo/Lovelo_Black.svg) format("svg");
  font-style: normal; 
  font-weight: normal;
}

@font-face { 
  font-family: "Open Sans";
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/OpenSans-Regular-webfont.eot") format("embedded-opentype"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansRegular/OpenSans-Regular-webfont.woff) format("woff"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansRegular/OpenSans-Regular-webfont.ttf) format("truetype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansRegular/OpenSans-Regular-webfont.svg) format("svg");
  font-style: normal; 
  font-weight: 400; 
}

@font-face { 
  font-family: "Open Sans";
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/OpenSans-Semibold-webfont.eot#iefix") format("embedded-opentype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansSemiBold/OpenSans-Semibold-webfont.woff) format("woff"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansSemiBold/OpenSans-Semibold-webfont.ttf) format("truetype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansSemiBold/OpenSans-Semibold-webfont.svg) format("svg");
  font-style: normal;
  font-weight: 600; 
}
@font-face {
  font-family: "Open Sans";
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/OpenSansBold-webfont.eot") format("embedded-opentype"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansBold/OpenSansBold-webfont.woff) format("woff"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansBold/OpenSansBold-webfont.ttf) format("truetype"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansBold/OpenSansBold-webfont.svg) format("svg"); 
  font-style: normal; 
  font-weight: 700;
}

@font-face { 
  font-family: "icomoon";
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/icomoon.eot") format("embedded-opentype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/icomoon/icomoon.woff) format("woff"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/icomoon/icomoon.ttf) format("truetype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/icomoon/icomoon.svg) format("svg");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "iconsmind"; 
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/iconsmind.eot") format("embedded-opentype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/iconsmind/iconsmind.ttf) format("truetype"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/iconsmind/iconsmind.woff) format("woff"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/iconsmind/iconsmind.svg) format("svg");
  font-style: normal;
  font-weight: normal; 
}
@font-face {
  font-family: "Open Sans"; 
  src: url("https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/StrongerThanStigma_June2021/Fonts/OpenSans-Light-webfont.eot") format("embedded-opentype"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansLight/OpenSans-Light-webfont.woff) format("woff"),
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansLight/OpenSans-Light-webfont.ttf) format("truetype"), 
    url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/Fonts/OpenSansLight/OpenSans-Light-webfont.svg) format("svg");
  font-style: normal;
  font-weight: 300;
}

body {
  background: white;
  font-family: 'Open Sans',sans-serif;
  color: #676767;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

p {
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  padding-bottom: 27px;
}

/* Anchor Links */
a {
  text-decoration: none;
  transition: color 0.2s;
  -moz-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  color: #4096ef;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 7px;
  line-height: 1;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0px;
}

h1 {
  font-size: 2.1rem;
}

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

h3 {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

h4 {
  font-size: 1.175rem;
  margin-bottom: 8px;
  line-height: 1.78;
}

h5 {
  font-size: 1rem;
  letter-spacing: .5px;
}

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

.bold, strong, b {
  font-weight: 600;
}

code {
  vertical-align: bottom;
}

ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.hs_cos_wrapper_type_rich_text ul:not(.reset-list), 
.hs-richtext ul:not(.reset-list) {
  margin-left: 30px;
  margin-bottom: 30px;
}
.hs_cos_wrapper_type_rich_text ul:not(.reset-list) li, 
.hs-richtext ul:not(.reset-list) li {
  list-style: disc;
  list-style-position: outside;
}

.hs_cos_wrapper_type_rich_text ol:not(.reset-list),
.hs-richtext ol:not(.reset-list) {
  margin-left: 30px;
  margin-bottom: 30px;
}
.hs_cos_wrapper_type_rich_text ol:not(.reset-list) li, 
.hs-richtext ol:not(.reset-list) li {
  list-style: decimal;
  list-style-position: outside;
}


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

blockquote {
  padding-left: 0px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  font-weight: 300;
  font-family: Merriweather, sans-serif;
  font-size: 19px;
  line-height: 38px;
}

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

:focus {
  outline: none;
}

.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: 767px;
  margin-bottom: 30px;
}

.hs-button {
  margin: 0;
  text-align: center;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  text-decoration: none;
  -webkit-appearance: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -moz-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -o-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  width: auto;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: normal;
  background-color: #4096ef;
  padding: 15px 22px;
  white-space: normal;
}

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

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


.hs-form label {
  color: #33475b;
  display: inline-block;
  width: auto;
  text-align: left;
  -webkit-font-smoothing: subpixel-antialiased;
}

.hs-form .hs-error-msgs label, .hs-error-msgs label {
  font-size: 1em;
  font-weight: normal;
  display: block;
  background: none repeat scroll 0 0 #fff;
  top: -3px;
  padding: 2px 6px;
  border: 0px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
  -o-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  color: #4096ef;
}
.hs-input, input[type="password"] {
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  line-height: 22px;
  color: #555;
  font-family: 'Open Sans';
  font-weight: 400;
  width: 100%;
  background-color: transparent;
  border: 1px solid #ccc;
  box-shadow: none;
  -webkit-box-shadow: none;
  font-size: 16px;
  -o-box-shadow: none;
  padding: 16px;
  max-width: 100%;
}
input[type="password"]{
  height: auto !important;
  margin: 0 0 27px !Important;
}
.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_error_rollup ul.no-list.hs-error-msgs label {
  background-color: #fff;
  color: #000 !important;
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  border-color: #ffb900;
  box-shadow: none;
  margin-left: 0;
}
.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;
  min-height: 250px;
}

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: #cccccc;
}
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: #999999;
}

.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;
  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;
  padding-left: 0;
  margin-left: 0;
}

.field, .hs-form-field, div#hs-search-module .hs-input {
  margin-bottom: 27px;
}

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

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

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


/*================================================================ Contact Page ====================================================================*/

.body-container-wrapper.contact-page {
  background: #fff;
}
.contact-section {
  position: relative;
  width: 100%;
  z-index: 10;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-column {
  min-height: 1px;
  -webkit-backface-visibility: hidden;
  opacity: 0;
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -o-transform: scale(0.75);
  -moz-transform: scale(0.75);
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  padding: 5%;
  width: 100%;
  transition: transform 650ms linear 0s, opacity 650ms linear 0s;
}
.contact-column.animate {
  transform: scale(1, 1);
  opacity: 1;
}
.contact-column .dnd-section > .row-fluid {
  padding: 0;
}
.contact-column.contact-columnR:before {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: ' ';
  display: block;
  opacity: 0;
  transition: background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.contact-column.contact-columnR.animate:before {
  background-color: #3452ff;
  opacity: 0.9;
}
.contact-column .dnd-section {
  position: relative;
  z-index: 10;
}
.contact_body,
.contact_body h1,
.contact_body h2,
.contact_body h3,
.contact_body h4,
.contact_body h5,
.contact_body h6{
  color: #fff;
}
.contact_form form {
  max-width: 100%;
  margin: 0;
}
.contact_form .hs-form-required {
  display: none;
}
.contact-column > .container-fluid {
  height: 100%;
  width: 100%;
}
.hs_cos_wrapper_type_rich_text p:last-child {
  padding-bottom: 0px;
}
.contact_body .hs_cos_wrapper_type_rich_text p {
  word-break: break-word;
}









@media (min-width: 690px){
  .contact-column {
    width: 50%;
  }




}


@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .contact_body h3 {
    font-size: 17px;
    line-height: 17px;
  }




}

@media only screen and (min-width: 1px) and (max-width: 1000px){
  .contact-column {
    padding: 6%;
    width: 100%;
  }
  .contact_body h3 {
    font-size: 16px;
    line-height: 16px;
  }




}






/*================================================================ Contact Page End ====================================================================*/


/*================================================================ Contribute Page ====================================================================*/
.contribute_section .span6.dnd-column {
  width: 48.93617020799999%;
  margin: 0;
}
.contribute_section .span6.dnd-column + .dnd-column {
  margin-left: 2.1%;
}
.contribute_section .hs_cos_wrapper_type_header h1 {
  margin-bottom: 0;
  color: #49bced;
}
.contribute_section .widget-type-linked_image img {
  width: 100%;
  vertical-align: middle;
}
.contribute_section .span6.dnd-column:first-child img {
  position: relative;
  right: 4px;
}
.contribute_section .widget-type-header {
  display: block;
  transform: translateY(200%);
  -webkit-transform: translateY(200%);
  transition: all 0.8s ease;
}
.contribute_section .widget-type-header.animate {
  transform: translate(0px, 0px);
}
.contribute_section .dnd-module {
  display: block;
  overflow: hidden;
  position: relative;
}




@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .contribute_section .hs_cos_wrapper_type_header h1 {
    font-size: 40.5px;
    line-height: 40.5px;
  }




}


@media (max-width: 1000px){
  .contribute_section .span6.dnd-column {
    width: 100%;
  }
  .contribute_section .span6.dnd-column:first-child{
    margin-bottom: 25px;
  }
  .contribute_section .span6.dnd-column+.dnd-column {
    margin-left: 0;
  }
  .contribute_section .dnd-row > .row-fluid {
    display: block !important;
  }
  .contribute_section .hs_cos_wrapper_type_header h1 {
    font-size: 37.8px;
    line-height: 37.8px;
  }
  .contribute_section .span6.dnd-column:first-child img {
    position: relative;
    right: 2px;
  }
  .contribute_section .dnd-section {
    padding-top: 38px;
  }




}


@media only screen and (max-width: 690px){
  .contribute_section .hs_cos_wrapper_type_header h1 {
    font-size: 35.1px;
    line-height: 35.1px;
  }




}







/*================================================================ Contribute Page End ====================================================================*/


/*================================================================ About Page Style ====================================================================*/

.about-spacer {
  min-height: 1px;
  position: relative;
  width: 100%;
  padding: 5%;
  margin-top: -32px;
}
.Our-Story .dnd-section > .row-fluid,
.Our-Mission .dnd-section > .row-fluid,
.Our-Vision .dnd-section > .row-fluid{
  padding: 0;
}
.Our-Story .content-with-image .column-inner-bg {
  display: block;
}
.Our-Story .content-with-image .column-inner-image {
  display: none;
}
.Our-Mission .content-with-image .content-with-image-colR,
.Our-Vision .content-with-image .content-with-image-colR{
  padding: 10%;
}
.meet-team .dnd-section {
  padding: 0;
}
.meet-team .dnd-section .span12.dnd-column {
  margin-bottom: 35px;
  position: relative;
  padding-top: 2%;
  padding-bottom: 2%;
  text-align: center;
}
.meet-team h1 {
  margin-bottom: 7px;
  color: #444;
  letter-spacing: 0px;
  font-family: Lovelo,sans-serif;
  font-size: 54px;
  line-height: 54px;
  font-weight: 700;
}
.meet-team hr, .advisory_councile hr {
  margin: 25px auto !important;
  background-color: #4096ef!important;
  transform-origin: center;
  -webkit-transform-origin: center;
  margin-top: 20px !important;
  width: 40px !important;
  height: 2px !important;
  margin-bottom: 20px !important;
  transform: scale(1, 1);
  visibility: visible;
  border: 0 !important;
}
.meet-team .widget-type-rich_text {
  display: block;
  max-width: 650px;
  display: inline-block;
}
.board_member .dnd-section {
  padding: 0;
}
.body-wrapper {
  overflow: hidden;
}
.advisory_councile .dnd-section {
  padding: 0;
}
.advisory_councile .span12.dnd-column {
  margin-bottom: 35px;
  position: relative;
  padding-top: 2%;
  padding-bottom: 7%;
}
.advisory_councile .span12.dnd-column > .dnd-row:nth-child(2) {
  margin-bottom: 24px;
  padding-top: 0px;
  padding-bottom: 5px;
}
.advisory_councile .span12.dnd-column>.dnd-row:last-child {
  padding-top: 35px;
}
.advisory_councile .hs_cos_wrapper_type_rich_text p {
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 0px;
  font-family: 'Open Sans';
  font-weight: 300;
}
.advisory_councile .hs_cos_wrapper_type_rich_text {
  text-align: center;
}
.advisory_councile .hs_cos_wrapper_type_header h2 {
  margin: 0;
}
.our_staff .dnd-section {
  padding: 0;
}
.portf_gallery .dnd-section {
  padding: 0;
}
.our_founders .dnd-section {
  padding: 0;
}

/************************************ popup ********************************/

.nectar_team_member_overlay {
  height: 100%;
  width: 100%;
  background-color: #f2f2f2;
  color: #555;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.2,1,.2,1);
  transition: transform 0.8s cubic-bezier(0.2,1,.2,1);
}
.nectar_team_member_overlay.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.nectar_team_member_close {
  left: 0;
  position: fixed;
  top: 0;
  pointer-events: none;
  display: block;
  height: 52px;
  width: 52px;
  text-align: center;
  line-height: 48px;
  font-size: 24px;
  z-index: 10000;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nectar_team_member_close.visible, .nectar_team_member_close .inner.visible {
  opacity: 1;
}
.nectar_team_member_close .inner {
  border: 2px solid #fff;
  height: 52px;
  width: 52px;
  line-height: 48px;
  opacity: 0;
  font-size: 24px;
  border-radius: 100px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.nectar_team_member_close .inner, 
.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close {
  border-color: #4096ef;
}
.nectar_team_member_close.visible, .nectar_team_member_close .inner.visible {
  opacity: 1;
}
.nectar_team_member_close .inner:before {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e117";
  color: #fff;
  font-size: 24px;
  display: block;
  color: #4096ef!important;
}
.nectar_team_member_overlay .inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.nectar_team_member_overlay .inner-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  padding-top: 46px;
}
.nectar_team_member_overlay .team_member_details {
  width: 50%;
  left: 0;
  position: relative;
  padding: 3% 10%;
  margin: auto 0;
}
.nectar_team_member_overlay .team_member_picture {
  height: 100%;
  width: 50%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0,0,0,0.1);
}
.nectar_team_member_overlay .team_member_details .bio-inner {
  height: 100%;
}
.nectar_team_member_overlay .team_member_picture .team_member_image_bg_cover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1001;
  left: -2px;
  top: 0;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  transform-origin: left;
  background-color: #f2f2f2;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.25,1,.2,1);
  transition: transform 1s cubic-bezier(0.25,1,.2,1);
}
.nectar_team_member_overlay.open .team_member_picture .team_member_image_bg_cover {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.team_member_picture_wrap {
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
}
.nectar_team_member_overlay .team_member_image {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  -webkit-transition: -webkit-transform 15s cubic-bezier(.15,0,.7,1),opacity 0.3s;
  transition: transform 15s cubic-bezier(.15,0,.7,1),opacity 0.3s;
  -webkit-transform: scale(1.11);
  transform: scale(1.11);
  opacity: 0;
  background-position: center top;
}
.nectar_team_member_overlay.open:not(.animating) .team_member_image {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.nectar_team_member_overlay .team_member_details h2,
.nectar_team_member_overlay .team_member_details .mobile-close,
.nectar_team_member_overlay .team_member_details .title, 
.nectar_team_member_overlay .team_member_details .team-desc,
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a {
  opacity: 0;
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -ms-transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.4s;
  -webkit-transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.4s;
  transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.4s;
}
.nectar_team_member_overlay.open .team_member_details .mobile-close, 
.nectar_team_member_overlay.open .team_member_details h2, 
.nectar_team_member_overlay.open .team_member_details .title, 
.nectar_team_member_overlay.open .team_member_details .team-desc, 
.nectar_team_member_overlay.open .team_member_details .team-desc .bottom_meta a {
  opacity: 1;
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.nectar_team_member_close .inner,
.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close {
  border-color: #4096ef;
}
.nectar_team_member_overlay .team_member_details .title {
  line-height: 20px;
  margin-bottom: 30px;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: normal;
}
.nectar_team_member_overlay .team_member_details .title {
  -ms-transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.55s;
  -webkit-transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.55s;
  transition: all 1.1s cubic-bezier(0.2,1,.2,1) 0.55s;
}
.nectar_team_member_overlay .team_member_details .bio-inner h2 {
  font-family: Merriweather;
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: 7px;
}
.nectar-fancy-box[data-style="parallax_hover"]:hover .parallaxImg-shadow {
  box-shadow: 0 35px 100px rgba(0,0,0,0.4), 0 16px 40px rgba(0,0,0,0.4);
}




@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .meet-team h1 {
    font-size: 40.5px;
    line-height: 40.5px;
  }




}


@media only screen and (max-width: 1000px) and (min-width: 690px){
  .meet-team h1 {
    font-size: 37.8px;
    line-height: 37.8px;
  }
  .nectar_team_member_overlay .team_member_details {
    width: 65%;
  }
  .nectar_team_member_overlay .team_member_picture {
    width: 35%;
  }



}

@media only screen and (min-width: 1px) and (max-width: 1000px){
  .Our-Mission .content-with-image .content-with-image-colR, 
  .Our-Vision .content-with-image .content-with-image-colR {
    padding: 16%;
  }
  .about-spacer {
    padding: 6%!important;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50px;
    transform-origin: center;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:before {
    position: absolute;
    display: block;
    height: 2px;
    width: 16px;
    left: 6px;
    top: 13px;
    content: ' ';
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:before, 
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:after {
    background-color: #4096ef!important;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:after {
    position: absolute;
    display: block;
    height: 16px;
    width: 2px;
    left: 13px;
    top: 6px;
    content: ' ';
  }
  .nectar_team_member_close {
    display: none;
  }
  .nectar_team_member_close .inner, .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close {
    border-color: #4096ef;
  }


}


@media only screen and (max-width: 690px){
  .meet-team h1 {
    font-size: 35.1px;
    line-height: 35.1px;
  }
  .nectar_team_member_overlay {
    overflow-y: auto;
  }
  .nectar_team_member_overlay .team_member_details {
    padding: 10% 10%;
  }
  .nectar_team_member_overlay .team_member_details {
    width: 100%;
  }
  .nectar_team_member_overlay .team_member_picture {
    display: none;
  }



}


@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px){
  body .mfp-img-mobile img.mfp-img {
    padding: 0;
    padding: 55px 0 55px;
  }

  body .mfp-img-mobile .mfp-close {
    background: 0;
    color: #FFF !important;
    right: 0;
    text-align: right;
    padding-right: 6px !important;
    width: 20px!important;
    height: 20px;
    top: 20px;
    color: #333;
    line-height: 1;
    position: absolute;
  }
  body .mfp-img-mobile .mfp-figure:after {
    top: 55px;
    bottom: 55px;
  }


}

@media(max-width: 479px){
  .mfp-preloader a {
    color: #CCC;
    display: block;
  }


}



/*================================================================ About Page Style End ====================================================================*/



/*================================================================ Event Page Style ====================================================================*/
.event_section .dnd-section {
  padding: 0;
}
.event_section .dnd-section > .row-fluid {
  padding: 40px 20px 20px;
}
.event_section .span12.dnd-column {
  padding: 40px 20px 20px;
}
.event_section .hs_cos_wrapper_type_header h2 {
  color: #444;
  letter-spacing: 0px;
  line-height: 54px;
  font-family: Lovelo,sans-serif;
  margin-bottom: .5em;
  position: relative;
  text-align: center;
  z-index: 0;
  clear: none;
  font-size: 30px;
  font-weight: 700;
}



@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .event_section .hs_cos_wrapper_type_header h2 {
    line-height: 40.5px;
  }



}

@media only screen and (max-width: 1000px) and (min-width: 690px){
  .event_section .hs_cos_wrapper_type_header h2 {
    line-height: 37.8px;
  }



}


@media (max-width: 768px){
  .event_section .hs_cos_wrapper_type_header h2 {
    margin-top: .5em;
  }



}


@media only screen and (max-width: 690px){
  .event_section .hs_cos_wrapper_type_header h2 {
    line-height: 35.1px;
  }




}






/*================================================================ Event Page Style End ====================================================================*/




/*================================================================ Home Page Style ====================================================================*/
.content_area .dnd-section {
  padding: 10% 0;
}
.content_area .span6.dnd-column {
  margin: 0;
  width: 48.93617020799999%;
}
.content_area .span6.dnd-column + .dnd-column {
  margin-left: 2.1%;
}
.content_area .dnd-row + .dnd-row .span6.dnd-column {
  padding: 3% 0;
}
.content_area .hs_cos_wrapper_type_header h2 {
  margin-bottom: 7px;
  letter-spacing: 0px;
  font-family: Merriweather;
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  display: inline-block;
  color: #2AC4EA;
  background: linear-gradient(to bottom right,#2AC4EA,#32d6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container-fluid.content_area {
  background: #fff;
}
.banner-slider .video-texture {
  background-image: url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/images/grid.png);
}
.video_area .dnd-section > .row-fluid {
  padding: 0;
}
.home-page .container-fluid {
  padding: 0 !important;
}
.home_about_sec .dnd-section > .row-fluid {
  padding: 0;
}

.iconsmind-File-ClipboardTextImage:before {
  content: "\ee97";
}
.iconsmind-Speach-BubbleAsking:before {
  content: "\ea84";
}
.iconsmind-Sun:before {
  content: "\e965";
}
.iconsmind-Open-Book:before {
  content: "\efdd";
}
.bottom_pane_sec .dnd-section > .row-fluid {
  padding: 0;
}



.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.content_area .dnd-row+.dnd-row .span6.dnd-column + .dnd-column {
  padding-bottom: 0px;
}
.wow {opacity: 0;}
.wow.animated {opacity: 1!important;}

body.open {
  /*   position: fixed; */
  /* width: 100%; */
  /* top: 0; */
  /* left: 0; */
  overflow-x: hidden;
  overflow-y: hidden;
  /* height: 100%; */
}
body button.mfp-arrow {
  overflow: visible;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.4);
}
body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close {
  height: 40px!important;
  line-height: 40px!important;
  font-size: 24px!important;
  font-family: FontAwesome!important;
  margin-top: 0!important;
  opacity: 1;
  left: 40px;
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close {
  line-height: 40px!important;
  height: 40px!important;
  font-size: 24px!important;
  margin-top: 0!important;
  font-family: FontAwesome!important;
  opacity: 1;
  right: 40px;
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
}

body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close:before {
  content: "\f104";
  color: #fff;
  top: -3px;
  left: -1px;
  display: block;
  position: relative;
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
}
body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close:after {
  display: block;
  content: ' ';
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: #fff;
  top: 19px;
  opacity: 0;
  left: -6px;
  cursor: pointer;
  transform: translateX(-37px);
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  pointer-events: none;
  top: 17px;
  transform: translateX(-27px);
  -webkit-transform: translateX(-27px);
  left: 65px;
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:before {
  content: "\f105";
  color: #fff;
  top: -3px;
  right: -1px;
  display: block;
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  position: relative;
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:after {
  display: block;
  content: ' ';
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: #fff;
  top: 19px;
  opacity: 0;
  left: -6px;
  cursor: pointer;
  transform: translateX(-37px);
  transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all .35s cubic-bezier(0.12,0.75,0.4,1);
  pointer-events: none;
  top: 17px;
  transform: translateX(-27px);
  -webkit-transform: translateX(-27px);
}
body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close:hover {
  border: 2px solid rgba(255,255,255,0);
}
body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close:hover:before {
  transform: translateX(-9px);
  -webkit-transform: translateX(-9px);
}
body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close:hover:after {
  opacity: 1;
  transform: translateX(-58px);
  -webkit-transform: translateX(-58px);
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:hover {
  border: 2px solid rgba(255,255,255,0);
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:hover:before {
  transform: translateX(9px);
  -webkit-transform: translateX(9px);
}
body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close:hover:after {
  opacity: 1;
  transform: translateX(-1px);
  -webkit-transform: translateX(-1px);
}

body .mfp-bottom-bar .mfp-title {
  display: none;
}
body .mfp-bg {
  opacity: 0.85;
}

@media (max-width: 900px){
  body button.mfp-arrow.mfp-arrow-left.mfp-prevent-close {
    left: 20px!important;
  }

  body button.mfp-arrow.mfp-arrow-right.mfp-prevent-close {
    right: 20px!important;
  }

}







@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .content_area .hs_cos_wrapper_type_header h2 {
    font-size: 40.8px;
    line-height: 49.3px;
  }



}



@media (max-width: 1000px){
  .content_area .dnd-row > .row-fluid {
    display: block !important;
  }
  .content_area .span6.dnd-column {
    width: 100%;
  }
  .content_area .span6.dnd-column+.dnd-column {
    margin-left: 0;
  }
  .content_area .hs_cos_wrapper_type_header h2 {
    font-size: 38.4px;
    line-height: 46.4px;
  }
  .content_area .span6.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .home_about_sec .dnd-section {
    padding-bottom: 27px !important;
  }




}


@media only screen and (max-width: 690px){
  .content_area .hs_cos_wrapper_type_header h2 {
    font-size: 36px;
    line-height: 43.5px;
  }




}















/*================================================================ Home Page Style End ====================================================================*/



/*================================================================ Whats Up Page Style ====================================================================*/

.whats-up-main {
  position: relative;
  z-index: 10;
  margin-top: -55px;
  padding-top: 93px;
  padding-bottom: 40px;
}
.whats-up-main .row {
  margin-bottom: 35px;
}
.whats-up-main .row:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.whats-up-col {
  display: block;
  box-sizing: border-box;
  position: relative;
  min-height: 1px;
  float: left;
  width: 48.93617020799999%;
}
.whats-up-colR {
  margin-left: 2.1%;
}
.whats-up-content .hs_cos_wrapper_type_header h2 {
  margin-bottom: 7px;
  color: #444;
  letter-spacing: 0px;
  font-family: Merriweather;
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  text-align: center;
}
.whats-up-content .widget-type-rich_text a {
  border: none;
  text-decoration: inherit;
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1;
}
.whats-up-content .widget-type-rich_text {
  margin-bottom: 24px;
  font-size: 16px;
  color: #9b9b9b;
  text-align: center;
  font-family: Merriweather;
  font-weight: 400;
  font-style: normal;
}
.whats-up-content .widget-type-rich_text a:hover {
  opacity: .85;
}
.whats-up-content .widget-type-space {
  height: 50px;
}
.whats-up-main .dnd-section>.row-fluid {
  padding: 0;
}





@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .whats-up-content .hs_cos_wrapper_type_header h2 {
    font-size: 40.8px;
    line-height: 49.3px;
  }



}






@media(max-width: 1000px){
  .whats-up-col {
    width: 100%;
    margin: 0;
  }
  .whats-up-col.whats-up-colL {
    margin-bottom: 25px;
  }
  .whats-up-content .hs_cos_wrapper_type_header h2 {
    font-size: 38.4px;
    line-height: 46.4px;
  }



}

@media only screen and (max-width: 690px){
  .whats-up-content .hs_cos_wrapper_type_header h2 {
    font-size: 36px;
    line-height: 43.5px;
  }



}









/*================================================================ Whats Up Page Style End ====================================================================*/



@media all and (-ms-high-contrast:none) {
  .content_area .hs_cos_wrapper_type_header h2{
    background: none;
  }


}
/* ******************************************************************************
*********************************************************************************
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 {
  width: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  padding: 28px 0px 0px 0px;
  z-index: 9999;
  box-shadow: 0 0 3px 0 rgb(0 0 0 / 22%);
  -moz-box-shadow: 0 0 3px 0 rgba(0,0,0,0.22);
  -webkit-box-shadow: 0 0 3px 0 rgb(0 0 0 / 22%);
  padding-top: 20px;
  transition: all 0.7s ease;
  transform: translate(0px, 0px);
}
.header__inner {
  position: relative;
  z-index: 9998;
  width: 100%;
}
.header .header__container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 28px;
}
.header__row {
  position: relative;
}
.header-column {
  position: relative;
  display: block;
  float: left;
  width: auto;
}
.header-columnR {
  float: right;
}
.header__row:before, .header__row:after {
  content: " ";
  display: table;
}
.header__row:after {
  clear: both;
}
.headerLogo a {
  width: auto;
  max-width: none;
  display: block;
  line-height: 22px;
  font-size: 22px;
  letter-spacing: -1.5px;
  font-family: 'Open Sans';
  font-weight: 600;
  transform: translate(0, 0px);
  transition: transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.headerLogo img {
  text-indent: -9999px;
  max-width: none;
  width: auto !important;
  margin-bottom: 0px;
  display: block;
  transition: all 0.7s ease;
  height: 40px;
}
.header-toggle {
  min-height: 1px;
  line-height: 1px;
  float: right;
  overflow: hidden;
  height: 100%;
  margin-top: -20px;
  transition: padding 0.8s ease,margin 0.25s ease;
}
.trigger {
  float: left;
  transition: margin 0.25s ease;
  line-height: 12px;
  position: relative;
  visibility: hidden;
  margin-right: -30px;
  margin-left: 18px;
}
.trigger a {
  color: #888;
  width: 24px;
  height: 24px;
  display: block;
  background-position: right top;
  background-repeat: no-repeat;
  box-sizing: content-box!important;
  -moz-box-sizing: content-box!important;
  padding-left: 28px;
  padding-right: 28px;
  border-left: 1px solid rgba(0,0,0,0.07);
 /* visibility: visible; */
  padding-top: 28px;
  padding-bottom: 28px;
  transition: all 0.7s ease;
}
.trigger a > span {
  transition: -webkit-transform 0.33s 0.3s ease-in;
  transition: transform 0.33s 0.3s ease-in;
  -webkit-transform-origin: center;
  transform-origin: center;
  display: block;
  height: 21px;
}
.trigger a.closed > span {
  transition: -webkit-transform 0.33s 0s ease;
  transition: transform 0.33s 0s ease;
}
.lines-button {
  transition: .3s;
  cursor: pointer;
  line-height: 0px!important;
  top: 9px;
  position: relative;
  font-size: 0px!important;
  user-select: none;
  display: block;
}
.trigger .lines-button {
  top: 10px!important;
}
.lines {
  display: block;
  width: 1.4rem;
  height: 3px;
  background-color: #ecf0f1;
  transition: 0.3s;
  position: relative;
}
body .lines, body .lines:before, body .lines:after {
  height: 2px;
}
.lines-button.x2 .lines {
  transition: background 0.2s ease,opacity 0.2s ease;
}
.trigger a span .lines-button i {
  background-color: transparent!important;
}
.lines:before, .lines:after {
  display: block;
  width: 1.4rem;
  height: 3px;
  background: #ecf0f1;
  transition: 0.3s;
  position: absolute;
  left: 0;
  content: '';
  -webkit-transform-origin: 0.142rem center;
  transform-origin: 0.142rem center;
}
.lines:before {
  top: 6px;
}
.lines-button.x2 .lines:before, .lines-button.x2 .lines:after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: top 0.4s 0.45s ease,-webkit-transform 0.3s ease,background-color 0.2s ease,opacity 0.2s ease;
  transition: top 0.4s 0.45s ease,transform 0.3s ease,background-color 0.2s ease,opacity 0.2s ease;
}
.trigger .lines-button.x2 .lines:before,
.trigger .lines-button.x2 .lines:after {
  transition: -webkit-transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
  transition: transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
}
.trigger a i.lines:after, .trigger a i.lines:before {
  background-color: #333333!important;
}
.lines:after {
  top: -6px;
}
.trigger .lines-button:after {
  height: 2px;
  background-color: rgba(0,0,0,0.4);
  display: inline-block;
  width: 1.4rem;
  height: 2px;
  transition: transform 0.45s ease,opacity 0.2s ease,background-color 0.2s linear;
  -webkit-transition: -webkit-transform 0.45s ease,opacity 0.2s ease,background-color 0.2s ease;
  position: absolute;
  left: 0;
  top: 0px;
  content: '';
  transform: scale(1,1);
  -webkit-transform: scale(1,1);
  background-color: #333333!important;
}
.trigger a:hover i.lines:after, .trigger a:hover i.lines:before {
  background-color: #f96566!important;
}
.trigger a:hover .lines-button:after{
  background-color: #f96566!important;
}


.mobile-trigger {
  display: none !important;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-bottom: 10px;
  margin-top: -5px;
  z-index: 10000;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.mobile-trigger a > span {
  transition: -webkit-transform 0.33s 0.3s ease-in;
  transition: transform 0.33s 0.3s ease-in;
  -webkit-transform-origin: center;
  transform-origin: center;
  display: block;
  height: 21px;
  height: 20px;
}
.mobile-trigger a.closed > span {
  transition: -webkit-transform 0.33s 0s ease;
  transition: transform 0.33s 0s ease;
}
.mobile-trigger .lines-button {
  color: #333333;
  top: 10px;
}
.mobile-trigger .lines-button:after {
  transition: transform 0.45s ease,opacity 0.2s ease,background-color 0.2s linear;
  -webkit-transition: -webkit-transform 0.45s ease,opacity 0.2s ease,background-color 0.2s ease;
  position: absolute;
  left: 0;
  top: 0px;
  content: '';
  transform: scale(1,1);
  -webkit-transform: scale(1,1);
  display: inline-block;
  height: 2px!important;
  width: 22px!important;
  top: 0px!important;
  background-color: #333333!important;
}
.mobile-trigger .lines {
  color: #333333!important;
}
.mobile-trigger .lines-button.x2 .lines:before, 
.mobile-trigger .lines-button.x2 .lines:after {
  height: 2px!important;
  width: 22px!important;
  background-color: #333333!important;
}
.lines-button.close {
  -webkit-transform: scale3d(0.8,0.8,0.8);
  transform: scale3d(0.8,0.8,0.8);
}
.trigger .lines-button.close:after {
  transform: scale(0,1);
  -webkit-transform: scale(0,1);
}
.trigger .lines-button.close .lines:before {
  -webkit-transform: translateY(-6px) rotateZ(-45deg);
  -moz-transform: translateY(-6px) rotateZ(-45deg);
  -ms-transform: translateY(-6px) rotateZ(-45deg);
  -o-transform: translateY(-6px) rotateZ(-45deg);
  transform: translateY(-6px) rotateZ(-45deg);
}
.trigger .lines-button.close .lines:after {
  -webkit-transform: translateY(6px) rotateZ(45deg);
  -moz-transform: translateY(6px) rotateZ(45deg);
  -ms-transform: translateY(6px) rotateZ(45deg);
  -o-transform: translateY(6px) rotateZ(45deg);
  transform: translateY(6px) rotateZ(45deg);
}



@media(min-width: 1000px){
  .mobile-trigger .lines-button.close:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .mobile-trigger .lines-button.close .lines:before {
    -webkit-transform: translateY(-6px) rotateZ(-45deg)!important;
    -moz-transform: translateY(-6px) rotateZ(-45deg)!important;
    -ms-transform: translateY(-6px) rotateZ(-45deg)!important;
    -o-transform: translateY(-6px) rotateZ(-45deg)!important;
    transform: translateY(-6px) rotateZ(-45deg)!important;
  }
  .mobile-trigger .lines-button.close .lines:after {
    -webkit-transform: translateY(6px) rotateZ(45deg)!important;
    -moz-transform: translateY(6px) rotateZ(45deg)!important;
    -ms-transform: translateY(6px) rotateZ(45deg)!important;
    -o-transform: translateY(6px) rotateZ(45deg)!important;
    transform: translateY(6px) rotateZ(45deg)!important;
  }
  .mobile-trigger .lines-button.close .lines {
    background-color: transparent!important;
  }



  header.header {
    transform: none !important;
  }
  body.menuOpen header.header {
    transform: none !important;
    left: -300px;
  }
  .headerLogo a {
    transform: none !important;
    transition: none !important;
    position: fixed;
    left: 28px;
  }
  body.menuOpen .headerLogo a {
    transform: none !important;
    transition: none !important;
    position: fixed;
    left: 28px;
  }

  .header.no_nav .headerLogo a {
    position: static !important;
  }
  .header.no_nav .header__row {
    min-height: 60px;
  }
  .scroll .header.no_nav .header__row {
    min-height: 45px;
  }


}



.header-columnR:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.desktop-social {
  display: none;
}

/********************************************************** Header Menu **********************************************/

.custom-menu-primary.normal_menu {
  float: right;
  overflow: visible;
  transition: padding 0.8s ease,margin 0.25s ease;
  min-height: 1px;
  line-height: 1px;
}
.custom-menu-primary .navigation-primary > ul > li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  z-index: 10;
  line-height: 0px;
  font-size: 12px;
  position: relative;
  float: left;
  transition: opacity 0.75s ease;
}
.custom-menu-primary .navigation-primary > ul > li > a {
  position: relative;
  text-decoration: none;
  margin: 0 1px;
  -webkit-transition: color 0.1s ease;
  -moz-transition: color 0.1s ease;
  -o-transition: color 0.1s linear;
  transition: color 0.1s linear;
  display: block;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 32px;
  padding-top: 12px;
}
.custom-menu-primary .navigation-primary > ul > li:nth-last-of-type(2) a {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff!important;
}
.custom-menu-primary .navigation-primary > ul > li:nth-last-of-type(2).active-branch a {
  color: #f96566!important;
}
.custom-menu-primary .navigation-primary > ul > li:nth-last-of-type(2) a:before {
  content: ' ';
  z-index: -1;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  display: block;
  position: absolute;
  left: 0;
  padding-bottom: 10px;
  transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  width: 100%;
  background-color: #4096ef;
  height: 21px;
  box-sizing: content-box;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group {
  margin: 0 0 0 30px;
  font-size: 0;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a {
  padding: 0px 10px 0px 10px;
  overflow: hidden;
  display: inline-block;
  margin-left: 0!important;
  margin-right: 0!important;
  padding-right: 0!important;
  padding-left: 0!important;
  margin-bottom: 29px;
  margin-top: 9px;
  transition: all 0.7s ease;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i {
  font-size: 16px!important;
  color: inherit!important;
  background-color: transparent;
  transition: transform 0.25s ease,opacity 0.2s ease;
  -webkit-transition: -webkit-transform 0.25s ease,opacity 0.2s ease;
  text-align: center;
  line-height: 24px;
  height: 22px;
  width: 34px;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i.fa-facebook {
  width: 28px;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i:before {
  width: 100%;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i:after {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  width: 100%;
  text-decoration: inherit;
  display: block;
  speak: none;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i.fa-twitter:after {
  content: "\f099";
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i.fa-facebook:after {
  content: "\f09a";
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i.fa-tumblr:after {
  content: "\f173";
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a i.fa-instagram:after {
  content: "\f16d";
}
.custom-menu-primary .navigation-primary > ul ul {
  margin: 0;
  padding: 0;
  z-index: 10;
  width: 16em;
  position: absolute;
  box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
  top: 100%;
  transition: all 0.7s ease;
  opacity: 0;
  visibility: hidden;
}
.custom-menu-primary .navigation-primary > ul ul li {
  margin: 0;
  padding: 0;
  line-height: 0px;
  font-size: 12px;
  position: relative;
  width: 100%;
  font-weight: normal;
}
.custom-menu-primary .navigation-primary > ul ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  margin: 0;
  padding: 14px;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 13px;
}
.custom-menu-primary .navigation-primary > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.custom-menu-primary .navigation-primary > ul > li a.Contribute:hover:before {
  opacity: 0.85;
}
.custom-menu-primary .navigation-primary > ul > li.button_social_group > a:hover i {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}






/***************************************************** Scroll Header **********************************************/


body.scroll header.header {
  padding-top: 12px;
}
body.scroll .headerLogo img {
  height: 34px;
}
body.scroll .custom-menu-primary .navigation-primary > ul > li > a {
  padding-bottom: 19px;
  padding-top: 8px;
}
body.scroll .custom-menu-primary .navigation-primary > ul > li.button_social_group > a {
  padding: 0px 10px 0px 10px;
  margin-bottom: 17px;
  margin-top: 6px;
}
body.scroll .header-toggle {
  margin-top: -12px;
  height: 56px;
}
body.scroll .trigger a {
  padding-top: 17px;
  padding-bottom: 18px;
}

/************************************** Flyout **************************************/
.flyout-overley {
  -webkit-backface-visibility: hidden;
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  height: 1px;
  width: 1px;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 9996;
  background-color: rgba(0,0,0,0.8);
  transition: opacity .7s ease;
}
.flyout-wrapper {
  color: #fff;
  background-color: #4096ef;
  padding: 33px;
  overflow: hidden;
  position: fixed;
  transform: translate(301px,0px);
  -webkit-transform: translate(301px,0px);
  -o-transform: translate(301px,0px);
  -ms-transform: translate(301px,0px);
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  z-index: 10000;
  transition: all 0.7s ease;
  overflow-y: auto;
}
.flyout-inner {
  width: 100%;
  height: 100%;
}
.mobile_share > ul {
  display: none;
}
a.close_trigger {
  display: none;
  color: #fff;
}
.mobile-navigation {
  margin-bottom: 25px;
  margin-top: -7px;
}
.mobile-navigation .navigation-primary {
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  margin-right: 0!important;
  display: block;
}
body.menuOpen .flyout-overley {
  height: 100%;
  width: 100%;
  opacity: 1;
}
body.menuOpen .flyout-wrapper {
  transform: translate(0px, 0px);
}
body.menuOpen .body-container-wrapper,
body.menuOpen footer.footer{
  transform: translate(-300px, 0px);
}
body.menuOpen header.header{
  transform: translateY(0px) translate(-300px, 0px);
}
body.menuOpen .headerLogo a{
  transform: translate(300px, 0px);
  transition: transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

@media(max-width: 1670px){

  body.menuOpen .custom-menu-primary .navigation-primary > ul > li{
    opacity: 0;
  }

}




/************************************************** Dl Back ********************************************/
.animate-menu {
  position:relative;
  /*   overflow: hidden; */
  width: 100%;
} 
.animate-menu > ul
{
  position:absolute;
  top:0px;
  width:100%;
  left:100%;
  transition: all 0.3s ease;
}
.animate-menu ul li {
  position:relative

}
.animate-menu ul li  a{
  text-decoration:none;
  color:#fff;
  font-size: 36px;
  line-height: 36px;
  font-family: 'Open Sans';
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
}
.child-trigger {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.animate-menu ul li.dl-back {
  display: inline-block;
  margin-bottom: 20px!important;
}
.animate-menu ul li.dl-back a {
  background: rgba(0,0,0,0.13);
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
}
.animate-menu ul.active-panel {
  left:0;
  opacity: 1;
}
.animate-menu > ul.submenu-open {
  left: -100%;
}
.animate-menu ul:not(.active-panel) {
  opacity: 0;
}
.animate-menu ul li:hover a {
  opacity: 1;
}



















@media (min-width: 690px){
  .header-columnL {
    margin-right: 2%;
  }



}



@media only screen and (min-width: 1001px) and (max-width: 1450px){
  .custom-menu-primary .navigation-primary > ul > li:not(.button_social_group) {
    visibility: hidden!important;
    pointer-events: none!important;
    margin: 0!important;
    position: absolute!important;
  }
  .header-toggle {
    margin-right: 52px;
    height: 79px;
  }
  .header-toggle .trigger {
    display: none!important;
  }
  
  .mobile-trigger {
    display: block!important;
    padding-top: 10px;
    transition: padding 0.2s ease;
    position: absolute;
    top: 0;
    float: right;
    transform: none!important;
    -webkit-transform: none!important;
    margin: 0!important;
  }
  .mobile-trigger a:hover .lines-button:after,
  .mobile-trigger a:hover .lines-button.x2 .lines:before, 
  .mobile-trigger a:hover .lines-button.x2 .lines:after{
    background-color: #f96566!important;
  }
  body.menuOpen .custom-menu-primary .navigation-primary > ul > li.button_social_group {
    opacity: 1;
  }
  .mobile_share > ul {
    display: block!important;
    padding-top: 10px;
    transition: padding 0.2s ease;
    font-size: 0;
  }
  .mobile_share > ul li {
    display: inline-block;
    padding: 0 6px 6px 0;
  }
  .mobile_share > ul li a {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
  }

  .mobile_share > ul li a i {
    background-color: transparent!important;
    font-size: 18px;
    line-height: 22px;
  }
  .mobile_share > ul li a:hover {
    opacity: 1;
  }
  .flyout-inner {
    width: 100%;
    height: auto;
    min-height: 80.9vh;
  }






}




@media only screen and (min-width: 1px) and (max-width: 1000px){
  .header-right {
    display: none;
  }
  .headerLogo img {
    margin-top: -3px!important;
    top: 3px;
    position: relative;
    height: 20px!important;
  }
  header.header {
    padding-top: 12px;
  }
  .headerLogo a {
    margin-top: 7px!important;
  }
  .header-columnL {
    margin-bottom: 22px;
  }
  .mobile-trigger {
    display: block!important;
  }
  .header-columnR {
    min-height: 46px;
    line-height: 24px;
  }
  .mobile-trigger a > span {
    transform-origin: center;
    display: block;
    transition: -webkit-transform 0.33s 0s ease;
    transition: transform 0.33s 0s ease;
    height: 20px;
  }
  .mobile-trigger .lines-button {
    width: 22px!important;
  }
  .mobile-trigger .lines-button.x2 .lines {
    width: 22px!important;
  }
  body.menuOpen .headerLogo a {
    transform: none!important;
    -webkit-transform: none!important;
  }
  a.close_trigger {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 100;
    display: block;
  }
  a.close_trigger > span {
    top: -2px;
    word-spacing: 1px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 999px 999px 999px 999px;
    -moz-border-radius: 999px 999px 999px 999px;
    -webkit-border-radius: 999px 999px 999px 999px;
    -o-border-radius: 999px 999px 999px 999px;
    font-family: 'icomoon'!important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    background-color: transparent!important;
    margin-right: 0px;
    height: 34px !important;
    left: -2px;
    line-height: 32px !important;
    max-width: none !important;
    transition: all 0.47s cubic-bezier(0.3,1,0.3,0.95) 0s;
    -webkit-transition: all 0.47s cubic-bezier(0.3,1,0.3,0.95) 0s;
    -moz-transition: all 0.47s cubic-bezier(0.3,1,0.3,0.95) 0s;
    width: 34px !important;
    -webkit-backface-visibility: hidden;
    color: #fff !important;
    font-size: 24px!important;
  }
  a.close_trigger > span:before {
    content: "\e117";
  }
  .mobile_share > ul {
    display: block!important;
    font-size: 0;
  }
  .mobile_share > ul li {
    display: inline-block;
    padding: 0 6px 6px 0;
  }
  .mobile_share > ul li a {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
  }

  .mobile_share > ul li a i {
    background-color: transparent!important;
    font-size: 18px;
    line-height: 22px;
  }
  .mobile_share > ul li a:hover {
    opacity: 1;
  }
  .flyout-inner {
    width: 100%;
    height: auto;
    min-height: 80.9vh;
  }
  .lines-button.close {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }




}






@media only screen and (max-width: 690px){
  .header .header__container {
    padding: 0 18px;
  }
  .flyout-inner {
    min-height: 82vh;
  }



}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


footer.footer {
  position: relative;
  z-index: 10;
  transition: all 0.7s ease;
  transform: translate(0px, 0px);
}
.footer__row {
  position: relative;
  padding: 20px 0px;
  font-size: 12px;
}
.footer__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
  position: relative;
}
.footer-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  z-index: 10;
}
.footer__copyright p {
  padding-bottom: 0px;
  line-height: 22px;
  margin-top: 3px;
}
a#back-to-top {
  z-index: 9994;
  height: 29px;
  width: 29px;
  background-color: rgba(0,0,0,0.25);
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  color: #fff;
  cursor: pointer;
  display: block;
  position: fixed;
  text-align: center;
  line-height: 12px!important;
  right: 17px;
  border-radius: 0!important;
  box-shadow: none;
  background-color: rgba(0,0,0,0.87);
  bottom: -30px;
  transition: all 0.4s ease;
}
body i{
  font-family: Libre Baskerville;
  text-transform: capitalize;
  letter-spacing: .5px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  font-style: italic;
}
[class*="fa-"] {
  display: inline-block;
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  top: -2px;
  word-spacing: 1px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  max-width: 100%;
}
a#back-to-top i {
  line-height: 29px!important;
  width: 29px!important;
  height: 29px!important;
  font-size: 14px!important;
  top: 0px!important;
  left: 0px!important;
  text-align: center!important;
  position: relative;
  z-index: 10;
  background-color: transparent!important;
}
.fa-angle-up:before {
  content: "\f106";
}
.footer-column2 {
  height: 32px;
}
a#back-to-top:hover {
  background-color: #4096ef!important;
}
a#back-to-top.active {
  bottom: 17px;
}








@media (min-width: 690px){
  .footer-column1 {
    margin-right: 2%;
    width: 40.5%;
  }
  .footer-column2 {
    width: 57.5%;
  }


}


@media only screen and (max-width: 1020px){
  a#back-to-top {
    display: none!important;
  }




}


@media(max-width: 1000px) {
  .footer__container {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-column {
    width: 49%;
  }


}



@media(max-width: 690px) {

  .footer-column {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-column.footer-column2 {
    display: none;
  }




}


@media (max-width: 667px){
  .footer__copyright {
    text-align: center;
  }




}

@media(max-width: 480px) {
  .footer__container {
    padding-left: 10px;
    padding-right: 10px;
  }



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


/*=========================================================================== Main Blog Style Start ===============================================================*/

.hs-search-field--open .hs-search-field__suggestions {
  padding: 10px;
}

.blog-wrapper {
  padding-top: 38px;
  padding-bottom: 40px;
}
.blog-content:before, .blog-content:after {
  content: " ";
  display: table;
}
.blog-content:after {
  clear: both;
}
.blog-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
.post-area {
  padding-right: 20px;
  margin-top: 4px;
}
.post-item {
  line-height: 32px;
}
.post-item .inner-wrap {
  height: 100%;
}
.post-content {
  padding-left: 95px;
}
.post-item .post-content {
  position: relative;
  min-height: 98px;
}
.post-item .post-meta {
  position: absolute;
  left: 8px;
  display: block;
  margin-bottom: 20px;
  border-right: 1px solid #e6e6e6;
  top: 0px;
}
.post-item.no_feature .post-meta {
  top: 6px;
}
.post-item .post-meta .date {
  font-size: 12px;
  padding-bottom: 2px;
  margin-bottom: 12px;
  position: relative;
  transition: all .2s linear 0s;
  padding-bottom: 17px;
  border-bottom: 1px solid #e6e6e6;
  padding-right: 6px;
}
.post-item .post-meta .month {
  display: block;
  font-size: 17px;
  line-height: 10px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0px;
  font-family: 'Open Sans';
  font-weight: 600;
}
.post-item .post-meta .day {
  display: block;
  font-size: 30px;
  line-height: 29px;
  text-align: center;
  padding: 0px 12px 0px 12px;
  font-family: 'Open Sans';
  font-weight: 700;
  text-transform: uppercase;
}
.post-item .content-inner {
  padding-bottom: 50px;
  margin-bottom: 50px;
  position: relative;
}
.post-item .post-featured-img img {
  max-width: none;
  margin-bottom: 15px!important;
  width: 100%;
}
.post-header {
  margin-bottom: 12px;
  font-size: 11px;
  color: #888;
}
.excerpt p {
    -webkit-font-smoothing: antialiased;
}
.post-header h2.title {
  margin-bottom: 2px;
  font-family: Merriweather;
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
}
.post-header h2.title a {
  color: #4096ef!important;
}
.post-header h2.title a:hover {
  color: inherit!important;
}
.post-item .post-header a {
  color: inherit!important;
}
.post-item .post-header a:hover {
  color: #4096ef!important;
}
.post-item .more-link {
  display: block;
  margin-top: 25px;
  cursor: default;
  color: #fff;
}
.post-item .continue-reading {
  background-color: #333;
  transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -moz-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -o-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  width: auto;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 11px;
}
.post-item .continue-reading:hover {
  background-color: #4096ef!important;
}
.excerpt p {
  text-align: left !important;
  padding: 0;
}

#pagination {
  position: relative;
  margin-bottom: 10px;
  height: 32px;
  width: 100%;
}
.post-area #pagination {
  padding-left: 95px;
}
#pagination >div {
  float: left;
  margin: 0px 5px 0px 0px;
}
#pagination >div:first-child {
  margin-left: 0px;
}
#pagination a {
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  padding: 11px 13px 10px 13px!important;
  background-position: -21px center;
  position: relative;
  text-transform: capitalize;
  color: #FFF !important;
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  border-radius: 2px 2px 2px 2px;
  font-family: 'Open Sans';
  font-weight: 700;
  display: inline-block;
  border-radius: 0!important;
  background-color: #333;
}
#pagination .prev a {
  text-indent: -9999px;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat!important;
  background-image: url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/images/portfolio-arrows.png);
  background-position: 13px 12px;
}
#pagination .next a {
  text-indent: -9999px;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat!important;
  background-image: url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/images/portfolio-arrows.png);
  background-position: -20px 12px;
}


#pagination a:hover {
  background-color: #4096ef!important;
}
.blog-sidebar-row:not(:last-child) {
  margin-bottom: 50px;
}
span.filter-link-count {
  display: none;
}
.blog-sidebar h3 {
  line-height: 32px;
  text-transform: uppercase;
  color: #999;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 12px;
}
.blog-sidebar .widget-module > ul {
  margin-bottom: 30px;
}
.blog-sidebar .widget-module > ul li {
  padding: 4px 0;
}
.blog-sidebar .widget-module > ul li a {
  display: block;
}
.blog-site-search form.search-form {
  max-width: 100%;
  margin: 0;
}
.blog-site-search .hs-search-field__input {
  font: 400 13.3333px Arial;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  line-height: 22px;
  color: #555;
  font-family: 'Open Sans';
  font-weight: 400;
  background-color: transparent!important;
  border: 1px solid #ccc;
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
  font-size: 16px!important;
  -o-box-shadow: none!important;
  padding: 16px!important;
  padding-right: 75px!important;
  border-radius: 0px 2px 2px 0px;
  margin: 0!important;
  width: 100%;
}
.blog-site-search input.search-submit {
  font: 400 13.3333px Arial;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -moz-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -o-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  width: auto;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: normal;
  background-color: #4096ef!important;
  position: absolute;
  right: 0px;
  top: 0px;
  margin: 0!important;
  border-radius: 0!important;
  padding: 15px 22px!important;
  line-height: 24px;
}
.blog-site-search .hs-search-field__input:focus {
  border-color: #999!important;
}
.blog-site-search input.search-submit:hover {
  opacity: 0.85;
}
.blog-sidebar .widget-module > ul li:first-child {
  padding-top: 0px;
}
.blog-sidebar .blog-categories .widget-module > ul li:first-child {
  padding: 4px 0!important;
}
.post-heading-area {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 0;
  text-align: center;
  padding-top: 60px;
  line-height: 32px;
}
.post-heading-area .meta-category {
  font-size: 20px;
  line-height: 20px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  font-family: 'Open Sans';
  padding-left: 10px;
}
.post-heading-area .meta-category a {
  text-transform: uppercase;
  color: #000;
  border: 2px solid #000;
  padding: 4px 8px;
  margin: 5px 6px 15px 5px;
  display: inline;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: normal;
}
.post-heading-area .meta-category a:hover {
  border-color: transparent;
  color: #fff;
  background-color: #4096ef!important;
}
h1.entry-title {
  letter-spacing: -1px;
  position: relative;
  top: 3px;
  padding: 16px 0 16px 0;
  font-weight: 700;
  font-family: Lovelo,sans-serif;
  font-size: 80px;
  line-height: 80px;
  max-width: 1000px;
  margin: 0 auto!important;
  color: #444;
}
div#single-below-header {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  margin-bottom: 0px;
}
div#single-below-header span {
  font-size: 20px;
  line-height: 20px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  font-family: 'Open Sans';
  padding-left: 10px;
  font-family: inherit;
  font-size: 12px;
  line-height: 16px;
  color: #888;
  padding-left: 0;
  display: block;
  float: left;
}
div#single-below-header > span {
  padding: 0 8px 0 9px;
  border-left: 1px solid #DDD;
}
div#single-below-header > span:first-child {
  padding-left: 0;
  border: none;
}
div#single-below-header span {
  font-size: 14px;
  float: none;
  display: inline-block;
}
div#single-below-header span a {
  color: inherit!important;
}
div#single-below-header span a:hover {
  color: #4096ef!important;
}
.blog_post .blog-sidebar-row {
  margin: 0;
}
.blog-content {
  position: relative;
  width: 100%;
  top: 0;
}
.blog-sidebar{
  position: relative;
}
.blog_post .blog-content {
  display: flex;
}
.blog_post .blog-sidebar {
  position: sticky;
  top: 80px;
  position: -webkit-sticky;
  height: 100%;
}
.single-content-inner {
  padding-bottom: 50px;
  margin-bottom: 50px;
  position: relative;
}
.blog-post__body {
  margin-bottom: 35px;
}
.post-pagination {
  background-color: #333;
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.post-pagination .bg-overlay {
  color: #fff;
  margin-bottom: 0!important;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  text-indent: -9999px;
  top: 0;
  background-color: #282b30;
  z-index: 2;
  opacity: 0.3;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.post-pagination .full-link {
  color: #fff;
  display: block;
  position: absolute;
  text-indent: -9999px;
  top: 0;
  z-index: 10;
  margin-bottom: 0!important;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-pagination .full-link a {
  display: block;
  position: absolute;
  text-indent: -9999px;
  top: 0;
  z-index: 10;
  margin-bottom: 0!important;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-pagination-col {
  position: relative;
  display: block;
  width: 100%;
  z-index: 10;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-pagination-inner {
  width: 100%;
  text-align: center;
}
.post-pagination-inner span {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
.post-pagination-inner h3 {
  margin: 0;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  padding: 0 15%;
  font-weight: 400;
  font-family: Lovelo,sans-serif;
  letter-spacing: 2px;
  font-size: 34px;
  line-height: 42px;
  color: #fff;
}
.blog_post .blog-wrapper {
  padding-bottom: 24px;
}
.blog-post__body p {
  word-break: break-word;
}

/********************************************** Search Css ***************************************/
.hs-search-field {
  position: relative;
}
.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.hs-search-field__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
}
.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}
.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, .1);
  outline: none;
}
.custom_listing_comments {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
}
.comment.depth-0 {
  border-bottom: 1px solid #000 !important;
  border-top: medium none !important;
  margin: 0 10px 10px !important;
  padding: 0 15px !important;
}
.comment-body {
  border-bottom: medium none;
  display: block;
  padding: 0;
}
.comment-reply-to{
  margin-bottom: 15px;
}
.comment-from h4 {
  margin: 0;
  padding-top: 15px;
}
#comments-listing.no-comments{
  border: none;
}
.comment-date {
  display: block !important;
  text-align: left !important;
}
.hs-search-field--open .hs-search-field__suggestions {
  border-color: #ccc;
  border-radius: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 4px 4px 4px #ccc;
}
.hs-search-field--open .hs-search-field__suggestions a {
  color: #000;
  font-size: 14px;
}
/******************************************** Author ***********************************/

.blog-author-wrapper {
  padding-top: 80px;
  margin-top: -45px;
  z-index: 1000;
  position: relative;
  padding-bottom: 24px;
}
.blog-author-heading {
  width: 100%;
  position: relative;
  display: block;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 36px 0px;
  border-bottom: 1px solid #ddd;
}
.blog-author-heading .subheader {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 20px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  font-family: 'Open Sans';
  padding-left: 0;
}
.blog-author-heading h1 {
  letter-spacing: -1px;
  position: relative;
  color: #444;
  top: 3px;
  margin-bottom: 0px;
  font-weight: 700;
  font-family: Lovelo,sans-serif;
  font-size: 80px;
  line-height: 80px;
}
.blog-post__body em {
  font-family: Libre Baskerville;
  text-transform: capitalize;
  letter-spacing: .5px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  font-style: italic;
}



@media not all, only screen and (-webkit-min-device-pixel-ratio: 1.5), not all, only screen and (min-resolution: 144dpi){
  #pagination .prev a {
    background-image: url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/images/portfolio-arrows2x.png)!important;
    background-size: 40px 9px!important;
  }
  #pagination .next a{
    background-image: url(https://20137251.fs1.hubspotusercontent-na1.net/hubfs/20137251/raw_assets/public/StrongerThanStigma_June2021/images/portfolio-arrows2x.png)!important;
    background-size: 40px 9px!important;
  }



}

@media (min-width: 690px){
  .blog-column9 {
    margin-right: 2%;
    width: 74.5%;
  }
  .blog-column3 {
    width: 23.5%;
  }




}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .blog-sidebar h3 {
    line-height: 28px;
  }



}


@media only screen and (min-width: 1px) and (max-width: 1000px){
  .blog-column {
    width: 100%;
    margin-left: 0px;
  }
  .post-area {
    padding-right: 0px!important;
    margin-bottom: 0px;
  }
  .blog-sidebar {
    margin-bottom: 25px;
  }
  .blog-sidebar h3 {
    line-height: 28px;
  }
  #pagination {
    margin-bottom: 40px!important;
  }
  .blog_post .blog-content {
    display: block;
  }
  .blog_post .blog-sidebar {
    position: static;
  }
  .post-pagination-col {
    height: 200px;
  }
  .post-pagination-inner h3 {
    font-size: 16px;
    line-height: 16px;
  }



}




@media only screen and (max-width: 690px){
  .post-item .post-content {
    padding-left: 0px!important;
  }
  .post-item .post-meta {
    display: none;
  }
  .post-header {
    font-size: 10px;
  }
  .post-header h2.title {
    font-size: 18px;
  }
  .post-area #pagination {
    padding-left: 0px!important;
  }
  .blog-sidebar h3 {
    line-height: 25.2px;
  }
  .post-heading-area .meta-category {
    display: none;
  }
  h1.entry-title {
    font-size: 24px!important;
    line-height: 30px!important;
  }
  .blog-author-heading .subheader {
    display: none;
  }
  .blog-author-heading h1 {
    font-size: 30px;
    line-height: 1;
  }

}


















/*=========================================================================== Main Blog Style 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.
*********************************************************************************
****************************************************************************** */

label.hs-membership-global-error.hs-error-msg {
  box-shadow: none;
  border: none;
  background: transparent;
}
p.header {
  background-color: transparent;
}
.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: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .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: auto;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: 10px 15px;
}

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


.search_result_page .content-wrapper {
  padding-bottom: 40px;
  margin-top: -55px!important;
  padding-top: 80px!important;
}
.search_result_page .systems-page {
  padding: 0;
}
.search_result_page .row:first-child {
  padding-bottom: 24px;
}
.search_result_page .section-title {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 36px 0px;
  border-bottom: 1px solid #ddd;
}
.search_result_page h1 {
  color: #444;
  position: relative;
  top: 3px;
  font-size: 28px!important;
  line-height: 42px!important;
  margin-bottom: 0px!important;
  text-transform: none!important;
  font-family: 'Open Sans'!important;
  font-weight: 600;
  letter-spacing: -1px!important;
}
.search_result_page h1 span {
  font-size: 20px;
  line-height: 20px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  font-family: 'Open Sans';
  padding-left: 10px;
}
.search_result_page .hs-search-results__listing {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search_result_page .hs-search-results__listing li {
  width: 31%;
  display: inline-block;
  margin-bottom: 2.5%;
  position: relative;
  color: #676767;
  font-size: 11px;
  -o-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
  box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
  background-color: #fff;
  padding: 18px;
}
.search_result_page .hs-search-results__listing li .hs-search-results__title {
  text-decoration: none;
  transition: color 0.2s;
  -moz-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  color: #4096ef!important;
  font-weight: 400;
  font-family: Merriweather;
  margin-bottom: 1px;
  font-size: 17px;
  line-height: 22px;
  display: block;
}
.search_result_page .hs-search-results__listing li .hs-search-results__title .hs-highlight-title {
  font-weight: normal;
}
.search_result_page .hs-search-results__listing li .hs-search-results__description {
  color: #999;
  margin-top: 3px;
  letter-spacing: 0px;
  font-family: 'Open Sans';
  display: block;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
.search_result_page .hs-search-results__listing li .hs-search-results__title:hover {
  color: #444!important;
}
#error-404 {
  text-align: center;
  padding-bottom: 45px;
}
body #error-404 h1 {
  font-size: 250px!important;
  line-height: 250px!important;
  font-family: 'Open Sans';
  font-weight: 700;
  color: #444;
}
body #error-404 h2 {
  text-transform: uppercase;
  font-size: 70px;
  font-family: 'Open Sans';
  font-weight: 700;
  color: #444;
  line-height: 58px;
  margin-bottom: 0;
}
.error-page.error-404 {
  padding: 0;
}
.error__page .content-wrapper {
  margin-top: -55px;
  padding-top: 93px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}



@media only screen and (min-width: 690px) and (max-width: 1000px){
  .error-page.error-404 {
    padding-bottom: 25px;
  }
  body #error-404 h2 {
    line-height: 46.4px;
  }



}



@media only screen and (min-width: 1px) and (max-width: 1000px){
  .search_result_page h1 {
    font-size: 18px!Important;
  }
  .search_result_page h1 span {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
  }

}

@media(max-width: 690px){
  .search_result_page .hs-search-results__listing li {
    width: 100%;
  }
  body #error-404 h1 {
    font-size: 150px !important;
    line-height: 150px !important;
  }
  body #error-404 h2 {
    line-height: 43.5px;
    font-size: 40px;
  }
  body #error-404 h2 {
    margin-bottom: 7px;
  }
  #error-404 {
    padding-bottom: 25px;
  }

}






@media(max-width: 767px){
  .systems-page h1{
    font-size: 26px;
  }
  .systems-page h2, .systems-page h3{
    font-size: 22px;
  }






}