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












































.header-wrapper {height: 98px;position: absolute;width: 100%;}


/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

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

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

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

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-brands-400.eot") format("embedded-opentype"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-brands-400.woff2") format("woff2"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-brands-400.woff") format("woff"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-brands-400.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: auto;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-solid-900.eot") format("embedded-opentype"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-solid-900.woff2") format("woff2"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-solid-900.woff") format("woff"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/fa-solid-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: auto;
}
@font-face {
  font-family: "sfm-icomoon";
  src:  url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/icomoon.eot") format("embedded-opentype"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/icomoon.woff") format("woff"),
    url("https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Fonts/icomoon.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

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

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

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

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

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

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

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

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

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

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

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

ul li,
ol li {

}

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



/* 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;
  font-family: Lato, sans-serif;
}

.hs-button {
  margin: 0;
  border:0;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-size: 15px;
  -webkit-transition: 0.5s color;
  -o-transition: 0.5s color;
  transition: 0.5s color; 
  padding: 15px 53px;
  
  text-decoration: none;
  background: url(https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/raw_assets/public/Bluware_May2020/images/arrow-bronze.png) no-repeat right center;
  text-transform: uppercase;
  line-height: 1.5;
  margin:10px 0;
  white-space:normal;
}

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

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


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

.hs-error-msgs label {
  margin-top: .5rem;
  color:red!important;
  font-size: 12px!important;
  line-height: 12px!important;
}

.hs-input {
  display: inline-block;
  width: 100%!important;
  height:auto !important;
  padding: .5rem 1rem;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #33475b;
  background-color: #ffffff;
  border:0;
  border-bottom: 2px solid #eee;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-bottom: 5px;
}

form input{
  display: inline-block;
  height:auto !important;
  padding: .5rem 1rem;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #33475b;
  background-color: #ffffff;
  border:0;
  border-bottom: 2px solid #eee;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-bottom: 5px;
}

h3.form-title {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 36px;
  padding: 10px;
  line-height: 1.4em;
}

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

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

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

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

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

textarea.hs-input {
  height: auto;
}

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

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

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

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
input#hs-pwd-widget-password {
  width: 100%;
}
.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:0;
}

.field {
  margin-bottom: 10px;
}

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

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

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

.grecaptcha-badge {
  margin: 0 auto;
}

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

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

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

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

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

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}

.custom-menu-primary {
  min-height: 50vh;
  height: 100%;
  margin-top: 0px;
  width: 350px;
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  max-height: 100%;
  /*   position: relative; */
  /*     display: block; */
  top: 0;
  left: 0;
}
.custom-menu-primary > div {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2222;
}
.custom-menu-primary ul.submenu.level-1 {
  line-height: 1;
}

.custom-menu-primary ul.submenu.level-1 > li{
  -webkit-transition: -webkit-transform .3s cubic-bezier(.215,.061,.355,1),opacity .4s cubic-bezier(.215,.061,.355,1);
  transition: transform .3s cubic-bezier(.215,.061,.355,1),opacity .4s cubic-bezier(.215,.061,.355,1);
  opacity: 0;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transform: translate(30px,0);
  transform: translate(30px,0);
  -webkit-transform: translate3d(30px,0,0);
  transform: translate3d(30px,0,0);
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li{
  opacity: 1;
  -webkit-transform: translate(0,0)!important;
  transform: translate(0,0)!important;
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(1){
  transition-delay: .2s;
  -webkit-transition-delay: .2s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(2){
  transition-delay: .25s;
  -webkit-transition-delay: .25s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(3){
  transition-delay: .3s;
  -webkit-transition-delay: .3s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(4){
  transition-delay: .35s;
  -webkit-transition-delay: .35s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(5){
  transition-delay: .4s;
  -webkit-transition-delay: .4s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(6){
  transition-delay: .45s;
  -webkit-transition-delay: .45s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(7){
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(8){
  transition-delay: .55s;
  -webkit-transition-delay: .55s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(9){
  transition-delay: .6s;
  -webkit-transition-delay: .6s;
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1 > li:nth-child(10){
  transition-delay: .65s;
  -webkit-transition-delay: .65s;
}

.custom-menu-primary ul.submenu.level-1 > li > a{
  text-decoration: none;
  -webkit-transition: all .3s cubic-bezier(.215,.061,.355,1);
  transition: all .3s cubic-bezier(.215,.061,.355,1);
  display: block;
  padding: 25px 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  padding-left: 14%;
  line-height: 1;
}

.custom-menu-primary ul.submenu.level-1 > li a:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  bottom: 0;
  width: 0;
  z-index: 0;
  background: rgba(255,255,255,.075);
  -webkit-transition: all .15s cubic-bezier(.215,.061,.355,1);
  transition: all .15s cubic-bezier(.215,.061,.355,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block!important;
  background: #88D498;
  top: auto;
  bottom: -2px;
  height: 2px;
}
.child-trigger {
  top: 0;
  bottom: 0;
  color: inherit;
  position: absolute;
  width: 42px;
  -webkit-transition: all .3s cubic-bezier(.215,.061,.355,1);
  background: 0 0;
  z-index: 3;
  display: inline-block;
  right: auto;
  left: 0;
  line-height: 16px;
}
.child-trigger:before{
  font-style: normal;
  text-transform: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
  width: 8px;
  height: 8px;
  border-top-width: 2px;
  border-right-width: 2px;
  margin: -3px 0 0 -3px;
  border-color: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
.sfm-view {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition: all .3s cubic-bezier(.215,.061,.355,1) .05s;
  transition: all .3s cubic-bezier(.215,.061,.355,1) .05s;
  z-index: -300;
  position: absolute;
  height: 100%;
  top: 0;
  opacity: 0;
  display: block;
  left: auto;
  right: 350px;
  width: 275px;
  -webkit-transform: translate3d(275px,0,0);
  transform: translate3d(275px,0,0);
}
.header__navigation.open .custom-menu-primary ul.submenu.level-1>li:hover ul {
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
  opacity: 1;
  left: auto;
  right: 350px;
  width: 275px;
  z-index: 99999;
}

.sfm-view ul.submenu.level-2 {
  line-height: 1!important;
  background: rgb(52,107,129);
  background: -moz-radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
  background: -webkit-radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
  background: radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 275px;
}
.sfm-view ul.submenu.level-2 li,
.custom-menu-primary.mobile ul.submenu.level-1>li ul li{
  position: relative;
  line-height: 1!important;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.sfm-view ul.submenu.level-2 li a,
.custom-menu-primary.mobile ul.submenu.level-1>li ul li a{
  text-decoration: none;
  -webkit-transition: all .3s cubic-bezier(.215,.061,.355,1);
  transition: all .3s cubic-bezier(.215,.061,.355,1);
  display: block;
  position: relative;
  padding: 25px 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #ffffff;
  border-color: #ffffff;
  padding-left: 14% !important;
}
.custom-menu-primary.mobile ul.submenu.level-1>li ul li a{
  padding: 25.5px 0;
}
.sfm-view ul.submenu.level-2  > li a:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  bottom: 0;
  width: 0;
  z-index: 0;
  background: rgba(255,255,255,.075);
  -webkit-transition: all .15s cubic-bezier(.215,.061,.355,1);
  transition: all .15s cubic-bezier(.215,.061,.355,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block!important;
  background: #88D498;
  top: auto;
  bottom: -2px;
  height: 2px;
}

.custom-menu-primary ul.submenu.level-1>li>a span,
.sfm-view ul.submenu.level-2 li a span{
  display: inline-block;
  vertical-align: middle;
  line-height: inherit;
  position: relative;
  right: 0;
  left: 0;
  z-index: 2;
  font-family: inherit!important;
  white-space: normal;
  max-width: calc(350px - 80px);
}
.custom-menu-primary ul.submenu.level-1>li:hover>a span,
.sfm-view ul.submenu.level-2 li:hover a span{
  right: 2px;
  left: auto;
}
.DataSolutions .sfm-view-wrap .sfm-view:first-child {
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
  opacity: 1;
}
.DataSolutions .sfm-view-wrap .sfm-view:first-child {
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
  opacity: 1;
}
.GeoscienceSolutions .sfm-view-wrap .sfm-view:nth-child(2) {
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
  opacity: 1;
}
.About .sfm-view-wrap .sfm-view:nth-child(3) {
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
  opacity: 1;
}


/* .marketing .sfm-view-wrap .sfm-view:first-child,
.marketing .sfm-view-wrap .sfm-view:nth-child(2){
-webkit-transform: translate3d(0,0,0)!important;
transform: translate3d(0,0,0)!important;
opacity: 1;
} */

@media only screen and (min-width: 1025px){
  .header__navigation.header--element,
  .custom-menu-primary.mobile{
    display:none;
  }
}

@media only screen and (max-width: 1024px){
  .custom-menu-primary.mobile{
    display:table;
  }
}

@media only screen and (min-width: 800px){
  .custom-menu-primary ul.submenu.level-1 > li:hover > a:before{
    width: 100%;  
    left: auto;
  }
  .custom-menu-primary ul.submenu.level-2>li:hover a:before{
    width: 100%;  
    left: auto;
  }
  .sfm-view ul.submenu.level-2 > li:hover > a:before{
    width: 100%;  
    left: auto;
  }
}

@media only screen and (max-width: 1024px){
  .child-trigger{
    left: auto;
    right: 0;
  }
  .custom-menu-primary.desktop{
    display:none;
  }
  .custom-menu-primary.mobile{
    display:table;
  }
  .custom-menu-primary.mobile ul.submenu.level-1>li ul{
    margin: 0;
    padding: 0;
    background: rgb(52,107,129);
    background: -moz-radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
    background: -webkit-radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
    background: radial-gradient(circle, rgba(52,107,129,0.85) 0%, rgba(17,54,70,0.75) 80%);
    position: relative!important;
    left: 0!important;
    top: 0!important;
    width: 100%!important;
    box-shadow: none!important;
  }
  .custom-menu-primary.mobile ul.submenu.level-1>li ul li:hover a{
    box-shadow: 4px 0 rgba(0,0,0,.35) inset;
  }
  .child-trigger{
    height: 67px;
  }
  .child-open.child-trigger:before {
    -webkit-transform: rotate(135deg)!important;
    transform: rotate(135deg)!important;
  }
  .custom-menu-primary ul.submenu.level-1>li.submenu-open > a:before{
    width: 0;
    left: 0;
  }
  .custom-menu-primary ul.submenu.level-2>li a:before{
    bottom: 0;
  }
  .sfm-view-wrap {
    display: none;
  }

  .mob-child-menu-open .custom-menu-primary.mobile {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    height: auto;
  }

  .mob-child-menu-open .custom-menu-primary>div {
    height: auto;
    display: block;
    margin-top: 0;
  } 
  .mob-child-menu-open ul.sfm-social-icons {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    margin-bottom: 10px;
  }


}



@media only screen and (max-width: 800px){
  .custom-menu-primary>div {
    display: block;
    height: auto;
    margin-top: 0;
  }
  .custom-menu-primary.mobile {
    display: block;
    height: 100%;
    position: relative;
  }
  .sfm-sidebar-close {
    margin-bottom: 0 !important;
  }
  ul.sfm-social-icons {
    position: relative !important;
  }
  .mob-child-menu-open .sfm-sidebar-close {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-height:900px){
  .custom-menu-primary {
    display: block;
    position:relative;
    height: auto;
    max-height: none;
  }
  ul.sfm-social-icons{
    position: relative!important;
    top: 0;
  }
  .custom-menu-primary>div {
    display: block;
  }
}

@media only screen and (max-width:350px){
  .custom-menu-primary.mobile {
    width: 320px;
  }
  .header__navigation {
    width: 320px!important;
  }
  ul.sfm-social-icons {
    width: 320px!important;
  }
  .custom-menu-primary ul.submenu.level-1>li>a{
    padding-left: 10%;
  }
  .custom-menu-primary.mobile ul.submenu.level-1>li ul li a{
     padding-left: 10%!important;
  }
  .sfm-sidebar-close{
    left: 15px!important;
  }

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

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

header.header {
  background-color: #F8FAFC;
}
.no-banner .header-wrapper {
  min-height: 98px;
}
header.header {
  -webkit-transition: transform 0.34s ease;
  transition: transform 0.34s ease;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
} 
.header__container-inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.custom-logo {
  font-size: 6px;
}
#nav-toggle {
  display: none;
}

/* Styles for the Logo */

.header__logo {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__logo > div {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 10px 0px 10px 60px;
}

.header__logo img {
  max-width: 100%;
}


.header__logo--tablet {
  display: none;
}
.header__column {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

/* Mobile Styles */

.header__navigation {
  z-index: 3000001;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  line-height: 1;
  vertical-align: baseline;
  text-align: left;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 350px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .25s cubic-bezier(.215,.061,.355,1),background .25s cubic-bezier(.215,.061,.355,1),opacity .2s cubic-bezier(.215,.061,.355,1);
  transition: transform .25s cubic-bezier(.215,.061,.355,1),background .25s cubic-bezier(.215,.061,.355,1),opacity .2s cubic-bezier(.215,.061,.355,1);
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
  right: 0;
  left: auto;
  -webkit-transform: translate3d(350px,0,0);
  transform: translate3d(350px,0,0);
  background-color: rgba(29, 86, 110, 0.9);
}

.header__navigation.open{
  box-shadow: 0 0 35px 3px rgba(0,0,0,.33);
  -webkit-transform: translate(0,0)!important;
  transform: translate(0,0)!important;
  -webkit-transform: translate3d(0,0,0)!important;
  transform: translate3d(0,0,0)!important;
}

.header__navigation--toggle{
  position: relative;
  cursor: pointer;
}

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

.header__navigation--toggle.open {
  display: block;
}

.header__navigation--toggle.open:after {
  display: block;
}

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

.header__close--toggle.show {
  display: block;
}
.header__row-2 {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

.custom-logo a {
  line-height: 0;
  font-size: 0;
  display: inline-block;
}
.header__navigation--toggle {
  font-size: 24px;
  fill: #1D566E;
  color: #1D566E;
  background-color: rgba(255, 255, 255, 0.74);
  border-radius: 0px 0px 0px 0px;
  padding: 31px 37px;
}
.header__navigation--toggle svg{
  width: 1em;
}
.header__navigation--toggle:hover {
  color: #ffffff;
  background-color: #1D566E;
}

.header__navigation--toggle:hover svg {
  fill: #ffffff;
}


.sfm-scroll-wrapper {
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .25s cubic-bezier(.215,.061,.355,1),background .25s cubic-bezier(.215,.061,.355,1),opacity .2s cubic-bezier(.215,.061,.355,1);
  transition: transform .25s cubic-bezier(.215,.061,.355,1),background .25s cubic-bezier(.215,.061,.355,1),opacity .2s cubic-bezier(.215,.061,.355,1);
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.sfm-scroll {
  width: 100%;
  padding-right: 30px;
  overflow-y: auto;
  height: 100%;
  box-sizing: content-box;
  -webkit-transition: all .3s cubic-bezier(.215,.061,.355,1) .05s;
  transition: all .3s cubic-bezier(.215,.061,.355,1) .05s;
}
.sfm-sidebar-close {
  position: relative;
  top: 0;
  width: 60px;
  height: 50px;
  left: 0;
  cursor: pointer;
  z-index: 10001;
  margin-bottom: 30px;
}
.sfm-sidebar-close:after, .sfm-sidebar-close:before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #e7e6dd;
  position: absolute;
  left: 0;
  z-index: -1;
  -webkit-transition: all .25s .25s;
  transition: all .25s .25s;
}
.sfm-sidebar-close:before {
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  width: 24px;
  top: 30px;
  left: 14px;
}
.sfm-sidebar-close:after, .sfm-sidebar-close:before {
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  width: 24px;
  top: 30px;
  left: 14px;
}
.sfm-sidebar-close:before {
  -webkit-transform: rotate(-45deg)!important;
  transform: rotate(-45deg)!important;
}
.sfm-sidebar-close:before,
.sfm-sidebar-close:after{
  height: 2px !important;
}
.sfm-sidebar-close:after {
  -webkit-transform: rotate(45deg)!important;
  transform: rotate(45deg)!important;
}
.sfm-sidebar-close:hover:before {
  -webkit-transform: rotate(45deg)!important;
  transform: rotate(45deg)!important;
}
.sfm-sidebar-close:hover:after {
  -webkit-transform: rotate(135deg)!important;
  transform: rotate(135deg)!important;
}

ul.sfm-social-icons {
  padding: 0;
  overflow: hidden;
  z-index: 9999;
  box-sizing: content-box;
  padding-top: 10px;
  bottom: 0;
  width: 350px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
/*   position: relative;
  top: 0; */
  left: 0;
}

ul.sfm-social-icons li {
  list-style: none;
  display: inline-block;
  width: 45px;
  height: 45px;
  border-color: #aaaaaa;
  text-align: left;
  margin-left: 5px;
}
.lp .header__navigation--toggle {
  display: none;
}
ul.sfm-social-icons li:first-child {
  margin-left: 0;
}

ul.sfm-social-icons li a {
  font-family: sfm-icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 16px;
  font-size: 16px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #aaaaaa;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: top;
  -webkit-transition: none;
  transition: none;
  display: inline-block;
}
ul.sfm-social-icons li a:before{
  -webkit-backface-visibility: hidden;
  -webkit-transition: transform .15s cubic-bezier(.215,.061,.355,1);
  transition: transform .15s cubic-bezier(.215,.061,.355,1);
  position: relative;
  margin: 0 auto;
  top: 15px;
  z-index: 2;
}
ul.sfm-social-icons li:hover a:after{
  transform: scale(1,1);
}
ul.sfm-social-icons li a:after{
  -webkit-backface-visibility: hidden;
  -webkit-transition: transform .15s cubic-bezier(.215,.061,.355,1);
  transition: transform .15s cubic-bezier(.215,.061,.355,1);
}

.sfm-icon-vimeo a:after {
  background: #1ab7ea;
}
ul.sfm-social-icons li:hover a:before {
  text-shadow: rgba(0,0,0,.05) 1px 1px, rgba(0,0,0,.05) 2px 2px, rgba(0,0,0,.05) 3px 3px, rgba(0,0,0,.05) 4px 4px, rgba(0,0,0,.05) 5px 5px, rgba(0,0,0,.05) 6px 6px;
}
.sfm-icon-linkedin a:after {
  background: #0077b5;
}
.sfm-icon-youtube a:before {
    content: "\f16a";
}
.sfm-icon-youtube a:after {
    background: #cd201f;
}
ul.sfm-social-icons li a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0,0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: transform .15s cubic-bezier(.215,.061,.355,1);
  transition: transform .15s cubic-bezier(.215,.061,.355,1);
}
.sfm-icon-linkedin a:before {
  content: "\e109";
}
.fa-youtube:before {
    content: "\f167";
}
.sfm-icon-twitter a:before {
  content: "\e602";
}
.sfm-icon-twitter a:after {
  background: #5E9FCA;
}
.sfm-icon-linkedin a:after {
  background: #0077b5;
}
.sfm-icon-vimeo a:before {
  content: "\e104";
}
.sfm-icon-vimeo a:after {
  background: #1ab7ea;
}

@media (min-width: 768px){
  .header__logo {
    width: 35%;
    width: -webkit-fill-available !important;
    width: inherit !important;
  }
}

@media (max-width: 1024px){
  .header__logo>div {
    padding: 11px 0px 9px 10px;
  }
  .header__logo {
    width: 100%;
    width: -webkit-fill-available !important;
    width: inherit !important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
  padding: 40px 0px 40px 0px;
  position: relative;
  overflow: hidden;
}
.footer__container {
  margin: 0 auto;
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.footer__container-inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 1px;
  padding: 10px;
  margin-left: 4px;
  margin-right: -10px;
}
.footer-column {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin-bottom: -1px;
}
.cm-footer-social > div {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-content: center;
  align-items: center;
  margin: 0% 0% 0% 20%;
  font-size: 0;
  padding: 10px;
}
.elementor-social-icons-wrapper a{
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #292929;
  font-size: 14px;
  padding: 0.9em;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #FFFFFF;
  color:#fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.elementor-social-icons-wrapper a:hover {
  transform: scale(0.9);
  opacity: .9;
  color: #fff;
  background-color: #035CEA;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.elementor-social-icons-wrapper a:not(:last-child){
  margin-right: 10px;
}
.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fab {
  font-family: "Font Awesome 5 Brands";
}
.elementor-social-icons-wrapper i{
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.fa-twitter:before {
  content: "\f099";
}
.elementor-social-icons-wrapper a i:before{
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-vimeo:before {
  content: "\f40a";
}
.cm-copyright-wrap {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-content: center;
  align-items: center;
}
.cm-copyright-phone {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
.elementor-icon-box-icon {
  margin-right: 15px;
}
.elementor-icon {
  display: inline-block;
  line-height: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #818a91;
  font-size: 50px;
  text-align: center;
}
.elementor-icon {
  font-size: 27px;
}
.elementor-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.elementor-icon-box-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.elementor-icon-box-title {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 700;
}
.copyright-menu {
  position: relative;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 400;
  width: 100%;
  font-size: 14px;
  line-height: 1.6em;
}

.copyright-menu p,
.footer-column p{
  margin-top: 0;
  margin-bottom: .9rem;
}

.copyright-menu p a {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  color:#fff;
}

@media (min-width: 768px){
  .cm-copyright {
    width: 22.232%;
  }
  .cm-footer-address-left {
    width: 23.661%;
  }

  .cm-footer-address-right {
    width: 23.928%;
  }
  .cm-footer-social {
    width: 30.179%;
    padding: 0;
  }
  .elementor-icon-box-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .elementor-icon-box-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (max-width: 1024px) and (min-width: 768px){
  .cm-copyright{
    width: 33%;
  }
  .cm-footer-address-left{
    width: 33%;
  }
  .cm-footer-address-right{
    width: 33%;
  }
  .cm-footer-social {
    width: 100%;
  }
}

@media (max-width: 1024px){
  .footer {
    padding: 30px 20px 30px 20px;
  }
  .footer__container-inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cm-footer-social>div {
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
   justify-content: center;
  }
  .elementor-social-icons-wrapper a {
    padding: 0.5em;
  }
  .footer-column{
   margin-bottom: 0px;
   margin-top: 1px;
  }
  .footer__container-inner{
    margin-left: 0px;
  }
}

@media (max-width: 767px){
  .footer {
    padding: 30px 20px 30px 20px;
  }
  .cm-copyright {
    width: 100%;
  }

  .cm-footer-address-left {
    width: 50%;
  }

  .cm-footer-address-right {
    width: 50%;
  }
  .footer__container-inner {
    padding: 0;
  }
  .footer-column p {
    padding-bottom: 15px;
  }
  .footer-column{
    margin-top: 0px;
  }
  .elementor-icon-box-icon {
    margin: 0;
    margin-bottom: 15px;
  }
  .cm-footer-social.footer-column {
    width: 100%;
    margin: 30px 0px 0px 0px;
    padding: 0;
  }
}

@media (max-width:489px){
  .cm-footer-address-right {
    width: 100%;
  }
  .cm-footer-address-left {
    width: 100%;
  }
  .footer-column p {
    padding-bottom: 0px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px;
}
.hs-blog-listing .content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.blog-post-wrap {
  padding: 100px 0px 80px 0px;
  position: relative;
}
ul.post-filters-item {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0px 10px 15px 10px;
}

ul.post-filters-item li a {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #585D62;
  font-size: 16px;
}

ul.post-filters-item li {
  display: inline-block;
  padding-right: 30px;
}

ul.post-filters-item li a:hover {
  color: #C15221;
}

ul.post-filters-item li.active a {
  color: #C15221;
}
.blog-index {
  width: 100%;
  position: relative;
}
.post-listing {
  font-size: 0;
}
.post-item {
  -webkit-transition: opacity 0.6s ease,filter 0.6s ease;
  -ms-transition: opacity 0.6s ease,filter 0.6s ease;
  transition: opacity 0.6s ease,filter 0.6s ease;
  float: left;
  overflow: hidden;
  width: calc( 100% / 3 );
  text-align: left;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  font-size: initial;
}
.dce-wrapper {
  position: relative;
  flex-direction: column;
  transition-duration: .3s;
  transition-property: transform;
}
.dce-wrapper:hover {
  transform: scale(0.9);
  transition-duration: .3s;
  transition-property: transform;
}
.dce-acfposts_image {
  position: relative;
  line-height: 0;
  float: none;
  width: 100%;
}
.dce-acfposts_image a{
  display: inline-block;
  width: 100%;
}
figure.acfposts-image {
  -webkit-transition: filter 0.6s linear;
  -ms-transition: filter 0.6s linear;
  transition: filter 0.6s linear;
  margin: 0;
  min-height: 360px;
}
.dce-overlay,
.dce-overlay_hover{
  -webkit-transition: opacity 0.6s ease;
  -ms-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  min-height: 360px;   
}
.dce-overlay{
  background-color: #222A41;
  opacity: 0.3;
}
.dce-overlay_hover {
  opacity: 0;
}
.dce-overlay_hover {
  background-color: rgba(255, 255, 255, 0.8196078431372549);
  background-image: url(https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Image/more.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15% auto;
}
.dce-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
.dce-acfposts_content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  float: none;
  top: 100%;
  padding: 20px 20px 20px 20px;
  width: 80% !important;
}
.dce_metadata-wrap {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
.dce_metadata {
  display: inline-block;
  padding-right: 3px;
}
.dce_metadata:first-child {
  padding-left: 0!important;
}
.dce_metadata {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 20px 0px 20px;
}
.dce_metadata a{
  color: #FFFFFF;
}
.dce-post-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 25px;
  color: #FFFFFF;
  line-height: 1.4em;
  letter-spacing: 1.5px;
  font-family: "Nunito Sans", Sans-serif;
}
.dce-post-title a {
  color: #FFFFFF;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
}
.dce_readmore_wrapper {
  text-align: left;
}
.dce_readmore_btn {
  color: #FFFFFF;
  background-color: rgba(249, 249, 249, 0);
  font-weight: bold;
  padding: 5px 0px 6px 0px;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  border-color: #FFFFFF;
  font-family: "Nunito Sans", Sans-serif;
}
a.post-link {
  color: #035CEA;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.post-item:hover .dce-hover-effect {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.post-item:hover .dce-overlay_hover {
  opacity: 1;
}
.bottom-section-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}


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

.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }

.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

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

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

.blog-post__body {
  padding: 10px 10px 50px 10px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #C1C1C1;
}

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

.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}


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

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.post-page-wrap {
  padding: 60px 0px 40px 0px;
  position: relative;
}
.elementor-widget-dce-breadcrumbs {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  display: inline-block;
}

.breadcrumbs-container {
  margin: 0px 0px 20px -30px;
}

ul.dce-breadcrumbs {
  list-style: none;
  margin: 5px 0;
  overflow: hidden;
  font-size: 15px;
}

ul.dce-breadcrumbs li {
  display: inline;
  vertical-align: middle;
  color: #585D62;
}

ul.dce-breadcrumbs li a {
  padding: 0 3px;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #585D62;
}

ul.dce-breadcrumbs li a:hover {
  color: #C15221;
}

span.dce-separator {
  padding: 0 3px;
}
section.blog-social-icon {
  padding: 10px 6px 10px 6px;
  width: 100%;
  position: relative;
}
.blog-social-icon-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.blog-social-icon-column-topic {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.blog-social-icon-column {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.elementor-widget-wrap {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.blog-social-icon-column-topic ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-social-icon-column-topic ul li{
  margin-right: 8px;
  margin-left: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Nunito Sans", Sans-serif;
}
.blog-social-icon-column-topic ul li span{
  display: inline;
  color: #585D62;
}
.blog-social-icon-column-topic ul li a{
  color: #585D62;
}
.blog-social-icon-column .elementor-widget {
  width: 100%;
  position: relative;
}
.elementor-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: calc(-10px / 2);
  margin-left: calc(-10px / 2);
}
.elementor-share-btn {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition-property: background-color,border-color,-webkit-filter;
  transition-property: background-color,border-color,-webkit-filter;
  -o-transition-property: filter,background-color,border-color;
  transition-property: filter,background-color,border-color;
  transition-property: filter,background-color,border-color,-webkit-filter;
  cursor: pointer;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
  color: #fff;
  font-size: calc(0.8px * 10);
  height: 3.5em;
  margin-right: calc(10px / 2);
  margin-left: calc(10px / 2);
  margin-bottom: 10px;
}
.elementor-share-btn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4.5em;
  position: relative;
  -webkit-transition-property: color,background-color;
  -o-transition-property: color,background-color;
  transition-property: color,background-color;
}
.elementor-share-btn_facebook {
  background-color: #3b5998;
}
.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fab {
  font-family: "Font Awesome 5 Brands";
}
.elementor-share-btn__icon i {
  font-size: 1.7em;
}
.elementor-share-btn__text {
  font-size: 1.5em;
  padding-right: 1em;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 100;
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.12)),to(transparent));
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.12),transparent);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.12),transparent);
  background-image: linear-gradient(90deg,rgba(0,0,0,.12),transparent);
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
  padding-left: .9em;
}
.elementor-share-btn__title {
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-twitter:before {
  content: "\f099";
}
.elementor-share-btn_twitter {
  background-color: #1da1f2;
}
.fa-linkedin:before {
  content: "\f08c";
}
.elementor-share-btn_linkedin {
  background-color: #0077b5;
}
.fa-envelope:before {
  content: "\f0e0";
}
.elementor-share-btn_email {
  background-color: #ea4335;
  color: #ffff;
}
.elementor-share-btn_email:hover {
  color: #ffff;
}
.fa, .fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.elementor-share-btn:hover {
  -webkit-filter: saturate(1.5) brightness(1.2);
  filter: saturate(1.5) brightness(1.2);
}
.section.post-footer {
  margin-top: 20px;
  padding:10px;
}
.elementor-section {
  position: relative;
  width: 100%;
  padding: 40px 0px 40px 0px;
  z-index: 1;
}
.elementor-section .content-wrapper{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.recenet-post-column-title,
.recenet-post-column{
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

}
.recenet-post-column{
  padding: 0px 20px 0px 20px;
}
.recenet-post-column-title{
  padding: 40px 20px 0px 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-title-wrap .elementor-heading-title {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 700;
  line-height: 1.4em;
  color: #035CEA;
  text-transform: uppercase;
}
h2.elementor-heading-title {
  color: #222A41;
  line-height: 1.4em !important;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 36px;
  letter-spacing: 1.5px;
}
.recenet-post-column-wrap {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.recenet-post-column-inner {
  margin: 0 -10px;
}
article.related-post-item {
  padding: 10px;
}
.eael-grid-post-holder {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.1);
}
.eael-entry-overlay.slide-up {
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background-color: rgba(255, 255, 255, 0.9);
}
.eael-entry-overlay.slide-up img {
  height: auto;
  max-width: 100%;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 35px;
  width: 35px;
}
.eael-entry-overlay>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;  
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
}
.eael-entry-thumbnail img{
  height: auto;
  max-width: 100%;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.eael-entry-wrapper {
  padding: 15px;
  height: 10em;
}

h2.eael-entry-title {
  margin: 10px 0 5px;
  letter-spacing: 1.5px;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 700;
  color: #222A41;
  font-size: 18px;
  text-transform: none;
  line-height: 1.3em;
}

h2.eael-entry-title a {
  color: #222A41;
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
}
.blog-title-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  height: auto;
}
.eael-entry-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eael-entry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);
}
.eael-entry-media:hover .eael-entry-overlay.slide-up {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.eael-entry-media {
  position: relative;
  overflow: hidden;
}
.recent-post-bg-img {
  max-width: 100%;
  height: 100%;
  width: 84%;
  background: #f9f9f9;
  border-top-right-radius: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

section.post-bottom-section {
  position: relative;
  background-image: url(https://6868771.fs1.hubspotusercontent-na1.net/hubfs/6868771/Bluware_May2020/Image/form-sect-bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.post-bottom-section-inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 280px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-bottom-section-column {
  position: relative;
  min-height: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-bottom-section-column:first-child{
  padding: 110px 60px 110px 100px;
}
.post-bottom-section-column .elementor-background-overlay{
  background-color: #1D566E;
  opacity: 0.6;
}
.post-bottom-section-column h2.elementor-heading-title {
  color: #FFFFFF;
  font-size: 50px;
  text-transform: none;
  z-index: 99;
}
.post-bottom-section-right a{
  flex: 0 0 auto;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.post-bottom-section-right a{
  font-family: "Nunito Sans", Sans-serif;
  font-weight: bold;
  text-decoration: none;
  width: 142px;
  padding: 50px 10px 10px 10px;
  color: #ffffff;
  background-color: #035CEA;
}
.creative-button-inner {
  text-align: left;
}
span.cretive-button-text {
  font-family: "Nunito Sans", Sans-serif;
  font-weight: 400;
}
.post-bottom-section-right img{
  max-width: 100%;
  border: none;
  margin-left: 19px;
  height: 30px;
  width: 30px;
}
.eael-creative-button-wrapper {
  display: flex;
  position: absolute;
  width: initial;
  max-width: initial;
  bottom: 0px;
  right: 0px;
}
.creative-button-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.post-bottom-section-right a:hover {
  color: #ffffff;
  background-color: #C15221;
}



@media (min-width: 768px){
  .blog-social-icon-column-topic {
    width: 30.144%;
  }
  .blog-social-icon-column{
    width: 69.856%;
  }
  .recenet-post-column-title {
    width: 25%;
  }
  .recenet-post-column{
    width: 75%;
  }
  .post-bottom-section-column{
    width: 50%;
  }
}
@media only screen and (min-width: 1025px){
  article.related-post-item {
    width: 33.3333%;
    float: left;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 766px){
  article.related-post-item {
    width: 50%;
    float: left;
  }
}
@media (max-width: 1024px){
  .blog-post-wrap {
    padding: 8% 0% 05% 0%;
  }
  ul.post-filters-item li a{
    font-size: 14px;
  }
  .dce_metadata-wrap{
    margin-bottom: 20px;
  }
  .dce-post-title{
    font-size: 16px;
  }
  h2.elementor-heading-title {
    font-size: 28px;
  }
  .post-bottom-section-column h2.elementor-heading-title {
    font-size: 40px;
  }
  .post-bottom-section-column:first-child {
    padding: 110px 20px 110px 20px;
  }
}

@media (max-width: 767px){
  ul.post-filters-item li a{
    font-size: 11px;
  }
  .post-item {
    width: 100%;
    float: none;
  }
  .post-page-wrap {
    padding: 0;
  }
  .blog-social-icon-column-topic {
    width: 100%;
  }

  .blog-social-icon-column {
    width: 100%;
  }

  .blog-social-icon-wrap {
    display: block;
  }
  .elementor-grid {
    padding: 10px 0px 0px 0px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .elementor-share-btn {
    font-size: calc(0.5px * 10);
  }
  .elementor-section .content-wrapper {
    display: block;
  }

  article.related-post-item {
    width: 100%;
  }

  .recent-post-bg-img {
    background: transparent;
  }
  .post-bottom-section-column:last-child {
    min-height: auto;
  }
  .bottom-section-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .post-bottom-section-column {
    width: 100%;
  }
  .hs_recaptcha.hs-recaptcha.field.hs-form-field { padding: 5px; overflow: hidden; overflow-x: auto;}
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

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

.systems-page {
  padding: 3rem 10px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: .5rem 1rem;
  font-size: 16px;
  line-height: 1.5;
}

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