/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/


*, *:before, *:after {
  box-sizing: border-box;
}

/* Variables */
:root{
  --primary-color: #061d38;
  --secondary-color: #e86c4f;
}

a {
    color: #428bca;
    text-decoration: none;
}

/* Font Weight & Colors */
.font-weight-600 {
  font-weight: 600 !important;
}
.font-weight-700 {
  font-weight: 700 !important;
}
.font-weight-900 {
  font-weight: 900 !important;
}
.color-blue {
  color: #194e85; 
}
.color-black {
  color: #000000; 
}
.bg-sky-blue {
  background: #edf4f9;
}

/* Paddings */
.block-padding-60{
  padding-top: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
  padding-bottom: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
}
.section-padding {
  padding-top: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
  padding-bottom: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
}
.section-padding-top {
  padding-top: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
}
.section-padding-bottom {
  padding-bottom: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
}
.padding-20 {
  padding: 20px !important;
}
.padding-30 {
  padding: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}
.padding-top-30 {
  padding-top: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}
.padding-bottom-30 {
  padding-bottom: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}
.padding-40 {
  padding: calc(25px + (40 - 25) * (100vw - 320px) / (1920 - 320));
}
.padding-top-40 {
  padding-top: calc(25px + (40 - 25) * (100vw - 320px) / (1920 - 320));
}
.padding-bottom-40 {
  padding-bottom: calc(25px + (40 - 25) * (100vw - 320px) / (1920 - 320));
}
.pt-0 {
    padding-top: 0px !important;
}
.pb-0 {
    padding-bottom: 0px !important;
}

/* Margins */
.m-0{
  margin:0px;
}
.margin-top-20{
  margin-top: 20px !important;
}
.margin-bottom-20{
  margin-bottom: 20px !important;
}
.margin-top-30{
  margin-top: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}
.margin-bottom-30{
  margin-bottom: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
}
.margin-top-40{
  margin-top: calc(20px + (40 - 20) * (100vw - 320px) / (1920 - 320));
}
.margin-bottom-40{
  margin-bottom: calc(20px + (40 - 20) * (100vw - 320px) / (1920 - 320));
}
.mb-0 {
    margin-bottom: 0px !important;
}

/* Box Shadow */
.shadow{
  box-shadow: 0 0 10px #0006; 
}

/* Flex */
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-center {  
  -webkit-box-pack: center;  
  -ms-flex-pack: center;  
  justify-content: center;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Page Formating Css */
.page-formating h1 {
    font-size: 36px;
    font-weight: 600;
}
.page-formating h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom:15px;
}
.page-formating h3 {
    font-size: 24px;
    font-weight: 600;
}

/* Border Radius */
.border-radius{
  border-radius: 5px;
}

/* Text Alignment */
.text-center{
  text-align:center;
}
.text-left {
  text-align:left;
}
.text-right {
  text-align:right;
}

/* Text Formatting */
.text-white{
  color: #fff;
}

/* Overlay */
.overlay {
    position: relative;
    z-index: 1
}
.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: .6;
}

/* Background Image */
.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

/* Bottom Line */
.bottom-line {
  position:relative;
}
.bottom-line::before {    
  content: "";  
  width: 100px;
  height: 3px;
  background: var(--secondary-color);    
  position: absolute;
  right:0;
  bottom:0;
  left:0;
  margin-left:auto;
  margin-right:auto;
}
.bottom-line.line-left::before {
  margin-left:0;
}

/* Responsive Video Wrapper */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-top: 24px;
  margin-bottom: 24px;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

/* Check List Icon */
.check-icon-list {
    padding: 0 0 0 5px;
    list-style: none;
}
.check-icon-list li {
    position: relative;
    line-height: 24px;
    margin: 10px 0;
    margin-left: 26px;
}
/* .check-icon-list li:after{
    position: absolute;
    content: "";
    width: 15px;
    height: 8px;
    border: 3px solid transparent;
    border-left-color: #000;
    border-bottom-color: #000;
    left: 0;
    top: 6px;
    transform: rotate(312deg);
    margin-right: 8px;
} */
.check-icon-list li:before {
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: bold;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    margin-right: 8px;
    font-size: 18px;
    color: #232323;
    margin-left: -26px;
    position: absolute;
    top: 2px;
}

/* List Unstyled */
.listUnstyled{
  list-style:none;
  padding: 0;
  margin-top: 0;
}

/* Responsive List */
.list-row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
}
.list-row > *{
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.list-row > * > * {    
    height: 100%;
}

@media (max-width: 767px){
  .list-row > *{
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .page-formating h1 {
    font-size: 20px;
  }
  .page-formating h2 {
    font-size: 18px;
  }
  .page-formating h3 {
    font-size: 18px;
  }
}

/* Image Responsive */
.img-fluid{
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Flex Reverse */
@media (min-width: 768px){
  .row-md-reverse{  
      -webkit-box-orient: horizontal;  
      -webkit-box-direction: reverse;  
      -ms-flex-direction: row-reverse;  
      flex-direction: row-reverse;
  }
}

 
/* End Global CSS */
/*! 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;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
    line-height: 1.5;
    word-break: break-word;
    font-size: 16px;
}
body , body * {
    font-family: Goldplay;
}
body {
    padding: 0;
    margin: 0;
    color: #212529;
    font-weight: 500;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
    line-break: strict;
    word-break: break-all;
}

.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0px 15px;
    float: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
.h2, h2 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 2rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.body-container-wrapper {
    overflow: hidden;
}
a {
    cursor: pointer;
}
ul ul,
ol ul,
ul ol,
ol ol {
    margin: 0;
}
ul.no-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
img {
    max-width: 100%;
    height: auto;
}

/* Common Css */
.sec-heading {
    width: 100%;
    text-align: center;
    display: inline-block;
}
@media only screen and (max-width: 767px) {
  .h2, h2 {
      font-size: 1.125rem;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* Custom Buttons */
.hvr-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    text-decoration: none;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}
.hvr-vertical:before {
    color: #fff;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e86c4f;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-vertical:active, .hvr-vertical:focus, .hvr-vertical:hover {
    color: #fff;
}
.hvr-vertical:active:before, .hvr-vertical:focus:before, .hvr-vertical:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.btn-design {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #061d38;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 2px;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
  .btn-design {
      font-size: 14px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Regular.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Light.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-RegularIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-RegularIt.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt SemiBold It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-SemiBoldIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-SemiBoldIt.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-SemiBold.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Thin.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Thin.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-SemiBold.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Light.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Bold.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Thin It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-ThinIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-ThinIt.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Regular.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Black.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Light It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-LightIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-LightIt.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay SemiBold It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-SemiBoldIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-SemiBoldIt.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Bold It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-BoldIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-BoldIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt Thin It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-ThinIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-ThinIt.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Medium.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt Bold It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-BoldIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-BoldIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Medium.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Medium It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-MediumIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-MediumIt.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Bold.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt Light It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-LightIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-LightIt.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt Medium It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-MediumIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-MediumIt.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Black.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Black It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-BlackIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-BlackIt.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay Alt Black It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-BlackIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/GoldplayAlt-BlackIt.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Goldplay It';
  src: url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-RegularIt.woff2') format('woff2'),
    url('https://1772602.fs1.hubspotusercontent-na1.net/hubfs/1772602/goldplay_fonts/Goldplay-RegularIt.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.post-layout .post-layout__sideInner form.hs-form .hs-button.primary {
    margin-top: 20px;
}


.post-layout .post-layout__sideInner form.hs-form .input .hs-input[type="checkbox"], form.hs-form .input .hs-input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

li.hs-form-checkbox {
    margin: 0 !important;
}

label.hs-form-checkbox-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

label.hs-error-msg.hs-main-font-element {
    font-size: 14px !important;
    font-style: italic;
    color: #be2c0d !important;
    font-weight: normal !important;
}
.hs_error_rollup {
    display: none;
}

label.hs-form-checkbox-display {
    font-weight: normal !important;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hero_banner {
    overflow: hidden;
}
.hero_banner .hero_banner--slides {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 800px;
    position: relative;
    z-index: 1;
}
.hero_banner .hero_banner--slides:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: -1;
}
.hero_banner .hero_banner--content {
    position: absolute;
    top: 47%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
}
.hero_banner .hero_banner--header h2 {
    color: #ffffff;
    font-size: 54px;
    margin: 10px 0;
    font-weight: 600;
}
.hero_banner .hero_banner--sub_header p {
    color: #ffffff;
    font-size: 18px;
    padding: 10px 0;
}
.hero_banner .owl-nav button {
    position: absolute;
    top: 48%;
    z-index: 9;
    width: 80px;
    height: 80px;
    border: 2px solid #fff !important;
    border-radius: 100%;
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_banner .owl-nav button.owl-prev {
    left: 2%;
}
.hero_banner .owl-nav button.owl-next {
    right: 2%;
}
.hero_banner .owl-nav button i {
    font-size: 30px;
    color: #fff;
}
.banner-button {
    background: #061d38;
    padding: 12px 35px;
    border-radius: 2px;
    color: #fff;
    border: 1px solid #fff;
    margin: 10px 5px;
    outline: 0 !important;
    cursor: pointer;
    font-weight: 500;
}
.banner-button:hover {
    background: #061d38;
}

@media only screen and (max-width: 1199px) {
    .hero_banner .hero_banner--slides {
        height: 600px;
    }
    .hero_banner .hero_banner--content {
        top: 50%;
        width: 70%;
    }
    .hero_banner .hero_banner--sub_header p {
        font-size: 15px;
    }
    .hero_banner .owl-nav button {
        width: 55px;
        height: 55px;
    }
    .hero_banner .owl-nav button i {
        font-size: 15px;
    }
    .banner-button {
        padding: 10px 20px;
        margin: 5px 5px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .hero_banner .hero_banner--slides {
        height: 400px;
    }
    .hero_banner .hero_banner--header h2 {
        font-size: 22px;
    }  
    .hero_banner .hero_banner--sub_header p {
        font-size: 14px;
    }
    .hero_banner .owl-nav button {
        width: 40px;
        height: 40px;
    }
    .banner-button {
        font-size: 12px;
    }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.features .features--inner {
    transform: translateY(-39%);
    z-index: 999;
    position: relative;
}
.features .features--inner .features--info {
    display: flex;
}
.features .features--info .features--info__inner {
    width: 100%;
    height: 100%;
    min-height: 475px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-bottom: 3px solid #e86c4f;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-box-shadow: 0 0 30px 0 #906d3f33;
    -moz-box-shadow: 0 0 30px 0 #906d3f33;
    box-shadow: 0 0 30px 0 #906d3f33;
    padding: 75px 25px 60px 25px;
}
.features .features--info .features--info__inner:nth-child(2) {
    transform: scale(1.1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.features .features--info .features--info__inner:hover {
    transform: scale(1.1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 999;
}
.features .features--info__inner .features--icon {
    margin: 0 auto 50px;
    width: 80px;
    height: 80px;
    display: flex;
    box-shadow: 0 0 5px #1b325d52;
    background: #ffff;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.features .features--info__inner .features--icon img {
    max-width: 35px;
}
.features .features--info__inner .features--detail {
    text-align: center;
}
.features .features--info__inner .features--detail .features--title h2 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    color: #291d0d;
}
.features .features--info__inner .features--detail .features--description {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 500;
}
.features .features--info__inner .features--button {
    text-align: center;
}
.features .features--info__inner .features--button a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #061d38;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 2px;
    display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .features .features--inner {
      transform: translateY(-25%);
  }
}
@media only screen and (max-width: 1024px) {
  .features .features--inner {
      transform: translateY(-17%);
  }
  .features .features--info .features--info__inner {
      padding: 30px 15px 45px;
      min-height: 430px;
  }
}
@media only screen and (max-width: 767px) {
  .features .features--inner .features--info {
      flex-direction: column;
  }
  .features .features--inner {
      transform: none;
      padding: 20px 0px;
  }
  .features .features--info .features--info__inner {
      padding: 40px 15px 45px;
      margin: 10px 0px;
      min-height: auto;
  }
  .features .features--info .features--info__inner:nth-child(2),
  .features .features--info .features--info__inner:hover {
      transform: scale(1);
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.clients{
  margin-top: -70px;
  margin-bottom: 60px;
  display: block;
  width: 100%;
}
.clients--logo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.clients--logo a {
    width: 18%;
    padding: 10px;
    box-shadow: 0 0 10px #dddd;
    margin: 10px 1%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients--logo a:hover {
    background: #edf4f9;
}
.clients--logo a img {
    width: auto;
}

@media (max-width:767px){
  .clients{
    margin-top: 15px;
  }
  .clients--logo a {
    width: 31%;
  }
}

@media (max-width:575px){
  .clients--logo a {
    width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.about_us .about_us--info {
    display: flex;
}
.about_us .about_us--info.position_right {
    flex-direction: row-reverse;
}
.about_us .about_us--info .about_us--image {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 0px;
}
.about_us .about_us--info .about_us--content {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding-right: 15px;
    padding-left: 15px;
}
.about_us .about_us--info .about_us--content__inner {
    padding-left: 100px;
    padding-top: 50px;
}
.about_us .about_us--info.position_right .about_us--content__inner {
    padding-right: 100px;
    padding-left: 0px;
}
.about_us .about_us--info .about_us--content .title {
    color: #232323;
    font-weight: 600;
    margin-bottom: 25px;
}
.about_us .about_us--info .about_us--content h3 {
    font-size: 24px;
}
.about_us .about_us--info .about_us--content h4 {
    font-size: 22px;
}
.about_us .about_us--info .about_us--content p {
    margin-bottom: 25px;
    line-height: 28px;
}

@media only screen and (max-width: 1199px) {
  .about_us {
      padding-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about_us .about_us--info,
  .about_us .about_us--info.position_right {
      flex-direction: column;
  }
  .about_us .about_us--info .about_us--image,
  .about_us .about_us--info .about_us--content {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0px;
  }
  .about_us .about_us--info .about_us--image {
      margin: 0px 50px;
      text-align: center;
  }
  .about_us .about_us--info .about_us--content__inner {
      padding-left: 0px;
  }
  .about_us .about_us--info.position_right .about_us--content__inner {
      padding-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .about_us .about_us--info .about_us--content__inner {
      padding-top: 40px;
  }
  .about_us .about_us--info .about_us--content .title {
      margin-bottom: 15px;
  }
  .about_us .about_us--info .about_us--content h3 {
      font-size: 18px;
  }
  .about_us .about_us--info .about_us--content h4 {
      font-size: 17px;
  }
  .about_us .about_us--info .about_us--content p {
      font-size: 14px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.counter {
    padding: 50px 0;
    background-color: #edf4f9;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.counter .counter--inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.counter .counter--info {
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.counter .counter--info .counter--icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 0 5px #1b325d52;
    background: #ffff;
    border-radius: 100%;
    margin-bottom: 10px;
}
.counter .counter--info .counter--icon img {
    width: auto;
    padding: 20px;
}
.counter .counter--info .counter--value {
    font-size: 36px;
    color: #e86c4f;
    display: inline-block;
}
.counter .counter--info .counter--name  {
    font-size: 20px;
    color: #061d38;
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
  .counter {
      padding: 30px 0;
  }
}
@media only screen and (max-width: 991px) {
  .counter .counter--info {
      flex: 0 0 50%;
      max-width: 50%;
      margin: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .counter {
      padding: 20px 0;
  }
  .counter .counter--info {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .counter .counter--info .counter--value {
      font-size: 26px;
  }
  .counter .counter--info .counter--name {
      font-size: 18px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.services {
    width: 100%;
    padding: 40px 0 60px;
    display: inline-block;
}
.services .services--info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.services .services--info .services--info__inner {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 15px 0;
}
.services .services--info__wrap {
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #061d381a;
}
.services .services--info .services--info__upper {
    position: relative;
}
.services .services--info .services--image {
    position: relative;
    overflow: hidden;
}
.services .services--info .services--image a {
    display: block;
}
.services .services--info .services--image a:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    background: rgba(255,255,255,.13);
    background: linear-gradient(to right,rgba(255,255,255,.13) 0,rgba(255,255,255,.13) 77%,rgba(255,255,255,.5) 92%,rgba(255,255,255,0) 100%);
}
.services .services--info .services--info__inner:hover .services--image a:after {
    opacity: 1;
    top: -20%;
    left: -30%;
    transition-property: left,top,opacity;
    transition-duration: .7s,.7s,.15s;
    transition-timing-function: linear;
}
.services .services--info .services--image img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all .7s ease-in-out;
}
.services .services--info .services--info__inner:hover .services--image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .7s ease-in-out;
}
.services .services--info .services--icon {
    width: 96px;
    height: 96px;
    left: 0;
    right: 0;
    bottom: -45px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 5px solid #fff;
    border-radius: 50%;
    position: absolute;
    background-color: #061d38;
    -webkit-box-shadow: 0 0 30px 0 #906d3f33;
    -moz-box-shadow: 0 0 30px 0 #906d3f33;
    box-shadow: 0 0 10px 0 #061d382e;
    font-size: 24px;
}
.services .services--info .services--info__inner:hover .services--icon {
    background: #e86c4f;
}
.services .services--info .services--icon img {
    width: 42px;
}
.services .services--info .services--info__lower {
    text-align: center;
    padding: 70px 15px 39px 15px;
    background-color: #fff;
}
.services .services--info .services--info__lower .services--title h3 {
    font-size: 21px;
    font-weight: 600;
    color: #291d0d;
    margin-bottom: 25px;
}
.services .services--info .services--info__lower .services--description p {
    margin-bottom: 19px;
    font-family: Poppins,sans-serif;
}

@media only screen and (max-width: 991px) {
  .services .services--info .services--info__inner {
      flex: 0 0 50%;
      max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .services .services--info .services--info__inner {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .services .services--info .services--info__lower .services--title h3 {
      font-size: 18px;
      margin-bottom: 15px;
  }
  .services .services--info .services--info__lower .services--description p {
      margin-bottom: 18px;
      font-size: 14px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.videos {
    width: 100%;
    padding: 40px 0 80px;
    background: #f0f5fa;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.videos .videos--info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.videos .videos--info__inner {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
}
.videos .videos--thumbnail {
    position: relative;
    width: 100%;
    padding: 10px 0;
}
.videos .videos--thumbnail img {
    width: 100%;
    border: 6px solid #edf4f9;
    box-shadow: 0 0 6px #00000075;
}
.videos .videos--thumbnail .video--link {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}
.videos .videos--thumbnail .video--link i {
    font-size: 15px;
    color: #fff;
    background: #061d38;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 100%;
    border: 2px solid #fff;
}

.videos .videos--button {
    margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
  .videos {
      padding: 30px 0px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .videos {
      padding: 20px 0px 40px;
  }
  .videos .videos--info__inner {
      flex: 0 0 50%;
      max-width: 50%;
  }
  .videos .videos--button {
      margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .videos .videos--info__inner {
      flex: 0 0 100%;
      max-width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.bankruptcy {
    width: 100%;
    padding: 40px 0 70px;
}
.bankruptcy .bankruptcy--info__inner {
    display: flex;
    box-shadow: 0 2px 7px #0000002b;
    border-radius: 5px;
}
.bankruptcy .bankruptcy--info__inner.bankruptcy-position_right {
    flex-direction: row-reverse;
}
.bankruptcy .bankruptcy--image {
    flex: 0 0 50%;
    max-width: 50%;
    height: 460px;
}
.bankruptcy .bankruptcy--image img {
    height: 100%;
    object-fit: cover;
}
.bankruptcy .bankruptcy--info__inner:not(:last-child){
    margin-bottom: 45px;
}
.bankruptcy .bankruptcy--details {
    flex: 1;
    padding: 30px;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.bankruptcy .bankruptcy--details h3 {
    font-weight: 600;
    font-size: 1.75rem;
}
.bankruptcy .bankruptcy--details p {
    line-height: 26px;
}

@media only screen and (max-width: 1024px) {
  .bankruptcy .bankruptcy--image {
      height: 555px;
  }
}
@media only screen and (max-width: 767px) {
  .bankruptcy .bankruptcy--info__inner {
      flex-direction: column;
      box-shadow: none;
      border-radius: 0px;
  }
  .bankruptcy .bankruptcy--info__inner.bankruptcy-position_right {
      flex-direction: column;
  }
  .bankruptcy .bankruptcy--info__inner:not(:last-child){
      margin-bottom: 25px;
  }
  .bankruptcy .bankruptcy--image {
      flex: 0 0 100%;
      max-width: 100%;
      height: 250px;
  }
  .bankruptcy .bankruptcy--image img {
      width: 100%;
      height: 250px;
  }
  .bankruptcy .bankruptcy--details {
      padding: 20px 0px;
      min-height: auto;
  }
  .bankruptcy .bankruptcy--details h3 {
      font-size: 1.4rem;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.clients{
  margin-top: -70px;
  margin-bottom: 60px;
  display: block;
  width: 100%;
}
.clients--logo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.clients--logo a {
    width: 18%;
    padding: 10px;
    box-shadow: 0 0 10px #dddd;
    margin: 10px 1%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients--logo a:hover {
    background: #edf4f9;
}
.clients--logo a img {
    width: auto;
}

@media (max-width:767px){
  .clients{
    margin-top: 15px;
  }
  .clients--logo a {
    width: 31%;
  }
}

@media (max-width:575px){
  .clients--logo a {
    width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.clients{
  margin-top: -70px;
  margin-bottom: 60px;
  display: block;
  width: 100%;
}
.clients--logo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.clients--logo a {
    width: 18%;
    padding: 10px;
    box-shadow: 0 0 10px #dddd;
    margin: 10px 1%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients--logo a:hover {
    background: #edf4f9;
}
.clients--logo a img {
    width: auto;
}

@media (max-width:767px){
  .clients{
    margin-top: 15px;
  }
  .clients--logo a {
    width: 31%;
  }
}

@media (max-width:575px){
  .clients--logo a {
    width: 100%;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.contact_us {
  background-size: cover;
  position: relative;
  z-index: 1;
}
.contact_us:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.63);
  z-index: -1;
}
.contact_us .contact_us--wrap {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.contact_us .contact_us--form {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.contact_us .contact_us--info {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.contact_us .contact_us--info--box {
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact_us .contact_us--info--box .caption {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact_us .contact_us--info--box .heading {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
}
.contact_us .contact_us--info--box  .call-us {
  margin-top: 100px;
}
.contact_us .contact_us--info--box .call-us .text {
  font-size: 24px;
  font-weight: 700;
}
.contact_us .contact_us--info--box .call-us .phone-number {
  font-size: 72px;
  line-height: 78px;
  font-weight: 700;
}
.contact_us .contact_us--info--box .call-us .phone-number .toll-free {
  font-size: 24px;
  font-weight: 700;
  margin-left: 15px;
}
.contact_us .contact_us--form-box {
  padding: 43px 36px 48px 36px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px 0 #906d3f33;
  -moz-box-shadow: 0 0 30px 0 #906d3f33;
  box-shadow: 0 0 30px 0 #906d3f33;
  transform: translateY(-4.8%);
}
.contact_us .contact_us--form-box .title {
  font-size: 24px;
  font-weight: 600;
  color: #291d0d;
  text-align: center;
  margin-bottom: 25px;
}
.contact_us .contact_us--form-box .form-columns-2 .hs-richtext.hs-main-font-element {
  display: none;
}

.contact_us .contact_us--form-box .hs-form-field label {
  font-weight: 600;
}
.contact_us .contact_us--form-box .hs-form-field .hs-input {
  height: 54px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #757575;
}
.contact_us .contact_us--form-box .hs-form-field textarea.hs-input {
  height: 120px;
  padding: 13px 15px;
}
.contact_us .contact_us--form-box .hs-button {
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #061d38;
  text-transform: uppercase;
  padding: 16px 20px 20px 20px;
  border-radius: 2px;
  display: block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  text-decoration: none;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
.contact_us .contact_us--form-box .hs-button:before {
  color: #fff;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e86c4f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.contact_us .contact_us--form-box .hs-button:active, .contact_us .contact_us--form-box .hs-button:focus, .contact_us .contact_us--form-box .hs-button:hover {
  color: #fff;
}
.contact_us .contact_us--form-box .hs-button:active:before, .contact_us .contact_us--form-box .hs-button:focus:before, .contact_us .contact_us--form-box .hs-button:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}


.contact_us .contact_us--form-box .form-columns-2 .hs-form-field {
  margin-bottom: 20px;
}
.contact_us .contact_us--form-box .hs-form-field > label {
  color: #262424 !important;
  display: inline-block;
  font-family: Goldplay !important;
  font-size: 14px !important;
  font-weight: 700;
  margin-bottom: 5px !important;
}
.contact_us .contact_us--form-box .hs-error-msgs li {
  margin: 0;
} 
.contact_us .contact_us--form-box .hs-error-msgs label { 
  font-size: 14px !important;
  font-style: italic;
  font-weight: 400;
  margin: 0;
}
.contact_us .contact_us--form-box .hs-form-field .hs-input[type="checkbox"] {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  -webkit-border-radius: 4px !important;
/*   box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) !important; */
  color: #555 !important;
  font-size: 14px !important;
  margin: 0 !important;
  height: 20px !important;
  min-height: 20px !important;
  transition: border-colorease-in-out .15s, box-shadowease-in-out .15s !important;
  vertical-align: middle;
  padding: 10px;
  width: auto !important;
}
.contact_us .contact_us--form-box .hs-form-field .hs-input {
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  -webkit-border-radius: 4px !important;
/*   box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) !important; */
  color: #555 !important;
  font-size: 14px !important;
  margin: 0 !important;
  height: 37px !important;
  min-height: 37px !important;
  transition: border-colorease-in-out .15s, box-shadowease-in-out .15s !important;
  vertical-align: middle;
  padding: 10px;
  width: 100%
    -webkit-fill-available;
}
.contact_us .contact_us--form-box .hs-form-field textarea.hs-input{
  height: 100px !important;
}
.contact_us .contact_us--form-box .hs-form-field select.hs-input{
  height: 48px !important;
}
.contact_us .contact_us--form-box .hs-form-field .hs-input:focus {
  border: 0;
  outline: 0;
}
.contact_us .contact_us--form-box .hs-form-field label.hs-form-checkbox-display {
  font-weight: normal;
  display: flex !important;
  gap: 10px !important;
}



.contact_us .contact_us--form-box .form-columns-2 .hs-form-field {
  /*   width: 100%;
  float: none; */
  margin-bottom: 12px;
}


@media (min-width:767px){
  .contact_us .inputs-list.multi-container li.hs-form-checkbox {
    flex: 1 1 45%;
    margin: 0;
  }

  .contact_us ul.inputs-list.multi-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .contact_us .contact_us--form-box .form-columns-2 .hs-form-field:last-child {
    padding-left: 10px;
}

.contact_us .contact_us--form-box .form-columns-2 .hs-form-field:first-child {
    padding-right: 10px;
}
}

@media only screen and (max-width: 991px) {
  .contact_us .contact_us--wrap {
    flex-direction: column;
  }
  .contact_us .contact_us--form,
  .contact_us .contact_us--info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .contact_us .contact_us--form-box .title {
    font-size: 18px;
  }
  .contact_us .contact_us--form-box .hs-button {
    font-size: 14px;
  }
  .contact_us .contact_us--info--box .caption {
    font-size: 14px;
  }
  .contact_us .contact_us--info--box .heading {
    font-size: 20px;
    line-height: 26px;
    margin: 20px 0;
  }
  .contact_us .contact_us--info--box .call-us {
    margin-top: 50px;
  }
  .contact_us .contact_us--info--box .call-us .text {
    font-size: 20px;
  }
  .contact_us .contact_us--info--box .call-us .phone-number {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 40px;
  }
  .contact_us .contact_us--form-box .hs-form-field .hs-input {
    width: 100% !important;
    height: 45px;
    font-size: 12px;
  }
  .contact_us .contact_us--form-box .hs-form-field textarea.hs-input {
    height: 80px;
    font-size: 12px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.testimonials {
    background: #f0f5fa;
    width: 100%;
    padding: 40px 0 100px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    overflow: hidden;
}
.testimonials .owl-carousel {
    padding: 0 100px;
}
.testimonials .testimonials--info__items {
    text-align: center;
    max-width: 700px;
    margin: 10px auto;
    background: #fff;
    padding: 60px 70px;
    border-radius: 5px;
    box-shadow: 0 0 10px #0000002e;
}
.testimonials .testimonials--info__items .icon-client {
    display: inline-block;
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}
.testimonials .testimonials--info__items .icon-client img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.testimonials .testimonials--info__items p {
    padding: 13px 0;
}
.testimonials .testimonials--info__items .testimonials--name {
    width: 100%;
    display: block;
    font-size: 17px;
    color: #e86c4f;
}
.testimonials .owl-nav button {
    position: absolute;
    top: 50%;
    font-size: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e86c4f !important;
    border-radius: 2px;
}
.testimonials .owl-nav button i {
    font-size: 20px;
    color: #fff;
}
.testimonials .owl-nav button.owl-prev {
    left: 10%;
}
.testimonials .owl-nav button.owl-next {
   right: 10%;
}
.testimonials .owl-dots {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
.testimonials .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #e86c4f;
    display: inline-block;
    margin: 0 5px;
    border-radius: 1px;
}
.testimonials .owl-dots .owl-dot.active {
    background: #243a65;
}

@media only screen and (max-width: 767px) {
  .testimonials .owl-carousel {
      padding: 0px;
  }
  .testimonials .owl-nav button {
      width: 40px;
      height: 40px;
  }
  .testimonials .owl-nav button.owl-prev {
      left: -10px;
  }
  .testimonials .owl-nav button.owl-next {
      right: -10px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* Blog post */

.blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

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

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}

.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

.hs-field-desc {
    display: none !important;
}

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

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

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

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

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Blog Post Layout Css */
.post-layout {
  padding: 40px 0px;
}
.post-layout .post-layout__inner {
  display: flex;
}
.post-layout .post-layout__inner .post-layout__content {
  flex: 0 0 57.264957265%;
  max-width: 57.264957265%;
}
.post-layout .post-layout__content .post-layout__item {
  box-shadow: 0 0 30px 0 #906d3f33;
  margin-bottom: 30px;
  border-bottom: 3px solid #e86c4f;
  background: #ffffff;
  border-radius: 3px;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
.post-layout .post-layout__content .post-layout__item .img-box a {
  display: block;
}
.post-layout .post-layout__content .post-layout__item .img-box img {
  width: 100%;
}
.post-layout .post-layout__content .post-layout__item .post-body {
  padding: 30px 30px 30px;
  position: relative;
}
.post-layout .post-layout__content .post-layout__item .post-option {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0px 15px;
  margin-top: -28px;
}
.post-layout .post-layout__content .post-layout__item .post-option span {
  margin: 0 5px;
  text-align: center;
  padding: 10px 20px;
  background: #3a80bf;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  border-radius: 2px;
}
.post-layout .post-layout__content .post-layout__item .post-option span a {
  color: #ffffff;
}
.post-layout .post-layout__content .post-layout__item .post-body .post-header h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.post-layout .post-layout__content .post-layout__item .post-body .post-header h2 a {
  color: #232323;
  font-weight: 600;
}
.post-layout .post-layout__content .post-layout__item .post-body p {
  font-weight: 500 !important;
  margin-bottom: 50px;
}
.post-layout .post-layout__content .post-layout__item .post-body .read-more-btn .btn-design {
  padding: 10px 30px;
  font-size: 14px;
}
.post-layout .post-layout__content .post-pagination {
  text-align: right;
  padding: 20px 0 30px;
}
.post-layout .post-layout__content .post-pagination .btn-design {
  padding: 10px 30px;
  font-size: 14px;
}
.post-layout .post-layout__inner .post-layout__sidebar {
    flex: 0 0 40.170940171000005%;
    margin-left: 2.564102564%;
    max-width: 40.170940171000005%;
    min-height: 1px;
}
.post-layout .post-layout__sideInner {
  box-shadow: 0 0 10px #ddd;
  padding: 20px 20px;
  background: #fff;
}
.post-layout .post-layout__sideInner form.hs-form {
  padding: 5px 0;
  margin-bottom: 20px;
}
.post-layout .post-layout__sideInner form.hs-form label {
  font-size: 16px;
  color: #232323;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.post-layout .post-layout__sideInner form.hs-form .input .hs-input {
  font-family: 'Lato',sans-serif;
  width: 100%;
  line-height: inherit;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #555;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.post-layout .post-layout__sideInner form.hs-form .hs-button.primary {
  border: 0;
  background: #061d38;
  outline: 0;
  color: #fff;
  padding: 12px 30px;
  border-radius: 3px;
  font-family: 'Lato',sans-serif;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  display: inline-block;
  transition: all .25s ease;
}
.post-layout .post-layout__sideInner .author-and-topic .hs_cos_wrapper {
  display: flex;
}
.post-layout .post-layout__sideInner .dropdown {
  flex: 1;
  margin: 10px 0px;
}
.post-layout .post-layout__sideInner .dropdown .dropbtn {
  margin: 0;
  width: 100% !important;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 600;
  line-height: inherit;
  background: #061d38;
  font-size: 12px;
  border: 0px;
}
.post-layout .post-layout__sideInner .dropdown:last-child {
  margin-left: 1.4%;
}
.post-layout .post-layout__sideInner .dropdown-content {
  background-color: rgb(249, 249, 249);
  min-width: 160px;
  box-shadow: rgb(0 0 0 / 20%) 0px 8px 16px 0px;
  height: 272px;
  overflow-x: hidden;
}
.post-layout .post-layout__sideInner .dropdown-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}
.post-layout .post-layout__sideInner .dropdown-content::-webkit-scrollbar {
  width: 3px;
  background-color: #061d38;
}
.post-layout .post-layout__sideInner .dropdown-content::-webkit-scrollbar-thumb {
  background-color: #000000;
}
.post-layout .post-layout__sideInner .dropdown-content a {
  padding: 6px 14px;
  text-align: left;
  border-bottom: 1px solid #000;
  font-size: 14px;
}
.post-layout .post-layout__sideInner .dropdown-content a:hover {
  background-color: rgb(241, 241, 241);
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form {
  margin-top: 20px;
  display: block;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .form-title {
  font-size: 20px;
  color: #232323;
  font-weight: 600;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-richtext {
  font-size: 16px;
  line-height: 1.5;
  color: #262424;
  word-break: break-word;
  margin-bottom: 20px;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-form-field {
  margin-bottom: 2px;
  padding: 0 3px;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-form-field label {
  font-size: 14px;
  margin-bottom: 5px;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-form-field input {
  padding: 7px !important;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-form-field select,
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-form-field textarea {
  padding: 7px 12px !important;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-error-msgs li {
  font-style: italic;
  margin: 0px;
}
.post-layout .post-layout__sideInner .hs_cos_wrapper_type_form .hs-error-msgs li label {
  margin: 0px;
  margin-bottom: 8px;
}
.post-layout .post-layout__sideInner .tabber-wrap {
  margin: 20px 0;
  font-size: 14px;
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs {
  border-bottom: 1px solid rgb(221, 221, 221);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs li {
  margin-bottom: -1px;
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs li a {
  font-size: 16px;
  color: rgb(35, 35, 35);
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  line-height: 20px;
  display: block;
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs li a.active {
  border-color: rgb(222, 226, 230) rgb(222, 226, 230) rgb(255, 255, 255);
  border-top: 2.5px solid rgb(6, 29, 56);
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs li a.active:hover {
  border-color: rgb(222, 226, 230) rgb(222, 226, 230) rgb(255, 255, 255);
  border-top: 2.5px solid rgb(6, 29, 56);
}
.post-layout .post-layout__sideInner .tabber-wrap ul.tabber-tabs li a:hover {
  border-color: rgb(222, 226, 230) rgb(222, 226, 230) rgb(255, 255, 255);
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content {
  border: 0px;
  padding: 15px 5px;
  background: #fff;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs-with-featured-image:not(:last-child) {
  border-bottom: 1.4px solid rgb(165, 165, 165);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs-with-featured-image:last-child {
  margin-bottom: 0px;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs-rss-item-text {
  float: right;
  padding: 0 0 0 15px;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs-rss-item-text a.hs-rss-title {
  font-size: 15px;
  color: rgb(6, 29, 56);
  font-weight: 600;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs-rss-item-text .hs-rss-byline {
  opacity: 1;
  font-size: 14px;
  line-height: 1.5;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_listing ul,
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_filter ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_listing ul .hs-postlisting-item:not(:last-child) {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_listing ul .hs-postlisting-item a,
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_filter ul li a{
  font-size: 14px;
  color: rgb(6, 29, 56);
  font-weight: 600;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_filter h3 {
  display: none;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_filter ul li {
  width: 100%;
  margin: 5px 0px;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(204, 204, 204);
  padding: 5px 0px;
}
.post-layout .post-layout__sideInner .tabber-wrap .tabber-content .hs_cos_wrapper_type_post_filter .filter-expand-link {
  background: rgb(6, 29, 56);
  color: rgb(255, 255, 255);
  padding: 8px 20px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
}

/* News Post Css */
.news-banner {
  position: relative;
}
.news-banner img {
  width: 100%;
}
.news-banner .inner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-banner .inner-content h1 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 600;
}
.news-banner .inner-content .btn a {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  background: #e86c4f;
  padding: 8px 30px;
  border-radius: 5px;
  margin-top: 10px;
  color: #ffffff;
}
.post-layout .post-layout__content .news-layout__item {
  border: 1px solid #ddd;
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  background: #f7f7f7;
  padding: 15px;
  margin-bottom: 50px;
  font-size: 14px;
}
.post-layout .post-layout__content .news-layout__item .news-header h2 {
  font-size: 24px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 10px;
  margin: 0 0 20px;
  line-height: 1.1;
  font-weight: 900;
}
.post-layout .post-layout__content .news-layout__item .news-header h2 a:hover {
  color: #2a6496;
}
.post-layout .post-layout__content .news-layout__item .news-body {
  display: flex;
}
.post-layout .post-layout__content .news-layout__item .img-box {
  flex: 0 0 50%;
  padding: 5px;
  border: solid 1px #ccc;
  background-color: #eee;
  margin: 0 20px 10px 0;
}
.post-layout .post-layout__content .news-layout__item .img-box a {
  display: block;
}
.post-layout .post-layout__content .news-layout__item .text-box {
  flex: 1;
}
.post-layout .post-layout__content .news-layout__item .text-box p,
.post-layout .post-layout__content .news-layout__item .text-box p  * {
  font-size: 14px !important;
  color: #262424 !important;
  line-height: 1.5;
  font-weight: 500;
}
.post-layout .post-layout__content .news-layout__item .news-footer {
  margin: 15px -15px -15px;
  padding: 10px 15px;
  background: #eee;
  border-top: 1px solid #ddd;
  color: #000;
  overflow: hidden;
}
.post-layout .post-layout__content .news-layout__item .news-footer .options {
  float: left;
}
.post-layout .post-layout__content .news-layout__item .news-footer span {
  margin: 0 5px;
}
.post-layout .post-layout__content .news-layout__item .news-footer span a:hover,
.post-layout .post-layout__content .news-layout__item .news-footer .more-link:hover{
  color: #2a6496;
}
.post-layout .post-layout__content .news-layout__item .news-footer .more-link {
  float: right;
}
.post-layout .post-layout__content .news-pagination a {
  display: inline-block;
  background: #eee;
  padding: 6px 12px;
  margin-left: -4px;
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.5;
}
.post-layout .post-layout__content .news-pagination a:first-child {
  margin-left: 0;
}
.post-layout .post-layout__content .news-pagination a:hover {
  color: #fff;
  background: #194e85;
}
.post-layout .post-layout__sideInner .subscriber-form .hs_cos_wrapper_type_form {
  margin-top: 0px;
}
.post-layout .post-layout__sideInner .subscriber-form .hs_cos_wrapper_type_form .hs-form-field label{
  display: none;
}
.post-layout .post-layout__sideInner .subscriber-form .hs_cos_wrapper_type_form .hs-richtext {
  margin-bottom: 10px;
}
.post-layout .post-layout__sideInner .news-post-cta .hs_cos_wrapper:not(:last-child) {
  margin-bottom: 40px;
  display: block;
}
.post-layout .post-layout__sideInner .news-post-cta .hs_cos_wrapper:last-child {
  margin-top: 40px;
  display: inline-block;
}
.post-layout .post-layout__sideInner .news-post-cta .hs_cos_wrapper .cta_button {
  padding: 15px 30px;
  display: block;
}
.post-layout .post-layout__sideInner .news-post-cta hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}

/* Single Post Layout */
.post-layout .post-layout__single {
  box-shadow: 0 0 30px 0 #906d3f33;
  -webkit-box-shadow: 0 0 30px 0 #906d3f33;
  -moz-box-shadow: 0 0 30px 0 #906d3f33;
  border-radius: 3px;
  border-bottom: 3px solid #e86c4f;
  padding: 30px;
  transition: all .5s ease;
}
.post-layout .post-layout__single .single__head h1 {
  font-size: 26px;
  color: #232323;
  font-weight: 600;
  margin: 20px 0 10px;
  line-height: 1.1;
  display: inline-block;
}
.post-layout .post-layout__single .single__head .options {
  width: 100%;
  display: flex;
  margin: 15px 0 25px;
}
.post-layout .post-layout__single .single__head .options span {
  margin: 0 2px;
  text-align: center;
  padding: 10px 20px;
  background: #3a80bf;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  border-radius: 2px;
}
.post-layout .post-layout__single .single__head .options span i {
  margin-right: 5px;
}
.post-layout .post-layout__single .single__head .options span a {
  color: #fff;
}
.post-layout .post-layout__single .layout__single__body img {
  padding: 5px;
  border: solid 1px #ddd;
  width: 100% !important;
}
.post-layout .post-layout__single .layout__single__body h2 {
  font-size: 26px;
  margin: 10px 0;
}
.post-layout .post-layout__single .layout__single__body h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}
.post-layout .post-layout__single .layout__single__body h4 {
  color: #194e85;
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}
.post-layout .post-layout__single .layout__single__body ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
  margin: 0 !important;
}
.post-layout .post-layout__single .layout__single__body ul li {
  position: relative;
}
.post-layout .post-layout__single .layout__single__body ul li:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  margin-right: 8px;
  font-size: 18px;
  color: #232323;
}
.post-layout .post-layout__single .layout__single__author {
  display: flex;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 42px;
  padding-top: 10px;
}
.post-layout .layout__single__author figure {
  max-width: 80px;
  max-height: 80px;
  border: 0;
  overflow: hidden;
  border-radius: 100%;
  padding-top: 8px;
  margin: 0 0 1rem;
}
.post-layout .layout__single__author figure img {
  border: 0;
  padding: 0;
  max-width: 80px;
  max-height: 80px;
  width: 100% !important;
}
.post-layout .layout__single__author .author_text {
  display: inline-block;
  width: 100%;
  padding-left: 30px;
}
.post-layout .layout__single__author .author_text h4 {
  margin: 10px 0;
}
.post-layout .layout__single__author .author_text h4 a {
  font-family: Goldplay !important;
  font-size: 18px !important;
  color: #232323 !important;
  font-weight: 600;
}
.post-layout .layout__single__author .author_text p {
  font-family: Goldplay !important;
  line-height: 23px;
  color: #232323;
  font-weight: 500;
  font-size: 15px;
}
.post-layout .layout__single__author .author_text .social-links {
  display: flex;
}
.post-layout .layout__single__author .author_text .social-links a {
  display: flex;
  padding: 0 5px;
  width: 40px;
  background: #061d38;
  height: 40px;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.post-layout .layout__single__author .author_text .social-links a i {
  color: #fff;
  padding: 0;
  font-size: 20px;
}
.post-layout .layout__single__share {
  width: 100%;
  margin: 40px 0 10px 0;
  -webkit-box-shadow: 0 0 30px 0 #906d3f33;
  -moz-box-shadow: 0 0 30px 0 #906d3f33;
  box-shadow: 0 0 30px 0 #906d3f33;
  border-radius: 3px;
  overflow: hidden;
  border-bottom: 3px solid #e86c4f;
  padding: 30px 30px 40px;
  transition: all .5s ease;
}
.post-layout .layout__single__share h5 {
  font-size: 22px;
  color: #232323;
  text-transform: capitalize;
  font-weight: 900;
  margin: 10px 0;
}

/* Single News Layout */
.post-layout .news-layout__single .single__head h2 {
  font-size: 30px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 10px;
  margin: 0 0 20px;
  color: #194e85;
  line-height: 1.1;
  font-weight: 900;
}
.post-layout .news-layout__single .single__head .options {
  margin-bottom: 5px;
}
.post-layout .news-layout__single .layout__single__body img {
  padding: 5px;
  border: solid 1px #ddd;
}

.post-layout .news-layout__single .layout__single__body h2 {
  font-size: 30px;
}
.post-layout .news-layout__single .layout__single__body h3 {
  font-size: 24px;
}
.post-layout .news-layout__single .layout__single__body h2,
.post-layout .news-layout__single .layout__single__body h3 {
  margin: 20px 0 10px;
  color: #194e85;
  line-height: 1.1;
  font-weight: 900;
}

@media (max-width:1024px){
  .post-layout .post-layout__inner .post-layout__content {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .post-layout .post-layout__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .post-layout .post-layout__inner .post-layout__sidebar {
    flex: 1 1 100%;
    margin-left: 0;
    max-width: 100%;
    min-height: 1px;
    margin-top: 40px;
  }
  [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Media Css */
@media screen and (max-width: 767px) {
  .post-layout .post-layout__inner {
    flex-direction: column;
  }
  .post-layout .post-layout__inner .post-layout__content,
  .post-layout .post-layout__inner .post-layout__sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .post-layout .post-layout__content .post-layout__item .post-body .post-header h2,
  .post-layout .post-layout__content .news-layout__item .news-header h2 {
    font-size: 18px;
  }
  .post-layout .post-layout__inner .post-layout__sidebar {
    margin-top: 40px;
    margin-left: 0px;
  }
  .news-banner img {
    height: 150px;
    object-fit: cover;
  }
  .news-banner .inner-content h1 {
    font-size: 24px;
  }
  .news-banner .inner-content .btn a {
    font-size: 13px;
    margin-top: 0;
  }
  .post-layout .post-layout__single .single__head h1 {
    font-size: 20px;
  }
  .post-layout .post-layout__single .single__head .options span {
    margin: 5px 2px;
  }
  .post-layout .news-layout__single .single__head h2,
  .post-layout .news-layout__single .layout__single__body h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  .post-layout .post-layout__content .news-layout__item .news-body {
    flex-direction: column;
  }
  .post-layout .post-layout__content .news-layout__item .img-box {
    flex: 0 0 100%;
    margin: 0 0px 10px 0;
  }
  .post-layout .post-layout__content .news-layout__item .news-footer span {
    margin: 0px;
    display: block;
  }
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Flex */
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-warp {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* End Flex */

/* List */
.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Footer */
/* Disclaimer Section */
.disclaimer-section {
  width: 100%;
  background: #f0f5fa;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

.disclaimer-section p {
  font-size: 15px;
  margin: 0;
  color: #232323;
  font-weight: 500;
  line-height: 24px;
}

/* Locations */
.locations {
  padding: 60px 0;
  background-color: #061d38;
  color: #fff;
}

.locations a {
  color: #fff;
}

.locations .location__heading {
  text-align: center;
  padding-bottom: 40px;
}

.locations .location__heading h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}

.locations .location-list li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% / 5 - 30px);
  flex: 0 0 calc(100% / 5 - 30px);
  max-width: calc(100% / 5 - 30px);
}

.locations .location-list ul li:not(:last-child) {
  margin-right: 30px;
}

.locations .location-list-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px dashed #fff;
  padding-bottom: 10px;
}

.locations .location-list-details {
  color: #fff;
  font-weight: 300;
}

.locations .location-list-details address {
  font-style: initial;
}

.locations .location-list-details .phone {
  font-weight: 600;
  padding-right: 10px;
  color: #fff;
  font-size: 16px;
  line-height: inherit;
}

.locations .location-list-details a {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}

.locations .location-list-details a:hover {
  color: #e86c4f;
}

.locations .location-list-details .map {
  font-weight: 500;
  text-decoration: underline !important;
}

/* Footer Links */
footer .footer-nav {
  padding: 40px 0;
}
footer .footer-nav .footer-links ul {
  text-align: center;
  justify-content: center;
}
footer .footer-nav .footer-links li {
  display: inline-block;
  padding: 0 9px;
}
footer .footer-nav .footer-links li a {
  font-size: 15px;
  text-transform: uppercase;    
  color: #232323;
}
footer .footer-nav .footer-links li a:hover {
  color: #e86c4f;
}

footer .footer-nav .social-links {
  text-align: center;
  width: 100%;
  padding-top: 10px;
}
footer .footer-nav .social-links a {
  display: inline-block;
  width: auto;
  padding: 0 3px;
}
footer .footer-nav .social-links i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #061d38;
  border-radius: 100%;
  font-size: 15px;
}
footer .footer-nav .social-links i:hover {
  background: #e86c4f;
}
footer .copyright {
  background: #e86c4f;
  padding: 10px 0;
}
footer .copyright p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .locations {
    padding: 30px 0;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: revert !important;
}

  .locations .location-list ul {
    display: block !important;
  }

  .locations .location-list ul .col {
    padding: 0 !important;
  }
  .locations .location__heading {
    text-align: left;
    padding-bottom: 0px;
  }

  .locations .location__heading h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .locations .location-list ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .locations .location-list ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 15px 0;
  }

  .locations .location-list-details a {
    font-size: 14px;
  }
  footer .footer-nav {
    padding: 20px 0;
  }
  footer .footer-nav .footer-links li {        
    padding: 2px 10px;
  }
  footer .footer-nav .footer-links li a {
    font-size: 13px;
  }    
  .footer .copyright p {
    font-size: 12px;
  }
}

@media (min-width: 767px) and (max-width: 1199px) {
  .locations .location-list ul .col {
    flex: unset !important;
    width: 33.3% !important;
    margin-top: 27px;
  }
  .locations .location-list ul .col:first-child,
  .locations .location-list ul .col:nth-child(2),
  .locations .location-list ul .col:nth-child(3){
    margin:0;
  }
}
/* Predefined CSS */
a{
  text-decoration:none;
}
/* End Predefined CSS */

/* Flex */
.d-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-warp{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.align-items-center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.justify-content-center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-between{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/* End Flex */

/* Anchor Hover Effect */
.header__top-bar ul li a,
.header__top-bar ul li.active a,
.header__top-bar .right__sec ul li:nth-child(3) a{
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px transparent;
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.header__top-bar ul li a:before,
.header__top-bar ul li.active a:before,
.header__top-bar .right__sec ul li:nth-child(3) a:before{
    color: #fff;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e86c4f;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.header__top-bar ul li a:active,
.header__top-bar ul li a:focus,
.header__top-bar ul li a:hover,
.header__top-bar .right__sec ul li:nth-child(3) a:hover{
    color: #fff
}

.header__top-bar .left__sec ul li a:active:before,
.header__top-bar .left__sec ul li a:focus:before,
.header__top-bar .left__sec ul li a:hover:before,
.header__top-bar .right__sec ul li:nth-child(3) a:active:before,
.header__top-bar .right__sec ul li:nth-child(3) a:focus:before,
.header__top-bar .right__sec ul li:nth-child(3) a:hover:before,
.header__top-bar ul li.active a:before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* End Anchor Hover Effect */

/* Header */
header.header .container{
  max-width: 1250px;
}

.header.sticky .header__top-bar {
    opacity: 0;
}
.header.sticky .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
/* Header Top Bar */
.header__top-bar {
    width: 100%;
    background: #edf4f9;
}
.header__top-bar ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}
.header__top-bar ul li a i{
    margin-right: 10px;
}
.header__top-bar .left__sec ul li{
    margin-right: 4px;
}
.header__top-bar .left__sec ul li a {
    padding: 15px 20px;
    color: #232323;
    text-transform: uppercase;
}
.header__top-bar .left__sec ul li a:hover,
.header__top-bar .left__sec ul li a:focus,
.header__top-bar .left__sec ul li a:active,
.header__top-bar .left__sec ul li.active a{
    color: #fff;
}
.header__top-bar .right__sec ul li:not(:last-child){
    margin-right: 10px;
}
.header__top-bar .right__sec ul li a{    
    padding: 10px 20px;     
    border-radius: 2px;    
}
.header__top-bar .right__sec ul li:first-child a{    
    color: #061d38;
}
.header__top-bar .right__sec ul li:nth-child(2) a{
    background: #061d38;
    color: #fff;    
    max-height: 45px;    
    padding: 10px 15px;
}
.header__top-bar .right__sec ul li:nth-child(3) a{
    background: #e86c4f;
    color: #fff;
    padding: 10px 30px;        
    max-height: 45px;    
}
.header__top-bar .right__sec ul li:nth-child(3) a:hover:before{
    background: #061d38;
}
/* End Header Top Bar */

/* Main header */
.main-header{
    width: 100%;
    display: inline-block;
    background: #061d38;    
    position: relative;
}
.main-header .navigation .brand a{
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height:105px;
}
.main-header .navigation ul li a{
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 0 8px 0 8px;
}
.main-header .navigation .hs-menu-wrapper > ul > li > a {    
    line-height: 105px;
    display: inline-block;
}
.main-header .navigation .hs-menu-wrapper ul li a:hover {    
    color: #f26f51;
}
.main-header .navigation ul li.hs-item-has-children{
  margin-right: 8px;
}
.main-header .navigation ul li.hs-item-has-children > a{
    padding: 0 8px 0 8px;
}
.main-header .navigation ul li.hs-item-has-children>span[class^="drop_dwnchd"] {
    margin-left: -10px;
}
.main-header .navigation ul li.hs-item-has-children > a:before {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    font-size: 10px;
}
.main-header .navigation ul li.hs-item-has-children>a:empty,
.main-header .navigation ul li.hs-item-has-children>a:empty:before {
    display: none;
}
/* Navigation Dropdown */
.main-header .navigation ul li.hs-item-has-children > .hs-menu-children-wrapper {
    background: #061d38;
    width: 250px;
}
.main-header .navigation ul li.hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0px;
    opacity: 1;
    z-index: 9999;
}
.main-header .navigation ul li.hs-item-has-children .hs-menu-children-wrapper li a{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    white-space: break-spaces;
}
.main-header .navigation ul li.hs-item-has-children.hs-menu-depth-2 a{    
    padding-right: 30px;
}
.main-header .navigation ul li.hs-item-has-children.hs-menu-depth-2>a:before {        
    right: 10px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/* Mobile Hamburger */
.nav-mobile {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    background: #061d38;
    height: 40px;
    width: 45px;
    border-radius: 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#nav-toggle {
    position: absolute;
    left: 7.5px;
    top: 10px;
    cursor: pointer;
    padding: 10px 35px 16px 0
}

#nav-toggle span,
#nav-toggle span:after,
#nav-toggle span:before {
    cursor: pointer;
    border-radius: 1px;
    height: 2px;
    width: 30px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

#nav-toggle span:before {
    top: -8px
}

#nav-toggle span:after {
    bottom: -8px
}

#nav-toggle.active span {
    background-color: transparent
}

#nav-toggle.active span:after,
#nav-toggle.active span:before {
    top: 0
}

#nav-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/* End Main header */


/* Media Query */
/* Min Width */
@media screen and (min-width: 992px){
    .main-header .navigation .hs-menu-wrapper>ul>li:last-child>a { padding-right:0px }
    .main-header .navigation ul li.hs-item-has-children .hs-menu-children-wrapper span[class^="sub_menu_chid"] {
        display: none;
    }
    .main-header .navigation ul li.hs-item-has-children .hs-menu-children-wrapper li {
        line-height: 15px;        
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        border-bottom: 1px solid #fff;
        color: #fff;
        width: 100%;
    }
    .main-header .navigation ul li.hs-item-has-children .child-trigger {
        display: none;
    }
    .main-header .navigation ul li.hs-item-has-children.hs-menu-depth-2:hover>.hs-menu-children-wrapper {
        left: 100%;
        opacity: 1;
        top: 0;
        height: 300px;
        overflow-y: auto;    
        -ms-flex-wrap: nowrap;    
        flex-wrap: nowrap;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px){
    .main-header .navigation .brand {        
        width: 180px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px){
    .main-header .navigation ul li a{        
        font-size: 12px;
    }
}

/* Max Width */
@media only screen and (max-width: 991px){    
    .main-header .nav-container {
        position: relative;
    }
    .main-header .navigation .brand {        
        width: 175px;
    }
    .main-header .navigation .brand a {
        padding: 16px 0;
    }
    .header__top-bar ul li a {        
        font-size: 12px;
    }
    .header__top-bar .header__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header__top-bar .right__sec ul li:first-child {
        display: none !important;
    }
    .header__top-bar .header__inner .right__sec {
        padding: 10px 0;
    }
    .header__top-bar .right__sec ul li a {        
        font-size: 13px;
    }
    
    .main-header .hs-menu-flow-horizontal {        
        position: absolute;
        top: 100%;
        width: 100%;
        background: #061d38;
        left: 0;
        z-index: 9999;
        overflow: auto !important;
        max-height: 85vh;
        display: none;
    }    
    .main-header .nav-mobile {
        display: block;
        background: #e86c4f
    }
    .main-header .hs-menu-flow-horizontal ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid #fff;
    }
    .main-header .navigation .hs-menu-wrapper ul li a {
        line-height: 50px;
        display: block;
        padding: 0 !important;
        padding-left: 15px !important;
    }
    .main-header .navigation ul li.hs-item-has-children {
        position: relative;
        margin-right: 0px;
    }
    .main-header .navigation ul li.hs-item-has-children .child-trigger {
      font-size: 16px;
      background: #e86c4f;
      width: 50px;
      text-align: center;
      border-left: 1px solid #fff;
      height: 50px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #fff;
      position: absolute;
      right: 0;
      top: 0;
    }
    .main-header .navigation ul li.hs-item-has-children>a:before {
        display:none;
        font-size: 16px;
        background: #e86c4f;
        width: 50px;
        text-align: center;
        border-left: 1px solid #fff;
    }    
    .main-header .navigation ul li.hs-item-has-children>.hs-menu-children-wrapper {        
        width: 100%;
        position: static;
        opacity: 1;
        border-top: 1px solid #fff;
        display: none;
    }
    .main-header .navigation ul li.hs-item-has-children>.hs-menu-children-wrapper.main {        
        display: block;
    }
    .main-header .navigation ul li.hs-item-has-children>.hs-menu-children-wrapper li:last-child {
        border-bottom: none;
    }
    .main-header .navigation ul li.hs-item-has-children.hs-menu-depth-1>ul.hs-menu-children-wrapper li>a {
        padding-left: 40px !important;
    } 
    .main-header .navigation ul li.hs-item-has-children.hs-menu-depth-2>ul.hs-menu-children-wrapper li>a {
        padding-left: 60px !important;
    }
    .main-header .navigation ul li.hs-item-has-children.hs-menu-depth-2>a:before {
        right: 0px;        
        -webkit-transform: rotate(0deg);        
        transform: rotate(0deg);
    }
    .main-header .navigation ul li.hs-item-has-children>span[class^="drop_dwnchd"],
    .main-header .navigation ul li.hs-item-has-children [class^="sub_menu_chid"]{
      display: none;
    }
}

@media only screen and (max-width: 767px){
    .header__top-bar .header__inner .hs-menu-wrapper.hs-menu-flow-horizontal ul{        
        -webkit-box-orient: horizontal !important;        
        -webkit-box-direction: normal !important;        
        -ms-flex-direction: row !important;        
        flex-direction: row !important;
    }
    .header__top-bar .right__sec ul li:nth-child(3) a {        
        padding: 10px 15px;
    }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}


section.features {
    display: none;
}
section.features {
    display: none;
}

.call_us_section {
    margin-top: 60px;
    text-align: center;
}

.call_us_section .call_us_content {
    margin-bottom: 70px;
    display: inline-block;
}
.call_us_section {
    top: 0 !important;
}
.header__top-bar .left__sec ul li:first-child a {
    background: #e86c4f;
    color: #fff;
}

.header__top-bar .left__sec ul li:first-child a:hover {
    background: #061d38;
}
 .fade:not(.show) {
    opacity: 1 !important;
}
.header__top-bar .right__sec ul li:nth-child(2) a {
    background: #061d38;
    color: #fff;
    max-height: 45px;
    padding: 10px 15px;
    display: none !important;
}
/* new css */

.locations .location-list-details address {
    margin: 0;
}
header.header .header__top-bar li.hs-menu-item.hs-menu-depth-1:nth-child(2) {
    display: block !important;
}