@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 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;
}
/*! 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;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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;
}

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

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

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 0;
}

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
@media screen and (max-width: 1240px) {
  .content-wrapper {
    padding: 0 20px;
  }
}

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

body {
  line-height: 1.5;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}
p:last-child {
  margin-bottom: 0px;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all 0.3s;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
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;
}


a.cta_button {
  font-size: 20px;
  font-weight: bold;
  border-radius: 27px;
  box-shadow: 8.426px 7.071px 12px rgba(149,78,2,0.12);
  display: inline-block;
  box-sizing: border-box !important;
  font-weight: 700;
  color: #fff;
  padding: 13.5px 30px;
  text-align: center;
}
@media (max-width: 991px) {
  a.cta_button {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  a.cta_button {
    font-size: 16px;
  }
}
/* Fields */

.hs-form-field {
  margin-bottom: 35px;
}

/* Labels */

form label {
  display: block;
  font-size: 14px;
}

/* 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: 14px;
  padding: 0px 0px 17px;
  width: 100% !important;
  height: 37px;
}

form textarea {
  resize: none;
  min-height: 80px;
}

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 !important;
  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;
}
.banner-form form.hs-form .input {
  margin-right: 0px !important;
}
body form.hs-form .hs-input {
  width: 100% !important;
}
body form.hs-form .hs-input:focus {
  outline: none !important;
}
form fieldset.form-columns-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.hs-form-booleancheckbox {
  position: relative;
}
form.hs-form input[type="checkbox"] {
  appearance: none;
  width: 20px !important;
  height: 20px;
  box-shadow: inset 3.064px 2.571px 4px rgba(0,0,0,0.27);
  background-color: #ffffff;
  margin-right: 20px;
}
form.hs-form input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  border-left: 2px solid #494949;
  border-bottom: 2px solid #494949;
  transform: rotate(-45deg);
  left: 4px;
  top: 10px;
  opacity: 0;
  visibility: hidden; 
  transition: all 0.3s;
}
form.hs-form input[type="checkbox"]:checked + span::before {
  opacity: 1;
  visibility: visible;
}
form.hs-form .hs-fieldtype-intl-phone.hs-input {
  display: flex;
}
form.hs-form .hs-fieldtype-intl-phone.hs-input input {
  width: 70% !important;
  float: none;
  padding-left: 20px;
}
form.hs-form .hs-fieldtype-intl-phone.hs-input select {
  float: none;
  width: 30% !important;
}
.hs_error_rollup {
  display: none;
}
.banner-form form.hs-form .hs-input.error {
  border-color: red;
}
form select {
  appearance: none;
  background-image: url("https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/Deffodil-2022/selec-arrow.png");
  background-repeat: no-repeat;
  background-position: 100% 6px;
  padding-right: 15px !important;
}
form .hs-button,
form input[type="submit"] {
  filter: drop-shadow(8.426px 7.071px 12px rgba(149,78,2,0.12));
}
.submitted-message {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid;
  border-radius: 10px;
}

@media  (max-width: 991px) and (min-width: 768px) {
  form fieldset.form-columns-2 {
    gap: 0;
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}
@media  (max-width: 479px) {
  form fieldset.form-columns-2 {
    gap: 0;
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !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;
}

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

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 0;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

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

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}




.header {
  padding: 0px 0px !important;
}
.header.header--no-navigation {
  padding: 50px 0px !important;
  display: block !important;
  background-color: transparent;
  position: absolute;
  width: 100%;
}
.header--no-navigation .hs_cos_wrapper_type_logo img,
.header--no-navigation img {
  max-width: 117px !important;
}
.header--no-navigation .header-right-img img  {
  max-width: 170px !important;
}

.menu .menu__item--depth-1 {
	padding: 0;
	text-transform: initial;
  margin-right: 35px;
}
.menu .menu__item--depth-1:last-child {
  margin-right: 0px;
}
.menu .menu__link {
  font-size: 14px;
  line-height: 67px;
  color: #ffffff;
  font-weight: bold;
}
.menu .menu__link:hover {
  color: #ffffff !important;
}

header .navbar {
  padding: 5px 10px;
}
header .right-nav .mainUL,
.header .right-nav .mainUL {
  margin: 0px;
}
header .right-nav .mainUL li a,
header .right-nav .mainUL li span, 
.header .right-nav .mainUL li a,
.header .right-nav .mainUL li span,
header .right-nav .getbtn,
.header .right-nav .getbtn {
  font-family: 'Poppins', sans-serif;
}
header .right-nav .mainUL li .menuCol ul li h3 {
  margin: 0 0 5px;
}
header:not(.header--no-navigation) .container-fluid {
  padding: 0px !important;
}
header img {
  height: auto;
}

@media (max-width: 1080px) {
  header div .navbarBrand {
    flex-basis: 15%;
  }
}
@media (max-width: 767px) {
  .header {
    position: absolute !important;
    /*  padding: 10px 0px; */
  }
  .header.header--no-navigation {
/*     padding: 30px 0 !important; */
  }
  .header-top-row-0-vertical-alignment > .row-fluid {
    align-items: center;
    justify-content: space-between;
  }
  .header-top-row-0-vertical-alignment > .row-fluid > * {
    width: auto !important;
  }
  .header--toggle.header__search--toggle {
    display: none;
  }
  .header__logo--main {
    padding-top: 0;
  }
  .header--toggle.header__navigation--toggle,
  .header__close--toggle {
    filter: brightness(0) invert(1);
    margin: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
  .header__row-2 {
    padding: 0;
  }
  .header__column {
    position: static;
  }
  .header__logo {
    margin: 0 0 0 15px;
  }
  header .header__navigation.open {
    background-color: rgb(41, 41, 41);
    min-height: auto;
    top: 100%;
    padding-bottom: 20px;
  }
  .header--toggle.header__navigation--toggle.hide.open {
    display: none;
  }
  .menu .menu__item--depth-1 {
    border-top: 0px;
  }
  .menu .menu__item--depth-1 > .menu__link {
    padding: 15px 20px;
    line-height: normal;
  }
  .header--no-navigation img {
    max-width: 100px !important;
  }
  .header--no-navigation .header-right-img img {
    max-width: 150px !important;
  }
}
/* 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;
  }
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBold.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBold.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBold.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBold.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ThinItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ThinItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ThinItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ThinItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Bold.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Bold.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Bold.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Bold.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Hairline.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Hairline.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Hairline.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Hairline.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Hairline.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Medium.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Medium.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Medium.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Medium.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-RegularItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-RegularItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-RegularItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-RegularItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-RegularItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-MediumItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-MediumItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-MediumItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-MediumItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw Aleta No 10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BlackItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BlackItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BlackItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BlackItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Regular.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Regular.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Regular.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Regular.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLightItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLightItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLightItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLightItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw Aleta No 10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBoldItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBoldItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBoldItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBoldItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Black.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Black.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Black.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Black.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal; 
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BoldItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BoldItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BoldItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BoldItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLight.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLight.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLight.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLight.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Thin.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Thin.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Thin.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Thin.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-HairlineItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-HairlineItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-HairlineItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-HairlineItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-HairlineItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-LightItalic.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-LightItalic.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-LightItalic.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-LightItalic.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Bw-Aleta-No-10';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BwAletaNo10-Light';
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.eot');
  src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.eot#iefix') format('embedded-opentype'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.woff2') format('woff2'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.woff') format('woff'),
    url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/BwAletaNo10-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: 'Bw Aleta No 10';
    src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.eot');
    src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.eot#iefix') format('embedded-opentype'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.woff2') format('woff2'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.woff') format('woff'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.ttf') format('truetype'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/BwAletaNo10-Medium.svg#BwAletaNo10-Medium') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Lt BT';
    src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.eot');
    src: url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.eot#iefix') format('embedded-opentype'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.woff2') format('woff2'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.woff') format('woff'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.ttf') format('truetype'),
        url('https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-new-theme-images/daffodil-new-theme-fonts/Fonts-2022/FuturaBT-Light-1.svg#FuturaBT-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



main .container-fluid {
  padding: 0px;
}
h2.resp-accordion {
  display: none;
}
.resp-tab-content {
  display: none;
}
.resp-content-active,
.resp-accordion-active { display: block; }
.resp-easy-accordion h2.resp-accordion { display: block; }
.resp-tab-content-active { display: block; }
.resp-tabs-list {
  padding: 0;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  list-style: none;
  gap: 2px;
}
.resp-tab-item {
	display: inline-block;
	background-color: #ffffff;
	padding: 16.5px 37px;
  transition: all 0.3s;
  cursor: pointer;
}
.resp-tab-item:first-child {
  border-radius: 40px 0px 0px 40px;
}
.resp-tab-item:last-child {
  border-radius: 0px 40px 40px 0px;
}
.resp-tab-item.resp-tab-active,
.resp-tab-item:hover {
  color: #ffffff;
}
.resp-tabs-container {
  margin: 60px 0px 0px;
}

@media only screen and (max-width: 768px) {
/*   ul.resp-tabs-list { display: none; }
  h2.resp-accordion { display: block; } */
  .resp-accordion-closed { display: none !important; }
}


/* Footer Section 
===============================*/

.top-footer {
  background: #1a1a1a;
  padding: 40px 0;
}
.bottom-footer {
  background: #000000;
  padding: 15px 0;
}
.footer-column-1-row-0-vertical-alignment > .row-fluid > * {
  width: auto;
}
.top-footer img {
  vertical-align: bottom;
  max-width: 126px !important;
}
.top-footer a {
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-footer a svg {
  max-width: 20px;
  margin-right: 5px;
}
.top-footer .hs-menu-wrapper ul li:not(:last-child) {
  margin-right: 30px;
}
.top-footer .hs-menu-wrapper ul li a {
  color: #fff;
  text-decoration: none;
}
.social-links__link {
  display: inline-block;
  margin: 0 20px;
  background-image: url("https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/daffodil-2021/footer-%20awards-logos/spritesheet.png");
  background-repeat: no-repeat;
  width: 34px;
  height: 34px;
}
.social-links__link:nth-child(1) {
  background-position: -5px -34px;
}
.social-links__link:nth-child(2) {
  background-position: -5px -121px;
}
.social-links__link:nth-child(3) {
  background-position: -5px -162px;
}
.social-links__link:nth-child(4) {
  background-position: -5px -77px;
}
.social-links__link > span {
	display: none;
}
.pro-aw-footer .aw-tab-in .aw-link {
  background-color: #e9e9ed;
}
.services .accordion-header .accordion-button {
  padding: 2px 5px;
}

.daffo-footer .bottom_layer ul.socialLinks,
.daffo-footer .topSection ul {
  margin: 0;
}
.daffo-footer .topSection .mailLink,
.services .accordion-header .accordion-button,
.daffo-footer .topSection ul.menuLinks li a {
  font-family: 'Poppins', sans-serif;
}


.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 11px;
	width: auto !important;
	font-size: 20px;
	padding: 1px 8px 4px;
	border-radius: 4px;
	cursor: pointer;
}
.back-to-top a {
  bottom: 10px;
  right: 10px;
  z-index: 20000;
  cursor: pointer;
  color: #ffffff;
  padding: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 0;
  box-shadow: none;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .footer-column-1-row-0-vertical-alignment > .row-fluid {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    align-items: center;
  }
  .top-footer .hs-menu-wrapper ul li:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 7px;
  }
  .footer_bottom-row-0-vertical-alignment > .row-fluid {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
  footer.daffo-footer .topSection ul.menuLinks li a {
    padding: 14px 10px;
    display: inline-block;
    min-width: 48px;
  }
}

/* Header from style-new file */

a, body, p {
  font-family: Bw-Aleta-No-10,sans-serif;
  font-weight: 400;
}
.content-wrapper {
  max-width: ;
  max-width: 1206px;
}
.dnd-section > .row-fluid {
  max-width: ;
  max-width: 1206px;
}
header .right-nav .respMenu, 
.header .right-nav .respMenu {
  border-radius: 0px;
  background: transparent;
  padding: 0;
  line-height: inherit;
  outline: none;
  border: 0;
}
header .right-nav.active .closeMenu, 
.header .right-nav.active .closeMenu {
  display: block;
}
header .right-nav .closeMenu,
.header .right-nav .closeMenu {
  border-radius: 0px;
  background: transparent;
  padding: 0;
  line-height: inherit;
  outline: none;
  border: 0;
}
header,
.header {
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  /* .extraNav{
      width: auto;
      display: inline-block;
      ul{
          width: auto;
          display: inline-block;
          margin-right: 20px;
          @include breakpoint(dekstop){
              margin-right: 10px;
          }
          @include breakpoint(laptopview){
              display: none;
          }
          li{
              display: inline-block;
              margin: 0 10px;
              padding: 10px 0;
              position: relative;
              @include breakpoint(dekstop){
                  margin: 0 5px;
              }
              &:hover{
                  > a{
                      color: $orange;
                  }
                  ul{
                      visibility: visible;
                      opacity: 1;
                  }
              }
              ul{
                  position: absolute;
                  top: 44px;
                  left: 0;
                  margin: 0;
                  width: 355px;
                  visibility: hidden;
                  opacity: 0;
                  padding-top: 9px;
                  li{
                      width: 100%;
                      display: inline-block;
                      margin: 0;
                      padding: 5px 15px;
                      background: #494949;
                      a{
                          @include fonts(14px, 20px, 300, $white);
                          display: inline-block;
                      }
                  }
              }
              a{
                  @include fonts(16px, 22px, 300, $white);
                  @include breakpoint(dekstop){
                      font-size: 14px;
                      line-height: 20px;
                  }
              }
          }
      }
  } */ }
      header .row { 
    margin: 0;  
  } 
  header .navbarBrand{  
    flex-basis: 20%;  
  } 
  header .navbar {  
          margin-bottom: 0; 
        }

  header.fixedTop,
  .header.fixedTop {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    position: fixed; }
    header.fixedTop .navbarBrand .logo,
    .header.fixedTop .navbarBrand .logo {
      display: none; }
    header.fixedTop .navbarBrand .fixedHeaderImg,
    .header.fixedTop .navbarBrand .fixedHeaderImg {
      display: block; }
  header .navbar,
  .header .navbar {
    padding-left: 0;
    padding-right: 0; }
  header .navbarBrand .logo,
  .header .navbarBrand .logo {
    display: block; }
  header .navbarBrand .fixedHeaderImg,
  .header .navbarBrand .fixedHeaderImg {
    display: none; }
  header .right-nav,
  .header .right-nav {
    width: 80%;
    float: right;
    position: relative; }
    @media (max-width: 1080px) {
      header .right-nav,
      .header .right-nav {
        width: 82%; } }
    @media (max-width: 1024px) {
      header .right-nav,
      .header .right-nav {
        width: 63%; } }
    header .right-nav.active,
    .header .right-nav.active {
      display: inline-block;
      width: 100%;
      top: 0;
      left: 0;
      position: fixed;
      background: #000000;
      height: 100%;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      padding-top: 60px;
      z-index: 1;
      overflow-y: scroll; }
      header .right-nav.active .header,
      .header .right-nav.active .header {
        display: inline-block; }
      header .right-nav.active .getButton,
      .header .right-nav.active .getButton {
        display: none; }
    header .right-nav .respMenu,
    .header .right-nav .respMenu {
      display: none;
      color: #ffffff;
      font-size: 35px;
      position: absolute;
      top: -6px;
      right: 10px; }
      header .right-nav .respMenu.active,
      .header .right-nav .respMenu.active {
        display: none !important; }
      @media (max-width: 1024px) {
        header .right-nav .respMenu,
        .header .right-nav .respMenu {
          display: inline-block; } }
    header .right-nav .closeMenu,
    .header .right-nav .closeMenu {
      color: #ffffff;
      font-size: 35px;
      position: absolute;
      right: 10px;
      top: 0;
      display: none; }
      header .right-nav .closeMenu.active,
      .header .right-nav .closeMenu.active {
        display: inline-block; }
    header .right-nav .mainUL,
    .header .right-nav .mainUL {
      display: inline-block; }
      @media (max-width: 1024px) {
        header .right-nav .mainUL,
        .header .right-nav .mainUL {
          display: none; } }
      header .right-nav .mainUL.active,
      .header .right-nav .mainUL.active {
        display: inline-block;
        width: 100%; }
      header .right-nav .mainUL li,
      .header .right-nav .mainUL li {
        display: inline-block;
        margin-right: 45px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        position: relative; 
      cursor: pointer;}
        header .right-nav .mainUL li:last-child,
        .header .right-nav .mainUL li:last-child {
          margin-right: 0; }
        @media (max-width: 1280px) {
          header .right-nav .mainUL li,
          .header .right-nav .mainUL li {
            margin-right: 30px; } }
        @media (max-width: 1024px) {
          header .right-nav .mainUL li,
          .header .right-nav .mainUL li {
            width: 100%;
            margin-right: 0;
            padding: 0 15px; } }
        header .right-nav .mainUL li a,
        header .right-nav .mainUL li span,
        .header .right-nav .mainUL li a,
        .header .right-nav .mainUL li span {
          font-size: 15px;
          line-height: 45px;
          font-weight: 400;
          color: #ffffff;
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease; }
          header .right-nav .mainUL li a:before,
          header .right-nav .mainUL li span:before,
          .header .right-nav .mainUL li a:before,
          .header .right-nav .mainUL li span:before {
            content: '';
            height: 11px;
            width: 100%;
            visibility: hidden;
            opacity: 0;
            background-color: #f5a100;
            position: absolute;
            bottom: -8px;
            left: 0; }
        header .right-nav .mainUL li:hover > a,
        header .right-nav .mainUL li:hover span,
        .header .right-nav .mainUL li:hover > a,
        .header .right-nav .mainUL li:hover span {
          color: #f5a100; }
          header .right-nav .mainUL li:hover > a:before,
          header .right-nav .mainUL li:hover span:before,
          .header .right-nav .mainUL li:hover > a:before,
          .header .right-nav .mainUL li:hover span:before {
            visibility: visible;
            opacity: 1; }
            @media (max-width: 1024px) {
              header .right-nav .mainUL li:hover > a:before,
              header .right-nav .mainUL li:hover span:before,
              .header .right-nav .mainUL li:hover > a:before,
              .header .right-nav .mainUL li:hover span:before {
                visibility: hidden;
                opacity: 0; } }
        header .right-nav .mainUL li:hover .menuCol,
        .header .right-nav .mainUL li:hover .menuCol {
          visibility: visible;
          opacity: 1; }
        header .right-nav .mainUL li .plus,
        .header .right-nav .mainUL li .plus {
          display: none;
          color: #fff;
          position: absolute;
          right: 15px;
          top: 10px;
          font-size: 12px; }
          @media (max-width: 1024px) {
            header .right-nav .mainUL li .plus,
            .header .right-nav .mainUL li .plus {
              display: inline-block; } }
        header .right-nav .mainUL li .menuCol,
        .header .right-nav .mainUL li .menuCol {
          position: absolute;
          top: 100%;
          left: 0;
          visibility: hidden;
          opacity: 0;
          background: black;
          display: flex;
          padding: 25px 15px 15px;
          margin-top: 8px; }
          @media (max-width: 1280px) {
            header .right-nav .mainUL li .menuCol,
            .header .right-nav .mainUL li .menuCol {
              left: 50%;
              transform: translate(-50%, 0); } }
          @media (max-width: 1024px) {
            header .right-nav .mainUL li .menuCol,
            .header .right-nav .mainUL li .menuCol {
              visibility: visible;
              opacity: 1;
              display: none;
              position: relative;
              width: 100%;
              padding: 0;
              margin-top: 0; } }
          header .right-nav .mainUL li .menuCol.withHeading,
          .header .right-nav .mainUL li .menuCol.withHeading {
            width: 600px; }
            @media (max-width: 1280px) {
              header .right-nav .mainUL li .menuCol.withHeading,
              .header .right-nav .mainUL li .menuCol.withHeading {
                left: 0%;
                transform: translate(0%, 0); } }
            @media (max-width: 1024px) {
              header .right-nav .mainUL li .menuCol.withHeading,
              .header .right-nav .mainUL li .menuCol.withHeading {
                width: 100%; } }
            header .right-nav .mainUL li .menuCol.withHeading ul,
            .header .right-nav .mainUL li .menuCol.withHeading ul {
              width: 50%; }
              @media (max-width: 1024px) {
                header .right-nav .mainUL li .menuCol.withHeading ul,
                .header .right-nav .mainUL li .menuCol.withHeading ul {
                  width: 100%; } }
          header .right-nav .mainUL li .menuCol.threeColums,
          .header .right-nav .mainUL li .menuCol.threeColums {
            width: 800px; }
            @media (max-width: 1024px) {
              header .right-nav .mainUL li .menuCol.threeColums,
              .header .right-nav .mainUL li .menuCol.threeColums {
                width: 100%; } }
          header .right-nav .mainUL li .menuCol.expertiseMenu,
          .header .right-nav .mainUL li .menuCol.expertiseMenu {
            width: 413px; }
            @media (max-width: 1280px) {
              header .right-nav .mainUL li .menuCol.expertiseMenu,
              .header .right-nav .mainUL li .menuCol.expertiseMenu {
                width: 450px; } }
            @media (max-width: 1024px) {
              header .right-nav .mainUL li .menuCol.expertiseMenu,
              .header .right-nav .mainUL li .menuCol.expertiseMenu {
                width: 100%; } }
            header .right-nav .mainUL li .menuCol.expertiseMenu ul,
            .header .right-nav .mainUL li .menuCol.expertiseMenu ul {
              width: 100%;
              display: inline-block; }
              header .right-nav .mainUL li .menuCol.expertiseMenu ul li,
              .header .right-nav .mainUL li .menuCol.expertiseMenu ul li {
                width: 49%;
                display: inline-block;
                margin-right: 0;
                vertical-align: top; }
                @media (max-width: 1024px) {
                  header .right-nav .mainUL li .menuCol.expertiseMenu ul li,
                  .header .right-nav .mainUL li .menuCol.expertiseMenu ul li {
                    width: 100%; } }
          header .right-nav .mainUL li .menuCol:before,
          .header .right-nav .mainUL li .menuCol:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 11px;
            width: 100%;
            background-color: #f5a100; }
            @media (max-width: 1024px) {
              header .right-nav .mainUL li .menuCol:before,
              .header .right-nav .mainUL li .menuCol:before {
                display: none; } }
          header .right-nav .mainUL li .menuCol ul,
          .header .right-nav .mainUL li .menuCol ul {
            flex-direction: column;
            width: 33%; }
            header .right-nav .mainUL li .menuCol ul.active li h3,
            .header .right-nav .mainUL li .menuCol ul.active li h3 {
              color: #ffffff !important; }
              header .right-nav .mainUL li .menuCol ul.active li h3 a,
              .header .right-nav .mainUL li .menuCol ul.active li h3 a {
                color: #ffffff !important; }
            header .right-nav .mainUL li .menuCol ul.active li a,
            .header .right-nav .mainUL li .menuCol ul.active li a {
              color: #ffffff !important; }
            header .right-nav .mainUL li .menuCol ul.active li:hover a,
            .header .right-nav .mainUL li .menuCol ul.active li:hover a {
              color: #f5a100 !important; }
            header .right-nav .mainUL li .menuCol ul li,
            .header .right-nav .mainUL li .menuCol ul li {
              width: 100%;
              margin-right: 0;
              margin-bottom: 10px; }
              header .right-nav .mainUL li .menuCol ul li h3,
              .header .right-nav .mainUL li .menuCol ul li h3 {
                font-size: 16px;
                color: #ffffff; }
                header .right-nav .mainUL li .menuCol ul li h3 a,
                .header .right-nav .mainUL li .menuCol ul li h3 a {
                  font-size: 16px;
                  color: #ffffff; }
              header .right-nav .mainUL li .menuCol ul li:hover,
              .header .right-nav .mainUL li .menuCol ul li:hover {
                padding-left: 15px; }
                header .right-nav .mainUL li .menuCol ul li:hover a,
                .header .right-nav .mainUL li .menuCol ul li:hover a {
                  color: #f5a100; }
              header .right-nav .mainUL li .menuCol ul li a,
              .header .right-nav .mainUL li .menuCol ul li a {
                font-size: 14px;
                line-height: 25px;
                font-weight: 400;
                color: #ffffff; }
                header .right-nav .mainUL li .menuCol ul li a:before,
                .header .right-nav .mainUL li .menuCol ul li a:before {
                  display: none; }
    header .right-nav .getbtn,
    .header .right-nav .getbtn {
      background-color: #f5a100;
      border-color: #f5a100;
      border-radius: 30px;
      padding: 16px 58px;
      font-size: 18px;
      line-height: 20px;
      font-weight: 300;
      font-style: italic;
      color: #ffffff;
      display: inline-block;
      position: relative;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      font-style: normal;
      padding: 12px 45px;
      float: right; }
      header .right-nav .getbtn:hover,
      .header .right-nav .getbtn:hover {
        box-shadow: 0px 13px 53.9px 16.1px #00000014; }
      @media (max-width: 565px) {
        header .right-nav .getbtn,
        .header .right-nav .getbtn {
          padding: 15px 30px; } }
      @media (max-width: 1280px) {
        header .right-nav .getbtn,
        .header .right-nav .getbtn {
          padding-right: 30px;
          padding-left: 30px;
          font-size: 15px;
          padding-top: 10px;
          padding-bottom: 10px; } }
      @media (max-width: 1024px) {
        header .right-nav .getbtn,
        .header .right-nav .getbtn {
          margin-right: 55px; } }
      @media (max-width: 480px) {
        header .right-nav .getbtn,
        .header .right-nav .getbtn {
          padding-right: 25px;
          padding-left: 25px; } }
    header .right-nav .mainMenu,
    header .right-nav .closeMenu,
    .header .right-nav .mainMenu,
    .header .right-nav .closeMenu {
      float: right;
      font-size: 45px;
      line-height: 45px;
      color: #ffffff; }
      @media (max-width: 767px) {
        header .right-nav .mainMenu,
        header .right-nav .closeMenu,
        .header .right-nav .mainMenu,
        .header .right-nav .closeMenu {
          font-size: 38px;
          line-height: 41px; } }
      header .right-nav .mainMenu:hover,
      header .right-nav .closeMenu:hover,
      .header .right-nav .mainMenu:hover,
      .header .right-nav .closeMenu:hover {
        color: #f5a100; }

.menuContainer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s, visibility .65s, height .65s;
  overflow: hidden;
  background-color: #000000;
  /* @include bgSettings(cover, centercenter); */
  z-index: 10; }
  @media (max-width: 1024px) {
    .menuContainer {
      overflow: auto; } }
  .menuContainer.active {
    opacity: 1;
    visibility: visible;
    height: 100%; }
    .menuContainer.active ul li {
      -webkit-animation: fadeIn 0.5s linear;
      animation: fadeIn 0.5s linear;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both; }
  .menuContainer .container {
    position: relative; }
    @media (max-width: 1024px) {
      .menuContainer .container {
        max-width: 100%; } }
  .menuContainer ul {
    width: 350px;
    display: inline-block;
    margin: 95px 0; }
    @media (max-width: 1280px) {
      .menuContainer ul {
        width: 240px;
        margin: 70px 0; } }
    @media (max-width: 1024px) and (max-height: 500px) {
      .menuContainer ul {
        width: 215px; } }
    @media (max-width: 992px) {
      .menuContainer ul {
        width: 100%; } }
    .menuContainer ul .links {
      display: none; }
      @media (max-width: 992px) {
        .menuContainer ul .links {
          display: inline-block;
          width: 100%; } }
      @media (max-width: 992px) {
        .menuContainer ul .links ul li {
          width: 100% !important;
          margin: 0 !important; } }
    .menuContainer ul.active:hover > li .menuCol ul li span, .menuContainer ul.active:hover > li .menuCol ul li a {
      color: white; }
    .menuContainer ul.active:hover > li > span, .menuContainer ul.active:hover > li a {
      color: rgba(255, 255, 255, 0.42); }
    .menuContainer ul.active:hover > li:hover > a {
      color: #f5a100; }
    .menuContainer ul > li {
      margin-bottom: 40px;
      width: 100%;
      display: inline-block;
      /* a{
          @include fonts(30.5px, 45.5px, 400, $white);
          display: inline-block;
          @include transition(all, 0.5s, ease-out);
          position: relative;
          @include breakpoint(laptop){
              font-size: 25px;
              line-height: 35px;
          }
          @media (max-width: 1024px) and (max-height: 500px){
              font-size: 20px;
              line-height: 30px;
          }
          @include breakpoint(tablet){
              font-size: 20px;
              line-height: 30px;
          }
      } */ }
      @media (max-width: 1024px) and (max-height: 500px) {
        .menuContainer ul > li {
          margin-bottom: 15px; } }
      .menuContainer ul > li.active span {
        color: #f5a100; }
      .menuContainer ul > li.active .plus svg {
        color: #f5a100; }
      .menuContainer ul > li span, .menuContainer ul > li a {
        font-size: 30.5px;
        line-height: 45.5px;
        font-weight: 400;
        color: #ffffff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        position: relative; }
        .menuContainer ul > li span:before, .menuContainer ul > li a:before {
          content: '';
          width: 0;
          height: 2px;
          background: #f5a100;
          position: absolute;
          left: 100%;
          bottom: 9px; }
          @media (max-width: 1024px) and (max-height: 500px) {
            .menuContainer ul > li span:before, .menuContainer ul > li a:before {
              bottom: 3px; } }
        @media (max-width: 1280px) {
          .menuContainer ul > li span, .menuContainer ul > li a {
            font-size: 25px;
            line-height: 35px; } }
        @media (max-width: 1024px) and (max-height: 500px) {
          .menuContainer ul > li span, .menuContainer ul > li a {
            font-size: 20px;
            line-height: 30px; } }
        @media (max-width: 767px) {
          .menuContainer ul > li span, .menuContainer ul > li a {
            font-size: 20px;
            line-height: 30px; } }
      @media (max-width: 992px) {
        .menuContainer ul > li {
          position: relative; } }
      .menuContainer ul > li:hover > a, .menuContainer ul > li:hover span {
        padding-left: 30px;
        color: #f5a100 !important;
        font-weight: 800; }
        @media (max-width: 992px) {
          .menuContainer ul > li:hover > a, .menuContainer ul > li:hover span {
            padding-left: 0;
            font-weight: 400; } }
        .menuContainer ul > li:hover > a:before, .menuContainer ul > li:hover span:before {
          width: 30px; }
          @media (max-width: 1024px) and (max-height: 500px) {
            .menuContainer ul > li:hover > a:before, .menuContainer ul > li:hover span:before {
              width: 15px; } }
          @media (max-width: 992px) {
            .menuContainer ul > li:hover > a:before, .menuContainer ul > li:hover span:before {
              width: 0; } }
      @media (max-width: 992px) {
        .menuContainer ul > li {
          margin-bottom: 20px; } }
      .menuContainer ul > li:hover > .menuCol {
        visibility: visible;
        opacity: 1; }
        @media (max-width: 992px) {
          .menuContainer ul > li:hover > .menuCol {
            display: none; } }
      .menuContainer ul > li .menuCol {
        width: calc(100% - 365px);
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
        @media (max-width: 1280px) {
          .menuContainer ul > li .menuCol {
            width: calc(100% - 270px); } }
        @media (max-width: 1024px) {
          .menuContainer ul > li .menuCol {
            width: calc(100% - 310px); } }
        @media (max-width: 1024px) and (max-height: 500px) {
          .menuContainer ul > li .menuCol {
            width: calc(100% - 230px); } }
        @media (max-width: 992px) {
          .menuContainer ul > li .menuCol {
            width: 100%;
            position: static;
            display: none;
            visibility: visible;
            opacity: 1;
            transition: unset !important; } }
        .menuContainer ul > li .menuCol.withHeading ul li {
          margin-bottom: 0;
          -webkit-animation-delay: unset;
          animation-delay: unset; }
        .menuContainer ul > li .menuCol.expertiseMenu ul {
          width: 100%;
          display: inline-block; }
          .menuContainer ul > li .menuCol.expertiseMenu ul li {
            width: 49%;
            display: inline-block; }
            @media (max-width: 767px) {
              .menuContainer ul > li .menuCol.expertiseMenu ul li {
                width: 100%; } }
        .menuContainer ul > li .menuCol.threeColums ul {
          width: 32%; }
          @media (max-width: 992px) {
            .menuContainer ul > li .menuCol.threeColums ul {
              width: 100%; } }
          @media (max-width: 1024px) and (max-height: 500px) {
            .menuContainer ul > li .menuCol.threeColums ul li h3 {
              margin-bottom: 15px; } }
          .menuContainer ul > li .menuCol.threeColums ul li h3 a {
            color: #f5a100 !important;
            font-size: 19px !important;
            font-weight: 800 !important; }
            @media (max-width: 1024px) and (max-height: 500px) {
              .menuContainer ul > li .menuCol.threeColums ul li h3 a {
                font-size: 17px !important;
                line-height: 20px; } }
          @media (max-width: 1024px) and (max-height: 500px) {
            .menuContainer ul > li .menuCol.threeColums ul li a {
              font-size: 13px;
              line-height: 30px; } }
        .menuContainer ul > li .menuCol ul {
          width: 48%;
          display: inline-block;
          vertical-align: top; }
          @media (max-width: 992px) {
            .menuContainer ul > li .menuCol ul.singleUL {
              width: 100%; } }
          @media (max-width: 992px) {
            .menuContainer ul > li .menuCol ul {
              width: 100%;
              margin: 10px 0 0; } }
          .menuContainer ul > li .menuCol ul li {
            vertical-align: top; }
            @media (max-width: 767px) {
              .menuContainer ul > li .menuCol ul li {
                margin-bottom: 0;
                -webkit-animation-delay: unset;
                animation-delay: unset; } }
            .menuContainer ul > li .menuCol ul li h3 {
              font-size: 19.5px;
              line-height: 25px;
              font-weight: 800;
              color: #f5a100;
              margin-bottom: 48px; }
              @media (max-width: 1024px) and (max-height: 500px) {
                .menuContainer ul > li .menuCol ul li h3 {
                  font-size: 17px !important;
                  line-height: 20px;
                  margin-bottom: 15px; } }
              @media (max-width: 992px) {
                .menuContainer ul > li .menuCol ul li h3 {
                  margin-bottom: 0;
                  font-size: 18px;
                  line-height: 24px; } }
            .menuContainer ul > li .menuCol ul li a {
              font-size: 16.5px;
              line-height: 50px;
              font-weight: 300;
              color: #ffffff; }
              @media (max-width: 1280px) {
                .menuContainer ul > li .menuCol ul li a {
                  line-height: 35px; } }
              @media (max-width: 1024px) and (max-height: 500px) {
                .menuContainer ul > li .menuCol ul li a {
                  font-size: 13px;
                  line-height: 30px; } }
              @media (max-width: 767px) {
                .menuContainer ul > li .menuCol ul li a {
                  line-height: 30px;
                  font-size: 15px; }
                header .right-nav .getbtn {
    margin: 0;
}
}
            .menuContainer ul > li .menuCol ul li:hover a {
              color: #f5a100;
              padding-left: 0; }
              .menuContainer ul > li .menuCol ul li:hover a:before {
                display: none; }
      .menuContainer ul > li .plus {
        display: none;
        width: 30px;
        height: 32px;
        position: absolute;
        right: 0;
        top: 0;
        color: #7b7b7b;
        text-align: center;
        line-height: 32px; }
        .menuContainer ul > li .plus:hover {
          color: #f5a100; }
        @media (max-width: 992px) {
          .menuContainer ul > li .plus {
            display: block; } }

.menuContainer ul > li:nth-child(1) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s; }

.menuContainer ul > li:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.menuContainer ul > li:nth-child(3) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s; }

.menuContainer ul > li:nth-child(4) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.menuContainer ul > li:nth-child(5) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s; }

.menuContainer ul > li:nth-child(6) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.menuContainer ul > li:nth-child(7) {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s; }

.menuContainer ul > li:nth-child(8) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.menuContainer ul > li:nth-child(9) {
  -webkit-animation-delay: 2.25s;
  animation-delay: 2.25s; }

@keyframes fadeIn {
  0% {
    opacity: 0;
    top: 100px; }
  75% {
    opacity: 0.5;
    top: 0px; }
  100% {
    opacity: 1; } }
body.page-template-customized-patient header .extraNav ul, body.page-template-customized-patient .header .extraNav ul, body.page-template-patient-care header .extraNav ul, body.page-template-patient-care .header .extraNav ul {
  display: inline-block !important; }
  @media (min-width: 1024px) {
    body.page-template-customized-patient header .extraNav ul, body.page-template-customized-patient .header .extraNav ul, body.page-template-patient-care header .extraNav ul, body.page-template-patient-care .header .extraNav ul {
      display: inline-block !important; } }
  @media (max-width: 1024px) {
    body.page-template-customized-patient header .extraNav ul, body.page-template-customized-patient .header .extraNav ul, body.page-template-patient-care header .extraNav ul, body.page-template-patient-care .header .extraNav ul {
      display: none !important; } }

.header {
  display: none; }
  .header .right-nav {
    width: 60%; }
	.col-lg-12 {
    padding: 0px 15px;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar > .container,
  .navbar > .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }
  .navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%; }

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; }
    .navbar-expand-sm .dropup .dropdown-menu {
      top: auto;
      bottom: 100%; } }
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; }
    .navbar-expand-md .dropup .dropdown-menu {
      top: auto;
      bottom: 100%; } }
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; }
    .navbar-expand-lg .dropup .dropdown-menu {
      top: auto;
      bottom: 100%; } }
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; }
    .navbar-expand-xl .dropup .dropdown-menu {
      top: auto;
      bottom: 100%; } }
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .dropdown-menu-right {
      right: 0;
      left: auto; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid {
    flex-wrap: nowrap; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }
  .navbar-expand .dropup .dropdown-menu {
    top: auto;
    bottom: 100%; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9); }
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1); }
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9); }
    .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
      color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-text a {
    color: #fff; }
    .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
      color: #fff; }
	header ul {
    margin: 0;
    padding: 0;
}
header .col-lg-12 {
	padding: 0px 15px;
}
header .navbarBrand {
	line-height: 0;
}
header img {
	vertical-align: middle;
	    max-width: 100%;
}

header .navbarBrand {
    flex-basis: 11%;
}
header .right-nav {
    width: 80%;
}

/*===========================================
                  footer new dec 2023
===========================================***/
.footer2023-dec .top-footer {
    padding: 89px 0 12px;
    background-color: #fff;
    height: auto;
}
.footer2023-dec .content-wrapper {
    max-width: 1170px;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child > .row-fluid {
    align-items: flex-start;
}
.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child {
    width: auto;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >* {
    width: auto;
    padding: 0;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:first-child {
    flex: 0 0 25%;
    max-width: 25%;
    padding-inline: 15px;
}

.footer2023-dec .top-footer img {
    display: inline-block;
}

.footer2023-dec .widget_1702627170516-flexbox-positioning {
    display: block !important;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:first-child >:first-child img {
    width: 140px !important;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:first-child >:nth-child(2) img {
    width: 80px !important;
    margin-left: 30px;
    margin-top: 10px;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:first-child >:nth-child(2) p {
    font-size: 10px;
    font-weight: 400;
    margin: 0 0 70px;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:first-child>:nth-child(2) h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #383838;
    font-weight: 500;
    margin-bottom: 31px;
   font-family: BwAletaNo10-Light;
    font-weight: 600;
}
.footer2023-dec .footer-nav-list {
    padding: 0;
    list-style: none;
  margin:0;
}

.footer2023-dec .footer-nav-list li a {
    text-decoration: none;
    color: #383838;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    transition: all ease-in-out .2s;
  display:inline-block;
}

.footer2023-dec .footer-nav-list li {
    margin-bottom: 20px;
    line-height:1;
}

.footer2023-dec  .footer-nav-list li a:hover {
    color: #f18c49 !important;
}

.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:last-child {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
    margin-right: -15px;
}


.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:last-child > div > .row-fluid >* {
    flex: 0 0 25%;
    max-width: 25%;
    padding-inline: 15px;
}

footer.footer2023-dec h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #383838;
    font-weight: 500;
    margin-bottom: 31px;
    line-height: 1.21;
   font-family: BwAletaNo10-Light;
    font-weight: 600;
}

.footer2023-dec ul.socialLinks {
    display: flex;
    list-style: none;
    padding: 0;
    margin:0;
}

.footer2023-dec ul.socialLinks li {
    margin-right: 18px;
}
.footer2023-dec .footer-nav-list li:last-child {
    margin: 0;
}
.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:last-child > .row-fluid >*:last-child {
    padding-inline: 15px;
}
.top-footer > .footer__container > div > .row-fluid > div >*:last-child {
    border-top: 2px solid #bbb;
    margin: 50px 0 10px;
    padding: 30px 15px 0;
}

.footer2023-dec ul.menulits li:first-child a, .footer2023-dec ul.menulits li:nth-child(7) a, .footer2023-dec ul.menulits li:nth-child(10) a {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>*:first-child {
    padding-left: 0;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child >  .row-fluid {
    align-items: center;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >* {
    flex: 0 0 25%;
    max-width: 25%;
    padding-inline: 15px;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(2) a {
    text-align: center;
    justify-content: center;
    text-decoration: none;
    color: #f18c49;
    font-size: 14px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
    display: inline-block;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(2) a::after {
    content: "";
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 24px;
    height: 31px;
    top: -1px;
    background-image: url(https://3024849.fs1.hubspotusercontent-na1.net/hubfs/3024849/new%20contact%20page/download.svg);
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(3) {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(3) p {
    text-align: center;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(3) p a {
    display: block;
    color: #383838;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(3) p a:hover {
    color: #0056b3;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(4) p {
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    position: relative;
    right: -34px;
    margin: 0;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child > .row-fluid >*:nth-child(4) {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.img-text.for-mobile {
    display: none;
}
@media(max-width:1199px){
.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:last-child > div > .row-fluid {
    flex-wrap: wrap;
}
.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:last-child > div > .row-fluid >* {
    flex: 0 0 50%;
    max-width: 50%;
  margin-top: 25px;
}
}

@media (max-width:1024px){
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid {
    flex-wrap: wrap;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:nth-child(4) {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 25px;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:nth-child(3) {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
}

@media (max-width:991px){
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid {
    flex-direction: column;
    align-items: normal;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:last-child {
    margin: 0;
    padding-inline: 0;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:first-child {
    flex: 0 0 50%;
    max-width: 50%;
}
  .footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:last-child{
   flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width:767px){
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:first-child,
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:last-child>div>.row-fluid>*,
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>*,
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>*:nth-child(2),
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>*:nth-child(3),
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>*:nth-child(4)  {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:first-child>.row-fluid>:last-child>div>.row-fluid {
    flex-direction: column;
}

.footer2023-dec  .top-footer a {
    display: block;
}
  .footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer2023-dec ul.socialLinks,
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:nth-child(2) {
    justify-content: center;
    margin: 0 0  25px;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:nth-child(3) {
    margin: 0 0 20px;
}
 .footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child {
    border: 0;
    margin: 0;
}
  .img-text.for-mobile {
    display: block;
    padding: 37px 0 42px;
}
.footer2023-dec .footer-nav-list {
    margin: 0 0 25px;
}
.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:nth-child(4) p {
    right: 0;
}
  .footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>:last-child,
  .top-footer>.footer__container>div>.row-fluid>div>:last-child,
  .footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child>.row-fluid>* {
    padding-inline: 0;
} 
.footer2023-dec ul.socialLinks {
    margin-top: 50px;
}

.footer2023-dec .top-footer>.footer__container>div>.row-fluid>div>:last-child {
    padding-top: 0;
}
.footer2023-dec .top-footer > .footer__container > div > .row-fluid > div >*:first-child > .row-fluid >*:last-child > div > .row-fluid >*{
  margin-top:0;
  }
}