/* Theme base styles */

/* root css variables */

:root {
  --container-width: 1280px;
  --container-padding-width: 1310px;
  --container-spacing: 15px;
}


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

/* CSS variables */

:root {
  --column-gap: 15px;
  --column-width-multiplier: 8.333;
}



/* Mobile layout */

.row-fluid {
/*   display: flex;
  flex-wrap: wrap; */
  display: grid !important;
  width: 100%;
  gap: var(--column-gap) 0;
	grid-template-rows: repeat(1, 1fr);
	grid-template-columns: repeat(12, 1fr);
}

.container-fluid .row-fluid-wrapper .row-fluid {
  display: grid !important;
}

.row-fluid .span12 {
/* 	flex: 0 0 100%; */
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
	grid-column: auto / span 12;
}

/* Desktop layout */

@media (min-width: 1024px) {
  .row-fluid {
/*     flex-wrap: nowrap;
    justify-content: space-between; */
    gap: var(--column-gap);
  }
  
  
    .row-fluid .span1 {
			
			grid-column: auto / span 1;
    }
  
    .sidebar .row-fluid .span1 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span2 {
			
			grid-column: auto / span 2;
    }
  
    .sidebar .row-fluid .span2 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span3 {
			
			grid-column: auto / span 3;
    }
  
    .sidebar .row-fluid .span3 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span4 {
			
			grid-column: auto / span 4;
    }
  
    .sidebar .row-fluid .span4 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span5 {
			
			grid-column: auto / span 5;
    }
  
    .sidebar .row-fluid .span5 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span6 {
			
			grid-column: auto / span 6;
    }
  
    .sidebar .row-fluid .span6 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span7 {
			
			grid-column: auto / span 7;
    }
  
    .sidebar .row-fluid .span7 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span8 {
			
			grid-column: auto / span 8;
    }
  
    .sidebar .row-fluid .span8 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span9 {
			
			grid-column: auto / span 9;
    }
  
    .sidebar .row-fluid .span9 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span10 {
			
			grid-column: auto / span 10;
    }
  
    .sidebar .row-fluid .span10 {
      grid-column: auto / span 12;
    }
  
    .row-fluid .span11 {
			
			grid-column: auto / span 11;
    }
  
    .sidebar .row-fluid .span11 {
      grid-column: auto / span 12;
    }
  
}
.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: var(--container-width, 1280px);
}

.widget-type-header {
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
}

.content-wrapper {
  max-width: var(--container-padding-width, 1310px);
  margin: 0 auto;
  padding-inline:var(--container-spacing,15px);
}

.container .hs_cos_wrapper .container {
  padding-inline: 0;
}

.row-fluid-wrapper.dnd-section {
  padding-inline: var(--container-spacing,15px);
}

.row-fluid-wrapper.dnd-section .dnd-section,
.container .row-fluid-wrapper.dnd-section {
  padding-inline: 0;
}

.dnd-section .dnd-column .px-unset {
  margin-inline: calc(-1 * var(--container-spacing,15px));
}

.dnd-section .dnd-column .container .px-unset,
.dnd-section .px-unset .px-unset{
  margin-inline: 0;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

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

/* Common */

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

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

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

* {
  max-height: 1000000px;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol,
dl,
p,
h1,
h2,
h3,
h4,
h5,
h6,
address,
form,
table,
blockquote,
applet,
embed,
object,
iframe,
frameset {
  margin: 0 0 20px;
}

blockquote {
  border-left: 4px solid #ddd;
  padding-left: 10px;
  margin-left: 0;
}

table {
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 3px;
  text-align: left;
  vertical-align: top;
}

th {
  text-align: center;
  vertical-align: middle;
}

ul,
ol {
  padding-left: 20px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  padding-left: 20px;
  margin: 0;
}

ul {
  list-style-type: disc;
}

dl dt {
  float: left;
  clear: left;
  padding-right: 0.3em;
  font-weight: bold;
}
dl dd {
  overflow: hidden;
}

pre {
  max-width: 100%;
  overflow: auto;
}

body {
  color: #000;
  background: #fff;
  font: 16px/1.2 "sweet-sans-pro", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.2;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: inline-block;
}

.gm-style img {
  max-width: none;
}

iframe {
  max-width: 100%;
}

.resize-active * {
  transition: none !important;
}

.clearfix:after, dl:after {
  content: "";
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

.df-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (min-width: 576px) {
  .df-row.df-rr-ph {
    flex-direction: row-reverse;
  }
}
@media (min-width: 576px) {
  .df-row.df-aic-ph {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .df-row.df-rr-sm {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .df-row.df-aic-sm {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .df-row.df-rr-md {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .df-row.df-aic-md {
    align-items: center;
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-1 {
    flex: 1 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-2 {
    flex: 1 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-3 {
    flex: 1 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-4 {
    flex: 1 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-5 {
    flex: 1 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-6 {
    flex: 1 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-7 {
    flex: 1 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-8 {
    flex: 1 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-9 {
    flex: 1 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-10 {
    flex: 1 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-11 {
    flex: 1 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
  }
}
@media (min-width: 576px) {
  .df-row .col-ph-12 {
    flex: 1 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-0 {
    margin-left: calc(8.3333333333% * 0);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-1 {
    margin-left: calc(8.3333333333% * 1);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-2 {
    margin-left: calc(8.3333333333% * 2);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-3 {
    margin-left: calc(8.3333333333% * 3);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-4 {
    margin-left: calc(8.3333333333% * 4);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-5 {
    margin-left: calc(8.3333333333% * 5);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-6 {
    margin-left: calc(8.3333333333% * 6);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-7 {
    margin-left: calc(8.3333333333% * 7);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-8 {
    margin-left: calc(8.3333333333% * 8);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-9 {
    margin-left: calc(8.3333333333% * 9);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-10 {
    margin-left: calc(8.3333333333% * 10);
  }
}
@media (min-width: 576px) {
  .df-row .col-offset-ph-11 {
    margin-left: calc(8.3333333333% * 11);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-1 {
    flex: 1 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-2 {
    flex: 1 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-3 {
    flex: 1 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-4 {
    flex: 1 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-5 {
    flex: 1 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-6 {
    flex: 1 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-7 {
    flex: 1 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-8 {
    flex: 1 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-9 {
    flex: 1 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-10 {
    flex: 1 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-11 {
    flex: 1 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
  }
}
@media (min-width: 768px) {
  .df-row .col-sm-12 {
    flex: 1 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-0 {
    margin-left: calc(8.3333333333% * 0);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-1 {
    margin-left: calc(8.3333333333% * 1);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-2 {
    margin-left: calc(8.3333333333% * 2);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-3 {
    margin-left: calc(8.3333333333% * 3);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-4 {
    margin-left: calc(8.3333333333% * 4);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-5 {
    margin-left: calc(8.3333333333% * 5);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-6 {
    margin-left: calc(8.3333333333% * 6);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-7 {
    margin-left: calc(8.3333333333% * 7);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-8 {
    margin-left: calc(8.3333333333% * 8);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-9 {
    margin-left: calc(8.3333333333% * 9);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-10 {
    margin-left: calc(8.3333333333% * 10);
  }
}
@media (min-width: 768px) {
  .df-row .col-offset-sm-11 {
    margin-left: calc(8.3333333333% * 11);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-1 {
    flex: 1 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-2 {
    flex: 1 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-3 {
    flex: 1 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-4 {
    flex: 1 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-5 {
    flex: 1 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-6 {
    flex: 1 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-7 {
    flex: 1 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-8 {
    flex: 1 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-9 {
    flex: 1 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-10 {
    flex: 1 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-11 {
    flex: 1 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
  }
}
@media (min-width: 1024px) {
  .df-row .col-md-12 {
    flex: 1 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-0 {
    margin-left: calc(8.3333333333% * 0);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-1 {
    margin-left: calc(8.3333333333% * 1);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-2 {
    margin-left: calc(8.3333333333% * 2);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-3 {
    margin-left: calc(8.3333333333% * 3);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-4 {
    margin-left: calc(8.3333333333% * 4);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-5 {
    margin-left: calc(8.3333333333% * 5);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-6 {
    margin-left: calc(8.3333333333% * 6);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-7 {
    margin-left: calc(8.3333333333% * 7);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-8 {
    margin-left: calc(8.3333333333% * 8);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-9 {
    margin-left: calc(8.3333333333% * 9);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-10 {
    margin-left: calc(8.3333333333% * 10);
  }
}
@media (min-width: 1024px) {
  .df-row .col-offset-md-11 {
    margin-left: calc(8.3333333333% * 11);
  }
}
.df-row [class*=col-] {
  padding: 0 15px;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 24px;
}

h3,
.h3 {
  font-size: 20px;
}

h4,
.h4 {
  font-size: 16px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 48px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 48px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 48px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
  h6,
  .h6 {
    font-size: 16px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  font-family: "bely", sans-serif;
  color: inherit;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  .h {
    margin-bottom: 28px;
  }
}

h3,
.h3 {
  font-weight: bold;
}

p {
  margin: 0 0 18px;
  line-height: 22px;
  letter-spacing: 0.1px;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
}

a[href*="mailto:"] {
  word-wrap: break-word;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
input[type=url],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 18px;
  font-family: "sweet-sans-pro", sans-serif;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 0;
}
input[type=text]:not(textarea),
input[type=tel]:not(textarea),
input[type=email]:not(textarea),
input[type=search]:not(textarea),
input[type=password]:not(textarea),
input[type=url]:not(textarea),
textarea:not(textarea) {
  height: 40px;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd;
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #ddd;
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ddd;
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd;
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
input[type=url].placeholder,
textarea.placeholder {
  color: #ddd;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
  vertical-align: top;
  overflow: auto;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  transition: background 0.5s ease-in-out;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  background: #000;
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=file]:hover,
input[type=submit]:hover {
  background: #fff;
  color: #000;
}

noscript {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  font-size: 14px;
  color: #F1F1F1;
  background: #173D35;
  display: block;
  padding: 5px 0;
  text-align: center;
  z-index: 99999;
}

.accessibility {
  position: absolute;
  left: -200vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[id=header] {
  position: relative;
  padding: 20px 0;
  z-index: 2;
}
@media (min-width: 768px) {
  [id=header] {
    padding: 40px 0;
  }
}
[id=header] ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  font-family: "Lato", sans-serif;
  flex-direction: column;
  padding: 40px 15px;
}
@media (min-width: 768px) {
  [id=header] ul {
    flex-direction: row;
    padding: 0;
  }
}
[id=header] ul li {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  [id=header] ul li {
    margin-left: 50px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  [id=header] ul li {
    margin-left: 81px;
  }
}
[id=header] ul li:first-child {
  margin-left: 0;
}
[id=header] ul li a {
  color: #173D35;
  text-transform: uppercase;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 147px;
  margin-right: 20px;
}

@media (max-width: 767.98px) {
  #nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
}

.nav-opener {
  position: relative;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  float: right;
  border: none;
  background-color: transparent;
}
@media (min-width: 768px) {
  .nav-opener {
    display: none;
  }
}
.nav-opener:before, .nav-opener:after,
.nav-opener span {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  background: #000;
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 3px;
  transform: translateY(-50%);
}
.nav-opener:before, .nav-opener:after {
  content: "";
}
.nav-opener:before {
  transform: translateY(-9px);
}
.nav-opener:after {
  transform: translateY(6px);
}
.nav-opener:hover:before, .nav-opener:hover:after,
.nav-opener:hover span {
  background-color: gray;
}
.nav-active .nav-opener span {
  opacity: 0;
  transform: rotate(45deg);
}
.nav-active .nav-opener:before {
  transform: rotate(45deg) translateY(0);
}
.nav-active .nav-opener:after {
  transform: rotate(-45deg) translateY(0);
}

[id=wrapper] {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

[id=main] {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

#content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #content {
    flex-direction: row;
  }
}
#content .sidebar {
  flex-shrink: 0;
  margin-right: 45px;
  max-width: 170px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #content .sidebar {
    padding-top: 16px;
  }
}

h2 {
  margin-bottom: 25px;
}

[hidden] {
  display: none;
}

#hs_cos_wrapper_dnd_area_content-module-2 {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_dnd_area_content-module-2 {
    margin-bottom: 60px;
  }
}

#hs_cos_wrapper_module_17469778441353 p img {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17469778441353 p img {
    margin-bottom: 30px;
  }
}
#hs_cos_wrapper_module_17469778441353 ul {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17469778441353 ul {
    margin-bottom: 52px;
  }
}

#hs_cos_wrapper_widget_1746977981199 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_widget_1746977981199 {
    margin-bottom: 42px;
  }
}
#hs_cos_wrapper_widget_1746977981199 h2 {
  margin-bottom: 19px;
}

#hs_cos_wrapper_widget_1746978019179 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_widget_1746978019179 {
    margin-bottom: 54px;
  }
}

#hs_cos_wrapper_widget_1747035490869 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_widget_1747035490869 {
    margin-bottom: 52px;
  }
}
#hs_cos_wrapper_widget_1747035490869 h3 {
  margin-bottom: 31px;
}
#hs_cos_wrapper_widget_1747035490869 p img {
  margin-bottom: 15px;
}

#hs_cos_wrapper_module_17470374755113 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470374755113 {
    margin-bottom: 50px;
  }
}
#hs_cos_wrapper_module_17470374755113 h3 {
  margin-bottom: 31px;
}
#hs_cos_wrapper_module_17470374755113 p img {
  margin-bottom: 15px;
}

#hs_cos_wrapper_module_17470375804634 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470375804634 {
    margin-bottom: 43px;
  }
}
#hs_cos_wrapper_module_17470375804634 h3 {
  margin-bottom: 31px;
}
#hs_cos_wrapper_module_17470375804634 p img {
  margin-bottom: 14px;
}

#hs_cos_wrapper_module_17470376562004 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470376562004 {
    margin-bottom: 54px;
  }
}
#hs_cos_wrapper_module_17470376562004 h3 {
  margin-bottom: 30px;
}
#hs_cos_wrapper_module_17470376562004 p img {
  margin-bottom: 14px;
}

#hs_cos_wrapper_module_1747065907211 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_1747065907211 {
    margin-bottom: 57px;
  }
}
#hs_cos_wrapper_module_1747065907211 h3 {
  margin-bottom: 30px;
}
#hs_cos_wrapper_module_1747065907211 p img {
  margin-bottom: 14px;
}

#hs_cos_wrapper_module_17470660496134 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470660496134 {
    margin-bottom: 54px;
  }
}
#hs_cos_wrapper_module_17470660496134 h3 {
  margin-bottom: 32px;
}
#hs_cos_wrapper_module_17470660496134 p img {
  margin-bottom: 14px;
}

#hs_cos_wrapper_module_17470661643794 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470661643794 {
    margin-bottom: 56px;
  }
}
#hs_cos_wrapper_module_17470661643794 h3 {
  margin-bottom: 30px;
}
#hs_cos_wrapper_module_17470661643794 p img {
  margin-bottom: 15px;
}

#hs_cos_wrapper_module_17470662652774 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_module_17470662652774 {
    margin-bottom: 38px;
  }
}
#hs_cos_wrapper_module_17470662652774 h3 {
  margin-bottom: 32px;
}
#hs_cos_wrapper_module_17470662652774 p img {
  margin-bottom: 13px;
}

#hs_cos_wrapper_widget_1747066782876 h3 {
  margin-bottom: 34px;
}

#hs_cos_wrapper_widget_1747038390266 img,
#hs_cos_wrapper_module_17471230841997 img,
#hs_cos_wrapper_module_17471232597937 img {
  margin-bottom: 7px;
}

#hs_cos_wrapper_module_1747067396206 img,
#hs_cos_wrapper_module_17471230841998 img {
  margin-bottom: 24px;
}

#hs_cos_wrapper_module_17471230841996 h3 {
  margin-bottom: 29px;
}

#hs_cos_wrapper_module_17471232597936 h3 {
  margin-bottom: 32px;
}

#hs_cos_wrapper_module_17471232597938 .text-with-details .holder {
  padding: 28px 40px 36px;
}
#hs_cos_wrapper_module_17471232597938 img {
  margin-bottom: 20px;
}

#hs_cos_wrapper_module_17471234024996 h3 {
  margin-bottom: 30px;
}

#hs_cos_wrapper_module_17471234024997 img {
  margin-bottom: 7px;
}

#hs_cos_wrapper_module_17471234024998 img {
  margin-bottom: 20px;
}

#hs_cos_wrapper_widget_1747037790247 {
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  #hs_cos_wrapper_widget_1747037790247 {
    margin-bottom: 59px;
  }
}

#hs_cos_wrapper_widget_1747123696265 {
  margin-bottom: 47px;
}

[id=footer] {
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 22px 35px;
  font-size: 15px;
  text-align: center;
  line-height: 17px;
  vertical-align: top;
  transition: all 0.5s;
  letter-spacing: 0.5px;
  border-radius: 0px;
  border-style: solid;
  border-color: transparent;
  border-width: 1px;
}
.btn-default {
  color: #fff;
  background: #000;
  border-color: #000;
}
.btn-default:hover {
  color: #000;
  background: #fff;
  border-color: #000;
}
.btn-primary {
  color: #fff;
  background: #173D35;
  border-color: #173D35;
}
.btn-primary:hover {
  color: #fff;
  background: rgb(9.0357142857, 23.9642857143, 20.8214285714);
  border-color: rgb(9.0357142857, 23.9642857143, 20.8214285714);
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff;
}
.btn-secondary {
  color: #fff;
  background: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: #6c757d;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 2.5px;
}
.btn-lg {
  padding: 20px 40px;
  font-size: 18px;
  line-height: 20px;
  border-radius: 10px;
}

.btn-group {
  margin: 0 -5px -10px;
  display: flex;
  flex-wrap: wrap;
}
.btn-group .btn {
  margin: 0 5px 10px;
}

.heading {
  padding: 54px 0 21px;
}
.heading .text-center {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.section-main-image {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-main-image {
    margin-bottom: 55px;
  }
}

.article-minute-read {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.article-minute-read svg {
  margin-right: 7px;
}

.article-authors span {
  margin-bottom: 15px;
  display: block;
}
.article-authors ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.article-authors ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.article-authors ul li span {
  margin: 0;
}
.article-authors ul li .icon {
  margin-right: 10px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .main-content {
    max-width: 848px;
  }
}
.main-content img {
  margin-bottom: 15px;
  width: 100% !important;
}




@media (min-width: 1024px) {
  .main-content img {
    margin-bottom: 46px;
  }
}
.main-content .btn {
  margin-bottom: 25px;
}
.main-content h3 {
  margin-bottom: 20px;
}

.banner-cta {
  background-color: #173D35;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  margin-bottom: 46px;
}
.banner-cta.btn-custome {
  padding: 15px 30px;
  width: auto;
  display: inline-block;
}
.banner-cta.btn-custome p {
  margin: 0;
}
.banner-cta:hover {
  color: #fff;
  background-color: rgba(23, 61, 53, 0.9);
}
.banner-cta:hover, .banner-cta:focus {
  color: #fff;
}
.banner-cta .text {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .banner-cta .text {
    padding: 10px 41px;
  }
}
.banner-cta .text p:last-of-type {
  margin-bottom: 0;
}
.banner-cta span {
  color: #CDBD96;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.banner-cta .img-holder {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) {
  .banner-cta .img-holder {
    display: block;
  }
}
.banner-cta .img-holder img {
  margin: 0;
}

.table-holder {
  overflow-y: auto;
}

.data-table {
  font-size: 12px;
  margin-bottom: 36px;
  min-width: 705px;
}
.data-table thead tr th {
  font-weight: 400;
}
.data-table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.data-table tr td:first-child,
.data-table tr th:first-child {
  text-align: left;
  padding-left: 16px;
}
.data-table tr th {
  padding: 0 5px;
  height: 47px;
  background-color: #173D35;
  color: #fff;
  border: none;
}
.data-table tr td {
  padding: 16px;
  height: 62px;
  text-align: center;
  vertical-align: middle;
  border: none;
}
.data-table tr td:first-child {
  font-weight: 700;
}

[data-hs-responsive-table] {
  overflow-y: auto;
}
[data-hs-responsive-table] table {
  font-size: 12px;
  text-align: center;
  margin-bottom: 36px;
  min-width: 705px;
}
[data-hs-responsive-table] table tr:not(:first-child):not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
[data-hs-responsive-table] table tr:first-child th[style*=background-color],
[data-hs-responsive-table] table tr:first-child td[style*=background-color] {
  height: 47px !important;
  border-bottom: none !important;
}
[data-hs-responsive-table] table tr:first-child th[style*=background-color] strong,
[data-hs-responsive-table] table tr:first-child td[style*=background-color] strong {
  font-weight: 400;
}
[data-hs-responsive-table] table tr th,
[data-hs-responsive-table] table tr td {
  border: none;
  height: 62px !important;
  padding: 7px 10px !important;
  vertical-align: middle;
  text-align: center;
}
[data-hs-responsive-table] table tr th:first-child,
[data-hs-responsive-table] table tr td:first-child {
  text-align: left;
  padding-left: 16px !important;
}

.text-with-details {
  margin-bottom: 25px;
}
.text-with-details .holder {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 15px;
  background-color: #F1F1F1;
  padding: 28px 15px 25px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .text-with-details .holder {
    flex-direction: row;
    padding: 28px 40px 25px;
  }
}
.text-with-details .holder .text,
.text-with-details .holder .list-details {
  width: 100%;
}
@media (min-width: 768px) {
  .text-with-details .holder .text,
  .text-with-details .holder .list-details {
    width: 50%;
  }
}
.text-with-details .holder .text {
  padding-right: 20px;
}
.text-with-details .holder .text strong {
  display: block;
  margin-bottom: 10px;
}
.text-with-details .holder .list-details {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.text-with-details .holder .list-details li {
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}
.text-with-details .holder .list-details li:last-child {
  border-bottom: none;
}
.text-with-details .holder .list-details li strong {
  width: 123px;
  margin-right: 15px;
  flex-shrink: 0;
}

.about-person {
  background-color: #F1F1F1;
  padding: 30px 25px;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-person {
    padding: 53px 100px;
  }
}
.about-person h2 {
  margin-bottom: 33px;
}
.about-person .card {
  border: 1px solid #000;
  max-width: 335px;
  margin: 0 auto;
  padding: 15px;
}
.about-person .card h2 {
  margin-bottom: 8px;
}
.about-person .card img {
  margin-bottom: 15px;
}
.about-person .card strong {
  display: block;
  margin-bottom: 10px;
}