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

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

.row-fluid .widget-type-cell{
  min-height: auto;
}
/* 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 1rem;
}

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

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

body {
  line-height: 1.4;
  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;
}

/* Anchors */

a {
  cursor: pointer;
}

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

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

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* 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 */

body.noscroll { overflow: hidden; }
.header .dnd-section {
  padding: 0;
}

/* Header container */

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

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

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

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

/* UAB Online Styles */
@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');
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
}
.bg-white {
    background: #fff;
}
.bg-grey {
    background: #F2F2F2;
}
.bg-dark-blue {
    background: #002C5B;
}
.width-auto {
    width: auto;
}
.height-auto {
    height: auto;
}

.uab-container, .uab-container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}
.uab-container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.padding-container {
    padding-top: 150px;
    padding-bottom: 150px;
}

/* start: text properties */
.uab-text-bold {
    font-weight: 700;
}

.uab-text-semibold {
    font-weight: 500;
}

.uab-text-center {
    text-align: center !important;
}

.uab-text-left {
    text-align: left !important;
}

.uab-text-right {
    text-align: right !important;
}

.uab-text-dark-blue{
    color: #002C5B !important;
}

.uab-text-light-blue{
    color: #007BFF !important;
}

.uab-text-white{
    color: #fff !important;
}

.uab-text-decoration-underline {
    text-decoration: underline;
}
.uab-text-decoration-none {
    text-decoration: none;
}
/* end: text properties */
/* start: display properties*/
.uab-d-none {
    display: none;
}
.uab-d-block {
    display: block;
}
@media (min-width:992px) {
    .uab-d-lg-none {
        display: none !important;
    }
    .uab-d-lg-block {
        display: block !important;
    }
    .uab-d-lg-flex {
        display: flex !important;
    }
    .uab-lg-text-center {
      text-align: center !important;
    }

    .uab-lg-text-left {
      text-align: left !important;
    }

    .uab-lg-text-right {
      text-align: right !important;
    }
}
/* end: display properties*/
/* start: flex properties */
.uab-d-flex {
    display: flex;
}

.uab-flex-row {
    flex-direction: row;
}

.uab-flex-column {
    flex-direction: column;
}

.uab-flex-row-reverse {
    flex-direction: row-reverse;
}

.uab-flex-column-reverse {
    flex-direction: column-reverse;
}

.uab-flex-wrap {
    flex-wrap: wrap;
}

.uab-flex-nowrap {
    flex-wrap: nowrap;
}

.uab-flex-shrink {
    flex-shrink: 1 !important;
}

.uab-flex-noshrink {
    flex-shrink: 0 !important;
}

.uab-flex-grow {
    flex-grow: 1 !important;
}

.uab-flex-nogrow {
    flex-grow: 0 !important;
}

.uab-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.uab-justify-content-start {
    justify-content: flex-start;
}

.uab-justify-content-end {
    justify-content: flex-end;
}

.uab-justify-content-center {
    justify-content: center;
}

.uab-justify-content-between {
    justify-content: space-between;
}

.uab-justify-content-around {
    justify-content: space-around;
}

.uab-justify-content-evenly {
    justify-content: space-evenly;
}

.uab-align-items-start {
    align-items: flex-start;
}

.uab-align-items-end {
    align-items: flex-end;
}

.uab-align-items-center {
    align-items: center;
}

.uab-align-items-baseline {
    align-items: baseline;
}

.uab-align-items-stretch {
    align-items: stretch;
}

.uab-align-content-start {
    align-content: flex-start;
}

.uab-align-content-end {
    align-content: flex-end;
}

.uab-align-content-center {
    align-content: center;
}

.uab-align-content-between {
    align-content: space-between;
}

.uab-align-content-around {
    align-content: space-around;
}

.uab-align-content-stretch {
    align-content: stretch;
}

.uab-align-self-auto {
    align-self: auto;
}

.uab-align-self-start {
    align-self: flex-start;
}

.uab-align-self-end {
    align-self: flex-end;
}

.uab-align-self-center {
    align-self: center;
}

.uab-align-self-baseline {
    align-self: baseline;
}

.uab-align-self-stretch {
    align-self: stretch;
}
@media (min-width:992px) {
    .uab-flex-lg-row {
        flex-direction: row;
    }
    
    .uab-flex-lg-column {
        flex-direction: column;
    }
    
    .uab-flex-lg-row-reverse {
        flex-direction: row-reverse;
    }
    
    .uab-flex-lg-column-reverse {
        flex-direction: column-reverse;
    }
}
/* end: flex properties */
/* start: gap properties */
.uab-gap-0 {
    gap: 0;
}

.uab-gap-1 {
    gap: 0.25rem;
}

.uab-gap-2 {
    gap: 0.5rem;
}

.uab-gap-3 {
    gap: 1rem;
}

.uab-gap-4 {
    gap: 1.5rem;
}

.uab-gap-5 {
    gap: 3rem;
}

.uab-gap-6 {
    gap: 4rem;
}

.uab-gap-7 {
    gap: 5rem;
}

.uab-gap-8 {
    gap: 6rem;
}

.uab-gap-9 {
    gap: 7rem;
}

/* end: gap properties */
/* start: padding properties */
.uab-p-0 {
    padding: 0;
}

.uab-p-1 {
    padding: 0.25rem;
}

.uab-p-2 {
    padding: 0.5rem;
}

.uab-p-3 {
    padding: 1rem;
}

.uab-p-4 {
    padding: 1.5rem;
}

.uab-p-5 {
    padding: 3rem;
}

.uab-pl-0 {
    padding-left: 0;
}

.uab-pl-1 {
    padding-left: 0.25rem;
}

.uab-pl-2 {
    padding-left: 0.5rem;
}

.uab-pl-3 {
    padding-left: 1rem;
}

.uab-pl-4 {
    padding-left: 1.5rem;
}

.uab-pl-5 {
    padding-left: 3rem;
}

.uab-pt-0 {
    padding-top: 0;
}

.uab-pt-1 {
    padding-top: 0.25rem;
}

.uab-pt-2 {
    padding-top: 0.5rem;
}

.uab-pt-3 {
    padding-top: 1rem;
}

.uab-pt-4 {
    padding-top: 1.5rem;
}

.uab-pt-5 {
    padding-top: 3rem;
}

.uab-pr-0 {
    padding-right: 0;
}

.uab-pr-1 {
    padding-right: 0.25rem;
}

.uab-pr-2 {
    padding-right: 0.5rem;
}

.uab-pr-3 {
    padding-right: 1rem;
}

.uab-pr-4 {
    padding-right: 1.5rem;
}

.uab-pr-5 {
    padding-right: 3rem;
}

.uab-pb-0 {
    padding-bottom: 0;
}

.uab-pb-1 {
    padding-bottom: 0.25rem;
}

.uab-pb-2 {
    padding-bottom: 0.5rem;
}

.uab-pb-3 {
    padding-bottom: 1rem;
}

.uab-pb-4 {
    padding-bottom: 1.5rem;
}

.uab-pb-5 {
    padding-bottom: 3rem;
}

.uab-py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.uab-py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.uab-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.uab-py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.uab-py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.uab-py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.uab-px-0 {
    padding-left: 0;
    padding-right: 0;
}

.uab-px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.uab-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.uab-px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.uab-px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.uab-px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* end: padding properties */
/* start: margin properties */
.uab-m-auto {
    margin: auto;
}

.uab-m-0 {
    margin: 0;
}

.uab-m-1 {
    margin: 0.25rem;
}

.uab-m-2 {
    margin: 0.5rem;
}

.uab-m-3 {
    margin: 1rem;
}

.uab-m-4 {
    margin: 1.5rem;
}

.uab-m-5 {
    margin: 3rem;
}

.uab-ml-auto {
    margin-left: auto;
}

.uab-ml-0 {
    margin-left: 0;
}

.uab-ml-1 {
    margin-left: 0.25rem;
}

.uab-ml-2 {
    margin-left: 0.5rem;
}

.uab-ml-3 {
    margin-left: 1rem !important;
}

.uab-ml-4 {
    margin-left: 1.5rem;
}

.uab-ml-5 {
    margin-left: 3rem;
}

.uab-mt-auto {
    margin-top: auto;
}

.uab-mt-0 {
    margin-top: 0;
}

.uab-mt-1 {
    margin-top: 0.25rem;
}

.uab-mt-2 {
    margin-top: 0.5rem;
}

.uab-mt-3 {
    margin-top: 1rem;
}

.uab-mt-4 {
    margin-top: 1.5rem;
}

.uab-mt-5 {
    margin-top: 3rem;
}

.uab-mr-auto {
    margin-right: auto;
}

.uab-mr-0 {
    margin-right: 0;
}

.uab-mr-1 {
    margin-right: 0.25rem;
}

.uab-mr-2 {
    margin-right: 0.5rem;
}

.uab-mr-3 {
    margin-right: 1rem;
}

.uab-mr-4 {
    margin-right: 1.5rem;
}

.uab-mr-5 {
    margin-right: 3rem;
}

.uab-mb-auto {
    margin-bottom: auto;
}

.uab-mb-0 {
    margin-bottom: 0;
}

.uab-mb-1 {
    margin-bottom: 0.25rem;
}

.uab-mb-2 {
    margin-bottom: 0.5rem;
}

.uab-mb-3 {
    margin-bottom: 1rem;
}

.uab-mb-4 {
    margin-bottom: 1.5rem;
}

.uab-mb-5 {
    margin-bottom: 3rem;
}

.uab-my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.uab-my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.uab-my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.uab-my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.uab-my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.uab-my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.uab-my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.uab-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.uab-mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.uab-mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.uab-mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.uab-mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.uab-mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.uab-mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
}

/* end: margin properties */
/* start: column properties */
.uab-col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.uab-col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.uab-col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.uab-col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.uab-col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.uab-col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.uab-col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.uab-col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.uab-col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.uab-col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.uab-col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.uab-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .uab-col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .uab-col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .uab-col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .uab-col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .uab-col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .uab-col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .uab-col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .uab-col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .uab-col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .uab-col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .uab-col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .uab-col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .uab-col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .uab-col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    
    .uab-col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .uab-col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    
    .uab-col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .uab-col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .uab-col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    
    .uab-col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    
    .uab-col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    
    .uab-col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    
    .uab-col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    
    .uab-col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
/* end: column properties */
@media (min-width: 576px) {
    .uab-container {
        max-width: 540px;
        min-width:540px;
    }
}

@media (min-width: 768px) {
    .uab-container {
        max-width: 720px;
        min-width:720px;
    }
}

@media (min-width: 992px) {
    .uab-container {
        max-width: 960px;
        min-width:960px;
    }
}

@media (min-width: 1200px) {
    .uab-container {
        max-width: 1140px;
        min-width:1140px;
    }
}

@media (min-width: 1400px) {
    .uab-container {
        max-width: 1320px;
        min-width:1320px;
    }
}

@media (min-width: 1920px) {
    .uab-container {
        max-width: 1366px;
        min-width:1366px;
    }
}
/* newest updated body max width 1720 */
body,
body .sticky{
      max-width: 1720px;
}
@media (min-width: 992px){
  section:not(.header-banner) .title{
    font-size:2rem !important;
  }
  
  section:not(.header-banner) .subtitle{
    font-size:1rem !important;
  }
}


.header-section {
/*     max-width: 1920px; */
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
}

.gradient-back, .gradient {
    background: #0F3C6C;
}

#top-nav {
    position: relative;
    display: none;
    background-color: #FFFFFF;
}

#top-nav-menu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.top-nav-links {
    list-style: none;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.5rem 0;
}

.top-nav-item {
    padding: 0px 40px;
}

.topnav-link {
    text-decoration: none;
    color: #002c5b;
    font-size: 0.75em;
    line-height: 21px;
    font-weight: 400;
}

.topnav-link:is(:focus, :hover) {
    text-decoration: underline;
}

.top-nav-mobile .navbar-link {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 30px;
}

.navbar-links.top-nav-mobile  {
    padding-bottom: 0px;
    margin-bottom: 0.5rem;
}

.lang-menu, .lang-mobile {
    position: relative;
    display: inline-block;
    align-items: center;
    padding: 0px 40px;
}
.lang-menu .dropdown-arrow, .lang-mobile .dropdown-arrow {
    height: 0;
    width: 0;
    margin-left: 6px;
    --triangle-dropdown: 5px;
    border-left: var(--triangle-dropdown) solid transparent;
    border-right: var(--triangle-dropdown) solid transparent;
    border-top: var(--triangle-dropdown) solid #FFFFFF;
}
.lang-menu .main-menu, .lang-mobile .main-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
}
.lang-menu .dropdown-child, .lang-mobile .dropdown-child-mobile {
    position: absolute;
    width: auto;
    overflow: auto;
    display: none;
    background-color: #FFFFFF;
    color: #007BFF;
    z-index: 99;
}
.lang-menu .dropdown-child a, .lang-mobile .dropdown-child-mobile a {
    display: flex;
    align-items: center;
    color: #007BFF;
    padding: 5px;
    text-decoration: none;
    background-color: #FFFFFF;
    white-space: nowrap;
}

.lang-mobile .dropdown-child-mobile a{
    background-color:#002c5b;
  color:#ffffff;
}

.lang-menu .dropdown-child a:hover , .lang-mobile .dropdown-child-mobile a:hover {
    color: #FFFFFF;
    background-color: #007bff;
}
.lang-menu img, .lang-mobile img {
    width: 20px;
    margin-right: 6px;
}

#navbar {
    position: fixed;
    background-color: #002C5B;
    border-bottom: 1px solid #E3E3E3;
    z-index: 10;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: auto;
    width: 100%;
    align-items: center;
    min-height: 90px;
}

.navbar-item {
    margin: 0px;
    width: 100%;
}
  
.home-link, .navbar-link {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
}
  
.navbar-link {
    justify-content: start;
    padding: 8px;
    width: 100%;
    font-size: 1.5625em;
    font-weight: 600;
    line-height: 38px;
}

.login-link {
    font-size: 1em;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    color: #007BFF;
    text-decoration: none;
    white-space: nowrap;
}
.login-link:is(:focus, :hover) {
    color: #FFFFFF !important;
}

.signup-link {
    font-size: 1em;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 40px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}
.signup-link:is(:focus, :hover) {
    color: #0f3c6c !important;
}

.btn {
    border-radius: 32px;
    background-color: #007BFF;
    padding: 14px 30px;
    font-size: 0.875em;
    font-weight: 700;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn:is(:focus, :hover) {
    background-color: #007BFFBC;
    color: #FFFFFF !important;
}

.btn-white-outline {
    border-radius: 32px;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    padding: 14px 30px;
    font-size: 0.875em;
    font-weight: 700;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-white-outline:is(:focus, :hover) {
    background-color: #007BFFBC;
    color: #FFFFFF !important;
}

.navbar-item .btn-orange, .header-section.lp .btn-orange {
    border-radius: none;
    background-color: transparent;
    border: none;
    padding: 8px !important;
    font-size: 1.5625em;
    font-weight: 600;
    line-height: 38px;
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.navbar-item .btn-orange:is(:focus, :hover), .header-section.lp .btn-orange:is(:focus, :hover) {
    color: #F75C03;
}

.navbar-container .btn-orange.mobile-btn, .header-section.lp .btn-orange {
    background-color: #F75C03;
    border: 2px solid #F75C03;
    border-radius: 32px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 18px;
    padding: 10px 12px !important;
}
.navbar-container .btn-orange.mobile-btn:is(:focus, :hover), .header-section.lp .btn-orange:is(:focus, :hover) {
    background-color: transparent;
    color: #FFFFFF !important;
}

.navbar-link:is(:focus, :hover) {
    color: #007BFF;
}

.navbar-logo {
    height: 28px;
} 

.navbar-logo img {
    height: 100%;
}

.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 2px;
    background-color: #FFFFFF;
}

.navbar-toggle:is(:focus, :hover) .icon-bar {
    background-color: #FFFFFF;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:is(:first-child, :last-child) {
    position: absolute;
    margin: 0;
    width: 30px;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
    transform: rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
    transform: rotate(-45deg);
}

.navbar-menu {
    position: fixed;
    top: 77px;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
    padding-left: 30px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    white-space: nowrap;
}

.backmenu-wave {
    position: absolute;
    z-index: -1;
    overflow: hidden;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
}

.backmenu-wave .menu-wave {
	width: 100%;
	position: relative;
	left: 60%;
	top: 30%;
	transform: scale(2,3);
}

.navbar-toggle[aria-expanded="true"] + .navbar-menu {
    background-color: #002C5B;
    opacity: 1;
    visibility: visible;
}

.navbar-toggle[aria-expanded="true"] + .navbar-menu .navbar-links {
    padding: 0;
}

.navbar-links {
    list-style: none;
    /* background-color: transparent; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
    margin-right: 1.4rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 99;
/*   max-width: 1920px; */
}

.sticky + .content {
  padding-top: 60px;
}

.header-banner {
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-banner .banner-image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.header-banner .banner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(100% 0, 100% 96%, 50% 100%, 0 96%, 0 0);
}

.header-banner .banner-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.header-banner .banner-container {
    background: #fff;
    box-shadow: 0px 3px 20px #00000040;
    border-radius: 5px;
    max-width: 100%;
    border-bottom: 0.5rem solid #007BFF;
    padding: 20px 30px;
    margin-top: 80%;
}

.header-banner.homev2 .banner-container {
    background: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
    border-bottom: none;
    padding: 0;
    margin-top: 0;
}

.header-banner .subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2.63px;
    color: #007BFF;
    margin-bottom: 0px;
}

.header-banner .title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 30px;
    color: #002C5B;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0.875rem;
}

.header-banner .content {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 24px;
    color: #002C5B;
}

.header-banner input[type="email"] {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 32px;
    color: #002C5B;
    border: 1px solid #D3D3D3;
    border-radius: 24px;
    padding: 5px 26px;
    width: 100%;
    box-sizing: border-box;
}

.header-banner .btn-orange, .header-banner input[type="submit"] {
    background-color: #F75C03;
    border: 2px solid #F75C03;
    border-radius: 32px;
    padding: 10px 14px !important;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    margin-top: 10px;
}

.header-banner .btn-orange:is(:focus, :hover), .header-banner input[type="submit"]:is(:focus, :hover) {
    color: #F75C03;
    background-color: transparent;
}

.header-banner .bottom-content {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 32px;
    color: #002C5B;
    opacity: 0.56;
}

 .contentOffset {
      padding-top: 72px;
    }
    .contentOffsetAll {
      padding-top: 72px;
    }

@media screen and (orientation:landscape)
and (max-device-width: 991px) {
  .backmenu-wave {
    height: 240%;
  }
}

@media screen and (orientation:portrait) and (max-width: 768px) and (max-height: 721px) {
  .backmenu-wave {
    height: 130%;
  }
}



@media screen and (min-width: 768px) {
    .header-banner .banner-container {
        margin-top: 50%;
    }
    .header-banner input[type="email"] {
        width: 50%;
    }
    .header-banner .btn-orange, .header-banner input[type="submit"] {
        width: unset;
        margin-top: 0;
    }
}

@media screen and (min-width: 992px) {
    #navbar {
      position: relative;
    }
    .contentOffset {
      padding-top: 74px;
    }
    .contentOffsetAll {
      padding-top: 74px;
    }
  
    .header-banner {
        align-items: center;
        height: 670px;
    }

    .header-banner .banner-image img{
      clip-path: polygon(100% 0, 100% 93%, 50% 100%, 0 93%, 0 0);
    }

    .header-banner .banner-content {
        justify-content: start;
    }

    .header-banner .banner-container {
        max-width: 45%;
        padding: 2rem 5.5rem 1rem 3.5rem;
        margin-top: 0;
    }

    .header-banner .title {
        font-size: 2.5rem;
        line-height: 50px;
        padding-bottom: 1rem;
    }

    .header-banner .content {
        font-size: 1.25rem;
        line-height: 32px;
    }

    #top-nav {
        display: block;
    }

    .top-nav-item {
        padding: 0px 20px;
    }

    .navbar-logo {
        height: 40px;
    } 

    .gradient {
        background: linear-gradient(103deg, rgba(15,60,108,1) 0%, rgba(15,62,113,1) 96%, rgba(4,105,212,0) 96%, rgba(0,123,255,0) 100%); 
    }

    .gradient-back {
        background: linear-gradient(90deg, rgba(15,60,108,1) 0%, rgba(15,62,113,1) 50%, rgba(4,105,212,1) 50%, rgba(0,123,255,1) 100%);
    }
    
    .navbar-menu {
        flex-direction: row;
        align-items: center;
        padding-left: 0px;
        height: auto;
    }

    .navbar-item {
        margin: 16px 18px;
    }

    .navbar-links {
        width: 100%;
        margin: 1.4rem;
    }

    .navbar-toggle[aria-expanded="true"] + .navbar-menu .navbar-links {
        padding: 1em;
    }

    .navbar-link {
        justify-content: center;
        padding: 16px 4px;
        width: 100%;
        font-size: 0.8em;
        font-weight: 500;
        line-height: 25px;
    }

    .navbar-toggle,
    .navbar-toggle[aria-expanded="true"] {
        display: none;
    }

    .navbar-menu,
    .navbar-toggle[aria-expanded="true"] .navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: flex;
        height: 100%;
    }

    .navbar-links,
    .navbar-toggle[aria-expanded="true"] .navbar-menu .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }

    .navbar-item .btn-orange, .header-banner input[type="submit"], .header-section.lp .btn-orange {
        background-color: #F75C03;
        border: 2px solid #F75C03;
        border-radius: 32px;
        padding: 10px 14px !important;
        font-size: 0.8em;
        font-weight: 700;
        line-height: 21px;
        color: #FFFFFF;
        text-decoration: none;
        cursor: pointer;
        white-space: nowrap;
    }
    
    .navbar-item .btn-orange:is(:focus, :hover), .header-banner input[type="submit"]:is(:focus, :hover), .header-section.lp .btn-orange:is(:focus, :hover) {
        background-color: transparent;
        color: #FFFFFF !important;
    }

    .top-nav-mobile, .lang-mobile, .btn-orange.mobile-btn {
        display: none;
    }

    .lang-menu .main-menu, .lang-menu .dropdown-child a {
        font-size: 0.9em;
        font-weight: 500;
        line-height: 25px;
        color: #002c5b;
    }

    .lang-menu .dropdown-arrow {
        margin-left: 2px;
        --triangle-dropdown: 3px;
        border-left: var(--triangle-dropdown) solid transparent;
        border-right: var(--triangle-dropdown) solid transparent;
        border-top: var(--triangle-dropdown) solid #002c5b;
    }
}

@media screen and (min-width: 1200px) {
    .top-nav-item {
        padding: 0px 40px;
    }
    .navbar-link {
        padding: 16px 13px;
    }
    .navbar-item {
        margin: 16px 20px;
    }
    .navbar-item .btn-orange, .header-section.lp .btn-orange {
        padding: 14px 30px !important;
    }
    .header-banner .banner-container {
        max-width: 44%;
        padding: 2rem 3.5rem 1rem 3.5rem;
    }
    .header-banner .banner-image img{
      clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
    }
}

@media screen and (min-width: 1400px) {
    .navbar-link {
        padding: 16px 24px;
    }
    .navbar-item {
        margin: 16px 24px;
    }
}
section.footer-section {
    /* margin-top: 200px; */
    /* padding-top: 10vw; */
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    min-height: 400px;
    color: #fff;
    overflow-x: clip;
}

section.footer-section.landing { min-height: unset; }
section.footer-section.landing .footer-link-bottom .list-link-bottom { padding-top: 2.5rem; }

.footer-section .wave-wrapper {
    position: absolute;
    background-color: transparent;
    top: -32%;
    left: 0;
}

.footer-section .wave-wrapper .wave-footerimg {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    transform: scaleX(1.01);
}

.footer-wave {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.footer-wave .wave-wrapper {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
}

.footer-wave .wave-wrapper .wave-footerimg {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    transform: scaleX(1.01);
}

.footer-section .footer-wrapper {
    position: relative;
    background-color: #002C5B;
}

.footer-section .brand-logo {
    width: 250px;
}

.mb-brand-logo {
    margin-bottom: 72px;
}

.background-wave {
    background-image: url(../images/footer-wave.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-container {
    z-index: 3;
}

.footer-link {
    /* width: 50%; */
}

.socmed-links {
    /* display: flex; */
    column-gap: 1rem;
    /* margin-top: 1rem; */
    box-sizing: border-box;
}

.socmed-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #007BFF;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.socmed-links a:hover {
    background-color: #FFFFFF;
    color: #007BFF;
}

.socmed-links .fa-brands, .socmed-links .fa-regular{
    font-size: 1.5em;
    line-height: 24px;
}

.footer-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125em;
    line-height: 27px;
}

.footer-text {
    font-size: 1em;
    line-height: 24px;
}

.footer-container .footer-text-wrapper .footer-dnv { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-container .footer-text-wrapper .footer-dnv #hs_cos_wrapper_additional-image-footer2 img { -webkit-filter: invert(100%); filter: invert(100%); }

.footer-link-bottom .list-link-bottom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2.5rem;
    margin-top: 2rem;
}

.footer-link-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875em;
    line-height: 21px;
    font-weight: 400;
}

a.btn-demo {
    border: 2px solid #007BFF;
    padding: 0.8rem 1.3rem;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    font-size: 1rem;
    /* width: 100px; */
    /* text-transform: uppercase; */
}

a.btn-demo:hover {
    background-color: #007BFF;
    color: #FFFFFF !important;
}

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

.list-link li {
    margin-bottom: 27px;
}

.list-link li a {
    display: inline-block;
}

.list-link li a:hover {
    color: #007BFF;
}

.list-link-bottom {
    padding: 0;
    list-style: none;
    margin: 0;
}

.list-link-bottom a:hover {
    text-decoration: underline;
}

.wave-svg {
    background: #fff;
    transform: scale(-2, 2);
}

.curve {
    position: absolute;
    height: 250px;
    width: 100%;
    top: 0;
    text-align: center;
    z-index: 2;
}

.curve::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50% 100%;
    width: 150%;
    height: 200%;
    background-color: #002C5B;
    transform: translate(-4%, -18%) skew(0, 3deg);
    border-start-start-radius: 15%;
}

.footer-container .h3-col-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.125em;
    line-height: 27px;
    font-weight: 600;
}

.footer-container .footer-menu-wrapper {
    flex-direction: row;
}

.footer-container .footer-text-wrapper {
    flex-direction: row;
    position: relative;
}


.footer-text-wrapper .widget-type-rich_text a{
  color:#fff !important;
}
@media (max-width: 991px) {
    .footer-section .wave-wrapper {
        top: -20%;
    }
  .footer-wave {
      min-height: 130px;
  }
  a.btn-demo {
    font-size: 0.75rem;
    /* width: 100px; */
    /* text-transform: uppercase; */
  }
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-container>.uab-col-6 {
        width: 100%;
        gap: 2rem;
    }

    .footer-padding {
        padding: 0;
    }

    .footer-link {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-margin p {
        margin-right: 2rem;
        padding-right: 1rem;
    }

    /* .background-wave {
        background-size: 350%;
    } */
    section.footer-section {
        /* padding-top: 50vw; */
    }

    .footer-link-bottom a {
        font-size: 0.75em;
    }
    .footer-section .wave-wrapper {
        top: -12%;
    }
    .footer-container .footer-menu-wrapper {
        flex-direction: row-reverse;
        gap: 0;
    }
    .footer-container .footer-text-wrapper {
        flex-direction: column;
    }
    .footer-container .footer-text-wrapper .footer-dnv {
        position: absolute;
        left: 65%;
        top: 20%;
    }
  .footer-link-bottom .list-link-bottom { flex-wrap: wrap; }
  .footer-link-bottom .list-link-bottom li:last-child { width: 100%; text-align: center; margin-top: 20px; }
}
section.section-description {
    margin-top: 100px;
}

section.section-description .title {
    color: #007BFF;
    font-size: 1.5625rem;
    line-height: 35px;
    font-weight: 600;
    padding-right: 20px;
    margin-top: 0px;
}

section.section-description p {
    color: #002C5B;
    font-size: 0.875rem;
    line-height: 28px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

section.section-description p strong {
    color: #007BFF;
    font-weight: 600;
}

section.section-description p strong.underline {
    text-decoration: underline;
}

section.section-worker {
    margin-top: 0px;
    background-color: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
}

section.section-worker .uab-container {
    flex-wrap: wrap;
    flex-direction: column;
}

section.section-worker .uab-col-6 {
    flex: auto;
}

section.section-worker .text-container {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 78px;
    margin-bottom: 78px;
}

section.section-worker .text-container .title {
    color: #007BFF;
    font-size: 0.875rem;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.63px;
    margin-top: 0px;
    margin-bottom: 0px;
}

section.section-worker .text-container p {
    color: #002C5B;
    font-size: 1.5625rem;
    line-height: 40px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
}

section.section-worker .text-container p strong {
    color: #007BFF;
    font-weight: 600;
}

section.section-worker .image-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

section.section-fluid {
    background: #007BFF;
    margin-top: 80px;
    padding-top: 76px;
}

section.section-fluid .fluid-container {
    flex-direction: column-reverse;
}

section.section-fluid .image-container img {
    width: 100%;
    height: auto;
}

section.section-fluid .video-container {
  display: flex;
  justify-content: end;
}

section.section-fluid .text-container {
    position: relative;
}

section.section-fluid .text-container .qoute-mark {
	font-size: 9.875rem;
	line-height: 199px;
	font-weight: 700;
	font-style: italic;
	color: #FFFFFF;
	opacity: 0.31;
	position: absolute;
	left: 75%;
	top: -45px;
    height: 100%;
    object-fit: cover;
}

section.section-fluid .text-container p {
    font-size: 1.875rem;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    text-align: right;
}


section.teams {
    margin-top: 94px;
}

section.teams .subtitle {
    font-size: 0.875rem;
    line-height: 32px;
    font-weight: 500;
    color: #007BFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
}

section.teams .title {
    font-size: 1.5625rem;
    line-height: 35px;
    font-weight: 600;
    color: #002C5B;
    margin-top: 0;
    margin-bottom: 0;
}

section.teams .image-container .uab-col-12 {
    display: flex;
}

section.teams .image-container .uab-col-12 .image-content {
    width: 100%;
  display:flex;
}

section.teams .image-container .uab-col-12 .image-content .wave-svg{
  height:50%;
}

section.teams .image-container .uab-col-12 .team-image {
    width: 100%;
    max-width: 100% !important;
}

section.teams .image-container .image-media.uab-col-12:hover .image-content {
    display: flex;
    cursor: pointer;
}

section.teams .image-container .image-media {
    position: relative;
    margin-bottom: 16px;
}

section.teams .image-container .image-media .team-image {
    max-width: 90%;
  border-radius:5px;
  outline: 2px solid transparent;
}

section.teams .image-container .image-media.active .team-image{
  outline: 2px solid #007BFF;
}

section.teams .image-container .wave-svg {
	background: transparent;
    /* left: 62px; */
    /* opacity: .4; */
    position: absolute;
    /* top: 70px; */
    /* transform: scalex(-2) scaleY(6); */
    z-index: 9;
    width: 100%;
    /* bottom: 0px; */
    height: 58%;
    transform:none;
}

section.teams .image-container .image-content {
    position: absolute;
    bottom: 0;
    width: 95%;
    height: 100%;
    box-sizing: border-box;
    overflow: clip;
    display: none;
}

section.teams .image-container .image-content .image-text {
    padding-bottom: 10px;
    padding-left: 16px;
    z-index: 9;
}

section.teams .image-container .image-content .image-text .team-name {
    font-size: 1.125rem;
    line-height: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

section.teams .image-container .image-content .image-text p {
    font-size: 1rem;
    line-height: 28px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 0px;
}

section.teams .image-container .image-content .image-text p  a{
    color: #FFFFFF;
    text-decoration:none;
}

section.vacatures-banner {
    margin-top: 64px;
  padding-left:23px;
  padding-right:23px;
}

section.vacatures-banner .uab-container{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius:5px;
    background-position:3.5%;
    background-color: #002C5B;
}

section.vacatures-banner .content-text {
    color: #FFFFFF;
}

section.vacatures-banner .content-text p {
    font-size: 1.75rem;
    line-height: 37px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 36px;
}

section.vacatures-banner .cta-btn {
    background: #007BFF;
    border-radius: 31px;
    color: #FFFFFF;
    font-size: 1.125rem;
    line-height: 25px;
    font-weight: 700;
    padding: 18px 60px;
    text-decoration: none;
}

@media (min-width: 992px) {
    section.section-description .title {
        font-size: 2.5rem;
        line-height: 50px;
        padding-right: 120px;
    }
    section.section-description p {
        font-size: 1rem;
        line-height: 28px;
    }
    section.section-worker {
        margin-top: 155px;
        background-color: #002C5B;
        padding-top: 100px;
        padding-bottom: 160px;
    }
    section.section-worker .uab-container {
        flex-wrap: nowrap;
        flex-direction: row;
        column-gap: 4rem;
        box-sizing: border-box;
    }
    section.section-worker .uab-container .uab-col-lg-6 {
        flex: auto;
    } 
    section.section-worker .text-container .title {
        font-size: 1rem;
        line-height: 44px;
    }
    section.section-worker .text-container {
        padding-right: 40px;
        padding-left: 20px;
        margin-top: 100px;
        margin-bottom: 150px;
    }    
    section.section-worker .text-container p {
        color: #FFFFFF;
        font-size: 1.875rem;
        line-height: 45px;
    }
    section.section-fluid {
        padding-top: 0px;
    }
    section.section-fluid .fluid-container {
        flex-direction: row;
    }
    section.section-fluid .text-container p {
        font-size: 2rem;
        line-height: 40px;
    }
    section.section-fluid .text-container .qoute-mark {
        font-size: 13rem;
        line-height: 429px;
        left: 64%;
        top: -18%;
    }
    section.teams {
        margin-top: 150px;
    }
    section.teams .subtitle {
        font-size: 1rem;
        line-height: 44px;
    }
    section.teams .title {
        font-size: 2.5rem;
        line-height: 50px;
        margin-bottom: 25px;
    }
    section.teams .image-container .uab-col-12 {
        display: none;
    }
    section.teams .image-container .image-media:hover .image-content {
        display: flex;
        cursor: pointer;
    }
    section.teams .image-container .image-media {
        margin-bottom: 48px;
    }
    section.teams .image-container .image-media .team-image {
        max-width: 95%;
    }
  section.teams .image-container .image-media.active .team-image{
    outline: 2px solid transparent;
  }
    section.vacatures-banner .uab-container{
        padding-top: 56px;
        padding-bottom: 56px;
    }
    section.vacatures-banner .content-text p {
        text-align: left;
        font-size: 2rem;
        line-height: 46px;
        margin-bottom: 0px;
    }
    section.vacatures-banner .cta-btn {
        font-size: 1.25rem;
        line-height: 25px;
        font-weight: 600;
    }
}

@media (min-width: 1200px) {
    section.section-worker .uab-container {
        column-gap: 5rem;
    }
    section.section-fluid .text-container p {
        font-size: 2.5rem;
        line-height: 54px;
    }
    section.section-fluid .text-container .qoute-mark {
        font-size: 18rem;
        line-height: 429px;
        left: 68%;
        top: -3%;
    }
}

@media (min-width: 1400px) {
    section.section-worker .uab-container {
        column-gap: 6rem;
    }
    section.section-fluid .text-container .qoute-mark {
        left: 70%;
        top: -1%;
    }
}

@media (min-width: 1700px) {
    section.section-worker .uab-container {
        column-gap: 7rem;
    }
    section.section-fluid .text-container p {
        font-size: 3.75em;
        line-height: 85px;
    }
    section.section-fluid .text-container .qoute-mark {
        font-size: 21.4em;
        line-height: 429px;
        left: 70%;
        top: 5%;
    }
}

@media (min-width: 2000px) {
    section.section-fluid .text-container .qoute-mark {
        left: 70%;
        top: 22%;
    }
}
/* start: our-promises section */
.our-promises-section {
  padding-top: 58px;
  padding-bottom: 58px;
}
.our-promises-section p {
  margin-top: 0;
  margin-bottom: 0;
}
.our-promises-section .lead {
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  text-align: center;
  text-transform: uppercase;
  line-height: 32px;
  letter-spacing: 2.63px;
}
.our-promises-section .title {
  font-size: 1.5625em;
  font-weight: 600;
  color: #002C5B;
  text-align: center;
  line-height: 35px;
  margin-bottom: 1.5rem;
}
.our-promises-section .our-promises-item {
  background-color: #F5F8FD;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 1.75rem;
}
.our-promises-section .our-promises-item .head {
  margin-bottom: 1rem;
}
.our-promises-section .our-promises-item .head .icon {
  width: 56px;
  height: 56px;
  background-color: #007BFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-promises-section .our-promises-item .head .icon img{
  width: 100%;
  max-width: 24px;
  object-fit: cover;
  object-position: center;
}
.our-promises-section .our-promises-item .head .label {
  font-size: 1.25em;
  font-weight: bold;
  color: #002C5B;
  line-height: 32px;
  margin: 0;
}
.our-promises-section .our-promises-item .body p {
  font-size: 1em;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  text-align: left;
}

@media (min-width:992px) {
  .our-promises-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .our-promises-section .uab-container {
    padding: 0px;
  }
  .our-promises-section .lead {
    font-size: 1em;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  .our-promises-section .title {
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 2.5rem;
  }
  .our-promises-section .our-promises-item {
    background-color: transparent;
  }
  .our-promises-section .our-promises-item .head {
    margin-bottom: 1.5rem;
  }
  .our-promises-section .our-promises-item .head .icon {
    width: 80px;
    height: 80px;
    min-width:80px;
    max-width:80px;
    min-height:80px;
    max-height:80px;
  }
  .our-promises-section .our-promises-item .head .icon img{
    max-width: 34px;
  }
  .our-promises-section .our-promises-item .head .label {
    font-size: 1.5em;
  }
  .our-promises-section .our-promises-item .body p {
    font-size: 1.25em;
  }
}

@media (min-width:1200px){
  .our-promises-section .uab-container {
    padding: 100px;
  }
}
/* end: our-promises section */
/* start: personal demo section*/
.personal-demo-section {
  overflow: hidden;
  background-color: #FAFAFA;
  padding-top: 70px;
  padding-bottom: 70px;
}
.personal-demo-section.bg-white {
  background-color: #ffffff;
}
.personal-demo-section .media{
  margin-bottom: 2rem;
  text-align: center;
}
.personal-demo-section .media img{
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  object-position: center;
}
.personal-demo-section .content{
  text-align: center;
}
.personal-demo-section .content p{
  margin: 0;
}
.personal-demo-section .content .lead{
  font-size: 0.875rem;
  font-weight: 500;
  color: #007BFF;
  text-transform: uppercase;
  line-height: 32px;
}
.personal-demo-section .content .title{
  font-size: 1.5625rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 0.5rem;
}
.personal-demo-section .content .desc{
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
  margin-bottom: 1rem;
}
.personal-demo-section .content .btn-cta{
  background-color: #F75C03;
  color: #ffffff;
  font-weight: 600;
}
.personal-demo-section .content .btn-cta:is(:hover, :focus){
  background-color: #007BFF;
}
@media (min-width:992px) {
  .personal-demo-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .personal-demo-section .media{
    text-align: left;
    margin-bottom: 0;
  }
  .personal-demo-section .media img{
    max-width: 100%;
  }
  .personal-demo-section .content{
    text-align: left;
    padding-left: 10%;
    padding-right: 12%;
  }
  .personal-demo-section .content .lead{
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .personal-demo-section .content .title{
    font-size: 2.5rem;
    line-height: 50px;
    margin-bottom: 1.5rem;
  }
  .personal-demo-section .content .desc{
    font-size: 1rem;
    color: #002C5B;
    max-width: 70%;
    margin-bottom: 2rem;
  }
}
/* end: personal demo section*/
/* start: our customers section*/
.our-customers-section {
  padding-top: 90px;
  padding-bottom: 70px;
}
.our-customers-section .content{
  text-align: center;
  margin-bottom: 2rem;
}
.our-customers-section .content p{
  margin: 0;
}
.our-customers-section .content .lead{
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing:2.63px;
  text-transform: uppercase;
  line-height: 32px;
  color: #007BFF;
}
.our-customers-section .content .title{
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 35px;
  margin: 0;
  color: #002C5B;
}
.our-customers-section .media {
  gap: 1.5rem;
}
.our-customers-section .media .cust-logo {
  padding: 58px 18px;
  background-color: #F8FAFF;
}
.our-customers-section .media img {
  width: 100%;
  max-width: 150px;
  object-fit: cover;
  object-position: center;
}
.our-customers-section .media .first-row, .our-customers-section .media .second-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}
@media (min-width:992px) {
  .our-customers-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .our-customers-section .content{
    text-align: left;
    padding-right: 4rem;
  }
  .our-customers-section .content .lead{
    font-size: 1rem;
  }
  .our-customers-section .content .title{
    font-size: 2.1875em;
    line-height: 50px;
  }
  .our-customers-section .media {
    align-items: flex-start;
  }
  .our-customers-section .media .first-row, .our-customers-section .media .second-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap:1rem;
  }
  .our-customers-section .media .first-row, .our-customers-section .media .second-row{
    column-gap: 0.8rem;
  }
  .our-customers-section .media .first-row{
    margin-left: -1.7rem;
  }
  .our-customers-section .media .second-row{
    margin-left: 0;
  }
  .our-customers-section .media .cust-logo{
    padding: 46px 18px;
  }
  .our-customers-section .media img {
    max-width: 90px;
  }
}
@media (min-width:1200px){
  .our-customers-section .content{
    text-align: left;
    padding-left: 10%;
    padding-right: 6rem;
  }
  .our-customers-section .media .first-row, .our-customers-section .media .second-row{
    column-gap: 0.8rem;
  }
  .our-customers-section .media .first-row{
    margin-left:-4rem;
  }
  .our-customers-section .media .second-row{
    margin-left:-2rem;
  }
  .our-customers-section .media .cust-logo{
    padding: 50px 18px;
  }
  .our-customers-section .media img {
    max-width: 100px;
  }
}
@media (min-width:1400px){
  .our-customers-section .media .first-row, .our-customers-section .media .second-row{
    column-gap:1.5rem;
  }
  .our-customers-section .media .first-row{
    margin-left:-7rem;
  }
  .our-customers-section .media .second-row{
    margin-left:-4rem;
  }
  .our-customers-section .media .cust-logo{
    padding: 58px 18px;
  }
  .our-customers-section .media img {
    max-width: 120px;
  }
  .our-customers-section .content{
    padding-right: 10rem;
  }
}
@media (min-width:1700px){
  .our-customers-section .content{
    padding-right: 13rem;
  }
}
/* end: our customers section*/
/* start: resources section*/
.resources-section {
  background-color: #FAFAFA;
  padding-top: 66px;
  padding-bottom: 60px;
}
.resources-section .swiper-button-next, .resources-section .swiper-button-prev {
  position: relative;
  text-decoration: none;
  width: 42px;
  height: 42px;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.resources-section .swiper-button-next:after, .resources-section .swiper-button-prev:after {
  font-size: 1rem;
}
.resources-section .swiper-button-prev, .resources-section .swiper-rtl .swiper-button-next {
  left: 0;
}
.resources-section .swiper-button-next, .resources-section .swiper-rtl .swiper-button-prev {
  right: 0;
}
.resources-container.swiper {
  width: 100%;
  height: 570px;
  padding-bottom: 1.5rem;
}
.resources-section .content {
  text-align: center;
}
.resources-section p, .resources-section h3, .resources-section h5{
  margin: 0;
}
.resources-section .content .lead{
  font-size: 0.875rem;
  font-weight: bold;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
}
.resources-section .content .title {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 1.5rem;
}
.resources-section .card {
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.resources-section .card img{
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  max-height:300px;
  min-height:300px;
}
.resources-section .card .card-body{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.resources-section .card .card-body .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 30px;
  margin-bottom: 1rem;
}
.resources-section .card .card-body .card-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #002C5B;
  line-height: 28px;
  margin-bottom: 1rem;
}
.resources-section .card .card-body .card-link {
  font-size: 1rem;
  font-weight: 500;
  color: #007BFF;
  line-height: 25px;
  text-decoration: none;
}
.resources-section .card .card-body .card-link:hover {
  color: #002C5B;
}
.resources-section .navigation-row .navigation-left, .resources-section .navigation-row .navigation-right {
  text-decoration: none;
  width: 42px;
  height: 42px;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.resources-section .navigation-row .load-more-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}
.resources-section .navigation-row .load-more-wrapper .load-more{
  font-size: 1rem;
  font-weight: 500;
  color: #007BFF;
  line-height: 25px;
  text-decoration: none;
}
.resources-section .navigation-row .load-more-wrapper .load-more:hover {
  color: #002C5B;
}

@media (min-width: 992px) {
  .resources-container {
    height: 100%;
    padding-bottom: 0;
  }
  .resources-section .content .lead{
    font-size: 1rem;
    font-weight: 500;
  }
  .resources-section .content .title {
    font-size: 2.1875rem;
    line-height: 50px;
    margin-bottom: 4.25rem;
  }
  .resources-section .card .card-body .card-text {
    font-size: 1rem;
  }
  .resources-section .navigation-row .load-more-wrapper {
    text-align: right;
    padding-right: 2rem;
  }
  .resources-section .swiper-wrapper{
     gap: 1rem;
  }
  .resources-section .resource-col {
    width: 32.33333333%;
  }
}
/* end: resources section*/

/* start: testimonials section*/
.testimonial-section {
  background-color: #FAFAFA;
  padding-top: 66px;
  padding-bottom: 60px;
}
.testimonial-container { min-width: 100%; max-width: 100%; padding: 0 20px; }
.testimonial-section .swiper-button-next, .testimonial-section .swiper-button-prev {
  position: relative;
  text-decoration: none;
  width: 42px;
  height: 42px;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-section .swiper-button-next:after, .testimonial-section .swiper-button-prev:after {
  font-size: 1rem;
}
.testimonial-section .swiper-button-prev, .testimonial-section .swiper-rtl .swiper-button-next {
  left: 0;
}
.testimonial-section .swiper-button-next, .testimonial-section .swiper-rtl .swiper-button-prev {
  right: 0;
}
.testimonial-container.swiper {
  width: 100%;
  padding-bottom: 1.5rem;
}
.testimonial-section .content {
  text-align: center;
}
.testimonial-section p, .testimonial-section h3, .testimonial-section h5{
  margin: 0;
}
.testimonial-section .content .lead{
  font-size: 0.875rem;
  font-weight: bold;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
}
.testimonial-section .content .title {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 1.5rem;
}
.testimonial-section .card {

  margin: 0 auto;
  margin-bottom: 1rem;
  border-radius: 10px 10px 0 0;
}
.testimonial-section .card img{
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  border-radius: 10px 10px 0 0;
  vertical-align: bottom;
}
.testimonial-section .card .card-body{
  text-align: center;
  padding: 2rem;
  border-radius: 0 0 10px 10px;
  background: rgb(238, 238, 238);
  display: flex;
    align-items: center;
    flex-direction: column;
}
.testimonial-section .card .card-body .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 30px;
  margin-bottom: 1rem;
}
.testimonial-section .card .card-body .card-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #002C5B;
  line-height: 28px;
  margin-bottom: 2.5rem;
}
.testimonial-section .card .card-body a {
  border-radius: 2rem;
    padding: .8rem 1.3rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
   margin-top: auto;
}
.testimonial-section .card .card-body a:hover {
    background-color: #007bff;
    color: #fff;
}

.testimonial-section .card .card-body .card-link:hover {
  color: #002C5B;
}
.testimonial-section .navigation-row .navigation-left, .testimonial-section .navigation-row .navigation-right {
  text-decoration: none;
  width: 42px;
  height: 42px;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-section .navigation-row .load-more-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}
.testimonial-section .navigation-row .load-more-wrapper .load-more{
  font-size: 1rem;
  font-weight: 500;
  color: #007BFF;
  line-height: 25px;
  text-decoration: none;
}
.testimonial-section .navigation-row .load-more-wrapper .load-more:hover {
  color: #002C5B;
}
.testimonial-section .navigation-wrapper { margin-top: 2rem; }

@media (min-width: 992px) {
  .testimonial-container {
    height: 100%;
    padding-bottom: 0;
  }
  .testimonial-section .content .lead{
    font-size: 1rem;
    font-weight: 500;
  }
  .testimonial-section .content .title {
    font-size: 2.1875rem;
    line-height: 50px;
    margin-bottom: 4.25rem;
  }
  .testimonial-section .card .card-body .card-text {
    font-size: 1rem;
  }
  .testimonial-section .navigation-row .load-more-wrapper {
    text-align: right;
    padding-right: 2rem;
  }
  .testimonial-section .swiper-wrapper{
     gap: 1rem;
    justify-content: center;
  }
  .testimonial-section .testimonial-col {
    width: calc(100% / 3 - 0.667rem);
  }
}
/* end: testimonials section*/

/* start: faq section*/
.faq-section {
  padding-top: 90px;
}
.faq-section.bg-gray {
  background-color: #FAFAFA;
}
.faq-section .content {
  text-align: center;
}
.faq-section p, .faq-section h3, .faq-section h5{
  margin: 0;
}
.faq-section p{
  line-height: 1.5;
}
.faq-section .content .lead{
  font-size: 0.875rem;
  font-weight: 500;
  color: #007BFF;
  line-height: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.faq-section .content .title {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 1.5rem;
}
.faq-section .content .desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: #002C5B;
  line-height: 26px;
  margin-bottom: 1.5rem;
}
/* Accordion styles */
.faq-section .tabs {
  border-radius: 8px;
  overflow: hidden;
}

.faq-section .tab {
  width: 99%;
  color: #333333;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #DEDEDE;
  max-width: 368px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.faq-section .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
  /* Icon */
}
.faq-section.bg-gray .tab-label {
  background: #FAFAFA;
}
.faq-section .tab-label:hover {
  background: #ffffff;
}
.faq-section.bg-gray .tab-label:hover {
  background: #FAFAFA;
}
.faq-section .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  color: #007BFF;
  transition: all 0.35s;
}
.faq-section .tab-content {
  max-height: 0;
  padding: 0 1em;
  color:#333333;
  background: white;
  transition: all 0.35s;
}
.faq-section.bg-gray .tab-content {
  background: #FAFAFA;
}
.faq-section .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75rem;
  background: #ffffff;
  cursor: pointer;
}
.faq-section.bg-gray .tab-close {
  background: #FAFAFA;
}
.faq-section .tab-close:hover {
  background: #ffffff;
}
.faq-section.bg-gray .tab-close:hover {
  background: #FAFAFA;
}
.faq-section input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq-section input:checked + .tab-label {
  background: #ffffff;
}
.faq-section.bg-gray input:checked + .tab-label {
  background: #FAFAFA;
}
.faq-section input:checked + .tab-label::after {
  transform: rotate(90deg);
  margin-top: 0.5rem;
}
.faq-section input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
@media (min-width:992px) {
  .faq-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .faq-section .content .lead{
    font-size: 1rem;
  }
  .faq-section .content .title {
    font-size: 2.5rem;
    line-height: 50px;
  }
  .faq-section .content .desc {
    font-size: 1rem;
    margin-bottom: 4.5rem;
  }
  .faq-section .tab-label {
    font-size: 1.25rem;
  }
  .faq-section .tab {
    max-width: 570px;
  }
}
/* end: faq section*/
/* start: promotion banner*/
.promotion-banner {
  padding-top: 68px;
  padding-bottom: 112px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promotion-banner .content {
  text-align: center;
}
.promotion-banner p, .promotion-banner h3, .promotion-banner h5{
  margin: 0;
}
.promotion-banner p{
  line-height: 1.5;
}
.promotion-banner .content .lead{
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.promotion-banner .content .title{
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 50px;
  color: #ffffff;
  margin-bottom: 3.75rem;
}
.promotion-banner .result-col {
  max-width: 345px;
}
.promotion-banner .result-row .result-item {
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 5px;
  height: 100%;
}
.promotion-banner .result-item .number {
  font-size: 6.25em;
  font-weight: bold;
  color: #007BFF;
  line-height: normal;
}
.promotion-banner .result-item .label {
  font-size: 1.125em;
  font-weight: bold;
  color: #007BFF;
  line-height: 28px;
  margin-bottom: 1rem;
}
.promotion-banner .result-item .desc {
  font-size: 1em;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
  min-height: 90px;
}
.promotion-banner .result-item .foot {
  font-size: 0.875em;
  font-weight: bold;
  color: #002C5B;
  line-height: 28px;
  text-transform: uppercase;
}
/* end: promotion banner*/
/* start: showcase section*/
.showcase-section {
  background-color: #F2F2F2;
  padding-top: 106px;
  padding-bottom: 106px;
}
.showcase-section .showcase-col{
  max-width: 100%;
}
.showcase-section .showcase-item{
  background-color: #ffffff;
  border-radius: 5px;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.showcase-section .showcase-item.wide{
  flex-direction: column;
  align-items: center;
}
.showcase-section .showcase-item.img-full{
  justify-content: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.showcase-section .showcase-item.bg-blue{
  background-color: #002C5B;
  position: relative;
  overflow: hidden;
} 
.showcase-section .showcase-item.img-full::before{
  content: '';
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: url('/UABOnline/images/bottom-wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
}
.showcase-section .showcase-item.bg-blue:not(.wide)::before {
  content: '';
  position: absolute;
  top: -7%;
  right: 0;
  background-image: url('/UABOnline/images/half-wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 50%;
  max-width: 250px;
  transform: rotateZ(-180deg);
}
.showcase-section .showcase-item.bg-blue:not(.wide)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: url('../images/half-wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 50%;
  max-width: 250px;
}
.showcase-section .showcase-item.bg-blue.wide::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('../images/wide-wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 70%;
  height: 90%;
}
.showcase-section p, .showcase-section h3, .showcase-section h5{
  margin: 0;
}

.showcase-section .showcase-item.bg-wave {
  background-color: #007BFF;
}
.showcase-section .showcase-item.bg-wave .image-content .content {
  margin-bottom: 1rem;
  padding-top: 0px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.showcase-section .showcase-item .content {
  margin-bottom: 2rem;
  padding-top: 80px;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  text-align: center;
  z-index: 1;
}
.showcase-section .showcase-item.img-full .content {
  margin-bottom: 0;
  padding-bottom: 40px;
  z-index: 1;
}
.showcase-section .showcase-item .content .lead{
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing:2.4px;
  margin-bottom: 20px;
}
.showcase-section .showcase-item .content .title{
  font-size: 1.5625em;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 0.5rem;
}
.showcase-section .showcase-item.img-full .content .title{
  color: #ffffff;
}
.showcase-section .showcase-item.bg-blue .content .title,
.showcase-section .showcase-item.bg-wave .content .title {
  color: #ffffff;
}

.showcase-section .showcase-item .content .desc{
  font-size: 0.875em;
  font-weight: 400;
  color: #002C5B;
  line-height: 26px;
  margin-bottom: 0.5rem;
}
.showcase-section .showcase-item.img-full .content .desc{
  color: #ffffff;
}
.showcase-section .showcase-item.bg-blue .content .desc,
.showcase-section .showcase-item.bg-wave .content .desc {
  color: #ffffff;
}
.showcase-section .showcase-item .content .cta-link{
  font-size: 1em;
  font-weight: 500;
  color: #007BFF;
  line-height: 25px;
}
.showcase-section .showcase-item .content .cta-link:hover {
  color: #002C5B;
}
.showcase-section .showcase-item.bg-blue .content .cta-link:hover {
  color: #FFFFFF;
}
.showcase-section .showcase-item .media {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
}
.showcase-section .showcase-item.bg-blue .media {
  margin-left: auto;
  margin-right: 0px;
  z-index: 1;
}
.showcase-section .showcase-item.wide .media {
  padding-top: 0px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 0px;
  margin: unset;
}
.showcase-section .showcase-item.no-padding-right .media {
  padding-top: 0px;
  padding-left: 60px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.showcase-section .showcase-item .media img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.showcase-section .showcase-item {
  position: relative;
}
.showcase-section .showcase-container {
  row-gap: 3rem;
}
.showcase-section .showcase-item .showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: bottom;
}

.showcase-section .showcase-item.bg-wave .showcase-image{
  min-height:350px;
}

.showcase-section .showcase-item .image-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.showcase-section .showcase-item .image-content .wave-showcase {
background: transparent;
  position: absolute;
/*   transform: scalex(-3) scaleY(7); */
/*   left: 40%; */
/*   bottom: 28%; */
  z-index: 1;
/*   filter: invert(46%) sepia(81%) saturate(6050%) hue-rotate(200deg) brightness(103%) contrast(105%); */
}
.showcase-section .showcase-item .image-content .content {
  position: relative;
  z-index: 2;
  padding-left: 40px;
  margin-bottom: 42px;
  width: 60%;
}

.showcase-section .showcase-item .image-content .wave-showcase{
  left:auto;
    right:0px;
}

.showcase-section .showcase-item .image-content .wave-showcase.wave-mbl{
  left:0;
  width:100%;
  bottom:0px;
}

  .showcase-section .showcase-item.bg-wave .content .title {
    width: 80%;
  }

@media (min-width: 768px){
  .showcase-section .showcase-item .image-content .wave-showcase{
    width:100%;
    bottom:0;
  }
}

@media (min-width:992px) {
  .showcase-section .showcase-col{
    max-width: 47.4%;
  }
  .showcase-section .showcase-item .content {
    margin-bottom: 5rem;
    padding-top: 80px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .showcase-section .showcase-item:not(.wide) .content {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
    width: 77%;
  }
  .showcase-section .showcase-item .content .lead {
    font-size: 1em;
    line-height: 44px;
    letter-spacing:3px;
    margin-bottom:0;
  }
  .showcase-section .showcase-item .content .title {
    font-size: 1.5em;
    line-height: 1.5;
  }
  
  .showcase-section .showcase-item .content .desc {
    font-size: 1em;
    line-height: 28px;
    /*max-width:421px;*/
  }
  .showcase-section .showcase-item.wide {
    flex-direction: row;
  }
  .showcase-section .showcase-item.wide .media {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .showcase-section .showcase-item.no-padding-right .media {
    padding-top: 80px;

    padding-bottom: 80px;
  }
  .showcase-section .showcase-item.wide .media {
    margin: 0 auto;
  }
  .showcase-section .showcase-item .image-content .wave-showcase {
/*     transform: scalex(-3) scaleY(6); */
    left: -1px;
    bottom: -1px;
    right:auto;
  }
  .showcase-section .showcase-container {
      row-gap: 3rem;
      column-gap: 3rem;
  }
  .showcase-section .showcase-item.bg-wave .content .title {
    width: 66%;
  }
}

@media (min-width:1200px){
  .showcase-section .showcase-col{
    max-width: 47.8%;
  }
  
  .showcase-section .showcase-item .content .title {
    font-size: 2.5em;
    line-height: 50px;
  }
}

@media (min-width:1400px){
  .showcase-section .showcase-col{
    max-width: 48%;
  }
}
/* end: showcase section*/
/* start: packages section*/
.packages-section {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 100px;
}
.packages-section.features-wrapper{
  padding-top:0;
  padding-bottom:0;
}
.packages-section .content {
  text-align: center;
}
.packages-section.uab-pb-0 {
  padding-bottom: 0;
}
.packages-section p, .packages-section h3, .packages-section h5{
  margin: 0;
}
.packages-section p{
  line-height: 1.5;
}
.packages-section .content .lead{
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.packages-section .content .title{
  font-size: 1.5625em;
  font-weight: 600;
  line-height: 35px;
  color: #002C5B;
  margin-bottom: 2rem;
}
.packages-section .package-filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
}
.packages-section .package-filter ul li{
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.packages-section .package-filter ul li a {
  background-color: #F5F8FD;
  color: #007BFF;
  text-decoration: none;
  width: 100%;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.8125em;
  font-weight: 600;
  line-height: 20px;
}
.packages-section .package-filter ul li a:is(:hover) {
  border: 3px solid #A8D2FF;
  color: #007BFF;
}
.packages-section .package-filter ul li a:is(:focus) {
  background-color: #007BFF;
  color: #ffffff;
}
.packages-section .package-filter ul li.active a {
  background-color: #007BFF;
  color: #ffffff;
}
.packages-section .package-content-wrapper {
  margin-top: 3rem;
}

.packages-section .package-content-wrapper.features{
  margin-top: 0;
}

.packages-section.uab-pb-0 .package-content-wrapper {
  margin-top: 0;
}
.packages-section .package-content{
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: 0;
}
.packages-section .package-content.active {
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
}
.packages-section .package-content.active.swiper {
  min-height: 600px;
  padding-bottom: 5.5rem;
}

.packages-section .package-content .package-content-title {
  font-size: 1.5625em;
  font-weight: 600;
  color: #007BFF;
  line-height: 1.2;
  margin-bottom:1rem;
}
.packages-section .package-content .package-item-wrapper{
  align-items: center;
}
.packages-section .package-content .package-item-wrapper.bg-lightblue{
  background-color: #F8FAFF;
  border-radius: 5px;
  padding: 1.5rem;
}
.packages-section .package-content .package-item-wrapper .content-text{
  margin-bottom: 1.5rem;
}
.packages-section .package-content .package-item-wrapper .content-text .lead {
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  text-transform: uppercase;
  line-height: 32px;
}
.packages-section .package-content .package-item-wrapper .content-text .title {
  font-size: 1.5625em;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 0.5rem;
}
.packages-section .package-content .package-item-wrapper .content-text .desc {
  font-size: 0.875em;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
  margin-bottom: 1rem;
}
.packages-section .package-content .package-item-wrapper .content-text .cta-box {
  gap: 1.5rem;
  align-items: center;
}
.packages-section .package-content .package-item-wrapper .content-text .btn-cta {
  padding: 8px 30px;
}
.packages-section .package-content .package-item-wrapper .content-text .cta-link {
  font-size: 1em;
  font-weight: 500;
  color: #007BFF;
}
.packages-section .package-content .package-item-wrapper .content-icon{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.packages-section .package-content .package-item-wrapper .content-icon .icon-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.packages-section .package-content .package-item-wrapper .content-icon .icon-box .icon{
  width: 56px;
  height: 56px;
  background-color: #007BFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width:56px;
  max-width:56px;
}
.packages-section .package-content .package-item-wrapper .content-icon .icon-box img{
  width: 100%;
  max-width: 24px;
  object-fit: cover;
  object-position: center;
}
.packages-section .package-content .package-item-wrapper .content-icon .icon-box .label{
  font-size: 1em;
  font-weight: 400;
  color: #002C5B;
}
.packages-section .package-content .package-item{
  flex: 1 0 auto;
  width: 100%;
  height: 100%;
  max-width: 260px;
  min-height: 450px;
/*   max-height: 500px; */
  background-color: #F5F8FD;
  border-radius: 21px;
  padding: 1.5rem;
  padding-top: 2.8125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.packages-section .package-content .package-item.featured{
  min-height: 492px;
  background-color: #ffffff;
  border: 3px solid #F75C03;
  position: relative;
  padding-top: 3.125rem;
}
.packages-section .package-content .package-item.featured .floating-label-wrapper{
  position: absolute;
  top: -1px;
  right: -2px;
  background-color: #F75C03;
  border-radius: 0px 21px;
  padding: 8px 21px;
  text-align: center;
}
.packages-section .package-content .package-item.featured .floating-label-wrapper span{
  font-size: 0.6875em;
  font-weight: 600;
  color: #ffffff;
}
.packages-section .package-content .package-item .package-header{
  width: 100%;
  text-align: center;
  min-height: 90px;
  margin-bottom: 2.25rem;
}
.packages-section .package-content .package-item .package-header .title{
  font-size: 1.375em;
  font-weight: 600;
  color: #002C5B;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.packages-section .package-content .package-item .package-header .label{
  font-size: 0.6875em;
  font-weight: 600;
  color: #007BFF;
  text-transform: uppercase;
}
.packages-section .package-content .package-item .package-header .price{
  font-size: 1.5625em;
  font-weight: 600;
  color: #007BFF;
  text-transform: uppercase;
  line-height: 38px;
}
.packages-section .package-content .package-item .package-body{
  width: 100%;
  min-height: 97px;
  padding-bottom: 20px;
}
.packages-section .package-content .package-item .package-body .desc,
.packages-section .package-content .package-item .package-body p {
  font-size: 0.875em;
  font-weight: 400;
  color: #002C5B;
  line-height: 26px;
  text-align: center;
}
.packages-section .package-content .package-item .package-footer{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.packages-section .package-content .package-item .package-footer .cta-btn{
  width: 100%;
  background-color: #007BFF;
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  padding: 12px 4px;
  text-decoration: none;
  white-space: nowrap;
}
.packages-section .package-content .package-item .package-footer .cta-btn:hover {
  background-color: #002C5B;
}
.packages-section .package-content .package-item .package-footer .read-more{
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
}
.packages-section .package-content .package-item .package-footer .read-more:hover {
  color: #002C5B;
}
.packages-section .swiper-button-next, .packages-section .swiper-button-prev {
  position: relative;
  text-decoration: none;
  width: 42px;
  height: 42px;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  font-weight: bold;
}
.packages-section .swiper-button-next:after, .packages-section .swiper-button-prev:after {
  font-size: 1em;
}
.packages-section .swiper-button-prev, .packages-section .swiper-rtl .swiper-button-next {
  left: 0;
}
.packages-section .swiper-button-next, .packages-section .swiper-rtl .swiper-button-prev {
  right: 0;
}
@media (min-width:992px) {
  .packages-section {
    padding-top: 100px;
  }
  .packages-section .package-content.active.swiper {
    height: 100%;
    padding-bottom: 0;
  }
  .packages-section .package-content-wrapper {
    margin-top: 4.5rem;
  }
  .packages-section .package-content-wrapper.features{
    margin-top: 0;
  }

  .packages-section .package-content .package-item-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .packages-section .content .lead{
    font-size: 1em;
  }
  .packages-section .content .title{
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 3.75rem;
  }
  .packages-section .package-content .package-item{
    width: 17%;
    margin-left: 5px;
    margin-right: 5px;
  }
  .packages-section .package-content .package-item .package-header .title {
    font-size: 1.7rem !important;
  }
  .packages-section .package-filter ul {
    row-gap: 1.5rem;
    column-gap: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .packages-section .package-filter ul li{
    max-width: 213px;
  }
  .packages-section .package-filter ul li a {
    padding: 12px;
    font-size: 0.775em;
    line-height: 32px;
    background-color: #ffffff;
    border: 3px solid #F5F8FD;
  }
  .packages-section .package-content .package-item{
    min-height: 620px;
/*     max-height: 620px; */
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .packages-section .package-content .package-item.featured{
    min-height: 670px;
/*     max-height: 670px; */
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .packages-section .package-content .package-item .package-footer .cta-btn{
    max-width: 184px;
    font-size: 0.875em;
  }
  .packages-section .package-content .package-content-title {
    font-size: 1.875em;
    margin-bottom: 2rem;
  }
  .packages-section .package-content .package-item-wrapper.bg-lightblue{
    justify-content: flex-start;
    padding: 5rem 4rem;
  }
  .packages-section .package-content .package-item-wrapper .content-text, .packages-section .package-content .package-item-wrapper .content-icon{
    flex: 0 0 auto;
    width: 50%;
  }
  .packages-section .package-content .package-item-wrapper .content-icon{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
  }
  .packages-section .package-content .package-item-wrapper .content-text-wrapper {
    max-width: 70%;
  }
  .packages-section .package-content .package-item-wrapper .content-text .lead{
    font-size: 1em;
  }
  .packages-section .package-content .package-item-wrapper .content-text .title{
    font-size: 2.1875em;
    line-height: 50px;
  }
  .packages-section .package-content .package-item-wrapper .content-text .desc{
    font-size: 1em;
  }
  .packages-section .package-content .package-item-wrapper .content-text .btn-cta{
    font-size: 1em;
    padding: 14px 30px;
  }
}

@media (min-width:1200px){
  .packages-section .package-content .package-item{
    min-height: 500px;
/*     max-height: 500px; */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .packages-section .package-content .package-item.featured{
    min-height: 550px;
/*     max-height: 550px; */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .packages-section .package-content .package-item .package-header .title {
    font-size: 2rem !important;
  }
    .packages-section .package-content .package-item .package-footer .cta-btn{
    font-size: 1em;
  }
}
@media (min-width:1700px) {
  .packages-section .package-content .package-item{
    min-height: 488px;
/*     max-height: 488px; */
  }
  .packages-section .package-content .package-item.featured{
    min-height: 533px;
/*     max-height: 533px; */
  }
}
/* end: packages section*/
/* start: possibilities section*/
.possibilities-section {
  background-color: #ffffff;
  padding-bottom: 40px;
}
.possibilities-section.bg-blue {
  padding-top: 60px;
  background-color: #002C5B;
}
.possibilities-section .content {
  text-align: center;
}
.possibilities-section p, .possibilities-section h3, .possibilities-section h5{
  margin: 0;
}
.possibilities-section p{
  line-height: 1.5;
}
.possibilities-section .content .lead{
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
}
.possibilities-section .content .title{
  font-size: 1.5625em;
  font-weight: 600;
  line-height: 35px;
  color: #002C5B;
  margin-bottom: 0.5rem;
}
.possibilities-section.bg-blue .content .title{
  color: #ffffff;
}
.possibilities-section .content .desc{
  font-size: 0.875em;
  font-weight: 400;
  color: #002C5B;
  line-height: 26px;
}
.possibilities-section.bg-blue .content .desc{
  color: #ffffff;
}
.possibilities-section .possibilities-filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
}
.possibilities-section .possibilities-filter ul li{
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.possibilities-section .possibilities-filter ul li a {
  background-color: #F5F8FD;
  color: #007BFF;
  text-decoration: none;
  width: 100%;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.8125em;
  font-weight: 600;
  line-height: 20px;
}
.possibilities-section .possibilities-filter ul li a:is(:hover, :focus) {
  background-color: #007BFF;
  color: #ffffff;
}
.possibilities-section .possibilities-filter ul li.active a {
  background-color: #007BFF;
  color: #ffffff;
}
.possibilities-section .possibilities-content {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.possibilities-section .possibilities-content.active {
  width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-in-out;
}
.possibilities-section .possibilities-content .possibilities-item .title {
  font-size: 1.25em;
  font-weight: 600;
  color: #002C5B;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.possibilities-section.bg-blue .possibilities-content .possibilities-item .title {
  color: #ffffff;
}
.possibilities-section .possibilities-content .possibilities-item .desc p {
  font-size: 0.875em;
  font-weight: 400;
  color: #002C5B;
  line-height: 28px;
  margin-bottom: 1rem;
}
.possibilities-section.bg-blue .possibilities-content .possibilities-item .desc p {
  color: #ffffff;
}
.possibilities-section .possibilities-content .possibilities-item img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.possibilities-section .possibilities-content .possibilities-item .head .icon-box {
  display: none;
}
@media (min-width: 992px) {
  .possibilities-section {
    padding-top: 126px;
    padding-bottom: 156px;
  }
  .possibilities-section.bg-blue {
    padding-top: 126px;
    padding-bottom: 156px;
  }
  .possibilities-section .uab-col-lg-6{
    max-width: 45%;
  }
  .possibilities-section .content{
    text-align: left;
  }
  .possibilities-section .content .lead{
    font-size: 1em;
    letter-spacing: 3px;
  }
  .possibilities-section .content .title{
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 1rem;
  }
  .possibilities-section .content .desc{
    font-size: 1em;
  }
  .possibilities-section .possibilities-filter ul li a{
    padding: 16px 20px;
    font-size: 1.25em;
    font-weight: 500;
  }
  .possibilities-section.bg-blue .possibilities-content.active {
    background-color: #ffffff;
    border-radius: 5px;
  }
  .possibilities-section .possibilities-content .possibilities-item{
    padding: 2.5rem;
  }
  .possibilities-section .possibilities-content .possibilities-item .title {
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 0;
  }
  .possibilities-section.bg-blue .possibilities-content .possibilities-item .title {
    color: #007BFF;
  }
  .possibilities-section .possibilities-content .possibilities-item .desc p {
    font-size: 1em;
    line-height: 28px;
  }
  .possibilities-section.bg-blue .possibilities-content .possibilities-item .desc p {
    color: #002C5B;
  }
  .possibilities-section .possibilities-content .possibilities-item .head{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .possibilities-section .possibilities-content .possibilities-item .head .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007BFF;
    width: 75px;
    height: 75px;
    border-radius: 50%;
  }
  .possibilities-section .possibilities-content .possibilities-item .head .icon-box img {
    width: 100%;
    max-width: 32px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
  }
}
/* end: possibilities section*/
.content-section  {
    margin-top: 75px;
}

.content-section.share-section{
  margin-top:0;
}

.content-section .content-wrapper {
    margin-bottom: 10px;
}
.content-section .content-wrapper .title,
.content-section .content-wrapper h2 {
    font-size: 1.5625rem;
    line-height: 35px;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 0px;
}
.content-section .content-wrapper .subtitle,
.content-section .content-wrapper h3 {
    font-size: 1.5625rem;
    line-height: 35px;
    font-weight: 600;
    color: #002C5B;
    margin-bottom: 0px;
}
.content-section .content-wrapper p {
    font-size: 0.875rem;
    line-height: 28px;
    font-weight: 400;
    color: #002C5B;
}
.content-section .content-wrapper ul {
	padding-left: 0px;
  list-style-type: none;
	margin-top: 40px;
	margin-bottom: 16px;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.content-section .content-wrapper ul li {
    font-size: 0.875rem;
    line-height: 28px;
    font-weight: 400;
    color: #002C5B;
    display: flex;
    align-items: flex-start;
}
.content-section .content-wrapper ul li::before {
    content: '●';  
    margin-right: 14px; 
    font-size: 1.75rem;
    color: #007BFF;
}
.content-section .share-link {
    justify-content: center;
}
.content-section .share-link p {
    margin-right: 0px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 35px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}
.content-section .share-link .socmed-links a:hover {
    background-color: #002C5B;
    color: #FFFFFF;
}
.person-demo {
    padding-top: 74px;
    padding-bottom: 74px;
    margin-top: 110px;
}
.person-demo .uab-container {
    column-gap: 10rem;
    row-gap: 2.5rem;
}
.person-demo .text-container {
    text-align: center;
}
.person-demo .demo-button {
    background-color: #F75C03;
    text-decoration: none;
    padding: 14px 30px;
    border: 2px solid #F75C03;
    border-radius: 32px;
    font-size: 0.875rem;
    line-height: 21px;
    font-weight: 700;
    color: #fff;
}
.person-demo .demo-button:hover {
    background-color: transparent;
    color: #F75C03;
}
.person-demo .subtitle {
    font-size: 0.875rem;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: 3.38px;
    color: #007BFF;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 0px;
}
.person-demo .title {
    font-size: 1.5rem;
    line-height: 35px;
    font-weight: 600;
    color: #002C5B;
    margin-top: 0px;
    margin-bottom: 0px;
}
.person-demo p {
    font-size: 0.875rem;
    line-height: 32px;
    font-weight: 400;
    color: #002C5B;
    margin-bottom: 40px;
    max-width:329px;
  margin-left:auto;
  margin-right:auto;
}
.person-demo .img-box {
    display: flex;
    position: relative;
}
.person-demo .img-box img {
    margin: auto;
    padding: 0 0.5rem;
    width: 100%;
    max-width: 300px;
}
.person-demo .img-box img.person-profile {
    position: absolute;
    width: 80px;
    height: auto;
    left: 0;
    bottom: 12%;
    z-index: 9;   
}

.hs-cta-wrapper .cta_button p{
  margin-bottom:0;
  line-height: 1.5;
} 

@media (min-width: 992px) {
    .content-section  {
        margin-top: 90px;
    }
    .content-section .content-wrapper {
        margin-bottom: 30px;
    }
    .content-section .content-wrapper .title,
  .content-section .content-wrapper h2 {
        font-size: 2.5rem;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .content-section .content-wrapper .subtitle,
  .content-section .content-wrapper h3 {
        font-size: 1.875rem;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .content-section .content-wrapper p {
        font-size: 1rem;
        line-height: 28px;
    }
    .content-section .content-wrapper ul {
        margin-top: 30px;
        margin-bottom: 24px;
    }
    .content-section .content-wrapper ul li {
        font-size: 1em;
        line-height: 28px;
        align-items: center;
    }
    .content-section .content-wrapper ul li::before {
        font-size: 1.875rem;
    }
    .content-section .share-link {
        justify-content: start;
    }
    .content-section .share-link p {
        text-align: left;
        margin-right: 26px;
        margin-bottom: 0px;
    }
    .person-demo {
        padding-top: 100px;
        padding-bottom: 60px;
    }
  
    .person-demo .uab-container{
        column-gap: 2rem;
        justify-content: center;
    }
  
    .person-demo .img-box img.person-profile {
        width: 170px;
    }
    .person-demo .img-box img {
        max-width: 100%;
    }
    .person-demo .text-container {
        text-align: left;
    }
    .person-demo .subtitle {
        font-size: 1.125em;
        line-height: 36px;
    }
    .person-demo .title {
        font-size: 2.5em;
        line-height: 50px;
        margin-top: 10px;
        padding-right: 100px;
        margin-bottom: 24px;
    }
    .person-demo p {
        font-size: 1rem;
        line-height: 32px;
        margin-bottom: 42px;
        margin-left:0;
        max-width:358px;
    }
}
.news-banner::before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 480px;
    width: 100%;
    background-image: url('../images/Mask%20Group%2010.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    --triangle-height: 93%; /* you can change this */
    clip-path: polygon(100% 0, 100% var(--triangle-height), 50% 100%, 0 var(--triangle-height), 0 0);
}

.news-banner {
    min-height: 580px;
    display: flex;
    align-items: end;
}

.news-banner .uab-container {
    display: flex;
    justify-content: center;
}

.news-banner .banner-container {
    background: #fff;
    border-radius: 0.25rem;
    width: 100%;
    border-bottom: 0.5rem solid #007BFF;
    padding: 20px 30px;
}

.news-banner .subtitle {
    font-size: 0.875em;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2.63px;
    color: #007BFF;
    margin-bottom: 0px;
}

.news-banner .title {
    font-size: 1.5625em;
    font-weight: 700;
    line-height: 30px;
    color: #002C5B;
    margin-top: 0px;
    margin-bottom: 0px;
}

.news-banner .content {
    font-size: 0.875em;
    font-weight: 400;
    line-height: 24px;
    color: #002C5B;
}

@media screen and (min-width: 992px) {
    .news-banner::before {
        height: 800px;
    }

    .news-banner {
        align-items: center;
        min-height: 640px;
    }

    .news-banner .uab-container {
        display: flex;
        justify-content: start;
    }

    .news-banner .banner-container {
        width: 46%;
        padding-top: 1rem;
        padding-bottom: 0px;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }

    .news-banner .title {
        font-size: 2.5em;
        line-height: 50px;
    }

    .news-banner .content {
        font-size: 1.25em;
        line-height: 32px;
    }
}


section.section-news{
    padding-top: 90px;
}
section.section-news img{
    width: 100%;
}
section.section-news .img-news{
    max-width: 100%;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
section.section-news .news-wrapper .date-title{
    color: #007BFF;
    margin-top: 15px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 3px;
    line-height: 32px; 
    font-family:'poppins'; 
}

section.section-news .news-wrapper .read-time { display: inline-block; margin: 0;}

section.section-news .news-wrapper .title{
    color: #002C5B;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25em;
    display: block;
    line-height: 30px;  
    font-family:'poppins';
}

section.section-news .news-wrapper .desc p {
    color: #002C5B;
    font-weight: 400;
    font-size: 0.875em;
    display: block;
    line-height: 28px;  
    font-family:'poppins';
    margin-top: 5px;
    margin-bottom: 0px;
}

section.section-news .news-wrapper .read-more{
    color: #007BFF;
    margin-top:15px;
    font-weight: 500;
    font-size: 1em;
    display: block;
    line-height: 25px;
    font-family:'poppins';  
}
section.section-news .news-wrapper .read-more span:hover{
    color: #002C5B;
}
section.pagination{
    text-align: center;
}

section.pagination ul.pagination-wrapper{
    list-style-type:none;
}
section.pagination ul.pagination-wrapper>li{
    display: inline;
    margin: 15px 15px;
}
section.pagination ul.pagination-wrapper>li .pagination-item{
    font-family: 'poppins';
    color:#002C5B;
    font-weight: 600;
    font-size: 1.25em;
}
section.pagination ul.pagination-wrapper>li .pagination-item:active {
    color: #007BFF;
}
section.pagination ul.pagination-wrapper>li .pagination-item.active {
    color: #007BFF;
}
@media (min-width:480px){
    section.section-news .img-news{
        max-width: 360px;
        height: 280px;
    }
}

@media (min-width:992px){
    section.spacer{
        padding-top: 80px;
    }
    section.section-news{
        padding-top: 56px;
    }
    section.section-news .news-wrapper{
        padding-left: 4%;
        max-width: 61%;
    }
    section.section-news .img-news{
        max-width: 442px;
        height: 300px;
    }
    section.section-news .news-wrapper .title{
        margin-top: 0rem;
        margin-bottom: 1rem;
        font-weight: 600;
        font-size: 2.1875em;
        display: block;
        line-height: 45px; 
    }
    section.section-news .news-wrapper .desc p{
        max-width:85%;
        font-size: 1em;
        margin-top: 15px;
    }
}

@media (max-width:399px){
  section.section-news .news-wrapper .date-title { font-size: 0.75em; }
}
.grid-2cols-section {
  padding-top: 42px;
  padding-bottom: 88px;
}
.grid-2cols-section.bg-gray {
  background-color: #FAFAFA;
}
.grid-2cols-section .content-media img{
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.grid-2cols-section .content-text p, .grid-2cols-section .content-text h3 {
  margin: 0;
}
.grid-2cols-section .content-text p {
  line-height: 1.5;
}
.grid-2cols-section .content-text{
  margin-bottom: 2.5rem;
}
.grid-2cols-section .content-text .lead {
  font-size: 0.875em;
  font-weight: 500;
  color: #007BFF;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.grid-2cols-section .content-text .title {
  font-size: 1.5625em;
  font-weight: 600;
  color: #002C5B;
  line-height: 35px;
  margin-bottom: 1rem;
}
.grid-2cols-section .content-text .desc p {
  font-size: 1em;
  font-weight: normal;
  color: #002C5B;
  line-height: 28px;
  margin-bottom: 1.4rem;
}
.grid-2cols-section .content-text .cta-link {
  font-size: 1em;
  font-weight: 500;
  color: #007BFF;
  line-height: 25px;
  text-decoration: none;
}
.grid-2cols-section .image-left, .grid-2cols-section .image-right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}
.grid-2cols-section .image-right {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .grid-2cols-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .grid-2cols-section .content-text .lead {
    font-size: 1em;
    letter-spacing: 3px;
    line-height: 44px;
    margin-bottom: 0;
  }
  .grid-2cols-section .content-text .title {
    font-size: 2.5em;
    line-height: 50px;
  }

  .grid-2cols-section .uab-col-lg-6 {
    max-width: 46%;
  }
  .uab-pl-lg-4 {
    padding-left: 1.5rem;
  }
  .grid-2cols-section .image-left {
    flex-direction: row;
  }
  .grid-2cols-section .image-right {
    flex-direction: row-reverse;
    margin-top: 130px;
  }
}
.switch-toggle {
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #F4F4F4 !important;
    border-radius: 49px !important;
    box-shadow: none !important;
}

.switch-toggle input:focus~span a, .switch-toggle input:focus+label {
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: #fff !important;
    /* Chrome/Opera gets its native focus styles.
     */
}
.switch-toggle.switch-candy label {
    text-shadow: none !important;
    color: #007BFF !important;
    cursor: pointer;
    font-size: 0.875em;
}
.switch-candy input:checked + label {
    color: #fff !important;
}

.switch-toggle a {
    height: 80% !important;
    border: none !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    border-radius: 40px !important;
    background-color: #007BFF !important;
    box-shadow: none !important;
}

@media (-webkit-min-device-pixel-ratio: 0) {
    .switch-toggle input:focus~span a, .switch-toggle input:focus+label {
        outline-color: -webkit-focus-ring-color;
        outline-style: auto;
    }
}

section.section-description {
    padding-top: 100px;
    box-sizing: border-box;
}

section.section-description .toggle {
    margin-bottom: 48px;
}

section.section-description h2 {
    color: #002C5B;
    font-size: 1.125em;
    line-height: 21px;
    font-weight: 600;
}

section.section-description .description-container {
    margin-top: 40px;
    box-sizing: border-box;
}

section.section-description .text-container {
    padding: 0px;
    box-sizing: border-box;
    flex-direction: column;
}

section.section-description .text-container .title {
    color: #007BFF;
    font-size: 1.5em;
    line-height: 35px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
}

section.section-description .text-container p {
    color: #002C5B;
    font-size: 0.875em;
    line-height: 28px;
    font-weight: 400;
}

section.section-description .blue-box {
    background-color: #F8FAFF;
    margin-bottom: 5rem;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

section.section-description .blue-box {
    row-gap: 2rem;
}

section.section-description .blue-box .icon-container {
    flex-direction: column;
}

section.section-description .blue-box .icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    background: #007BFF;
    border-radius: 50%;
    display: flex;
}

section.section-description .blue-box .icon img {
    margin: auto;
    width: 45%;
}

section.section-description .blue-box .icon-box {
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

section.section-description .blue-box .icon-box p {
    color: #002C5B;
    font-size: 1.25em;
    line-height: 32px;
    font-weight: 500;
    align-self: center;
    width: 54%;
}

section.section-description .blue-box .title {
    letter-spacing: 3px;
    color: #007BFF;
    text-transform: uppercase;
    font-size: 0.875em;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}

section.section-description .blue-box .subtitle {
    color: #002C5B;
    font-size: 1.5625em;
    line-height: 35px;
    font-weight: 600;
    text-align: center;
}

.alle-gegevens .uab-container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.alle-gegevens .subtitle {
    font-size: 0.875em;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 0;
}

.alle-gegevens .title {
    font-size: 1.5625em;
    line-height: 35px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
}

.alle-gegevens .description {
    font-size: 0.875em;
    line-height: 26px;
    font-weight: 400;
}

.alle-gegevens .blue-box {
    background: #F8FAFF;
    max-width: 300px;
    height: auto;
    padding: 1.5rem 2rem;
}

.alle-gegevens .blue-box p {
    color: #002C5B;
    font-size: 1em;
    line-height: 28px;
    font-weight: 400;
}

.alle-gegevens .blue-box .icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    background: #007BFF;
    border-radius: 50%;
    display: flex;
}

.alle-gegevens .blue-box .icon img {
    margin: auto;
    width: 45%;
}

.alle-gegevens .blue-box .icon-box {
    display: flex;
    gap: 1rem;
}

.alle-gegevens .blue-box .icon-box label {
    color: #002C5B;
    font-size: 1.25em;
    line-height: 28px;
    font-weight: 700;
    align-self: center;
}

@media (min-width: 992px) {
    section.section-description .toggle {
        margin-bottom: 100px;
    }
    section.section-description h2 {
        font-size: 1.5em;
        line-height: 28px;
    }
    .switch-toggle {
        height: 98px !important;
    }
    section.section-description .description-container {
        margin-top: 0px;
    }
    section.section-description .text-container {
        padding: 3rem;
        flex-direction: column;
    }
    section.section-description .text-container .title {
        font-size: 2.5em;
        line-height: 50px;
    }
    section.section-description .text-container p {
        font-size: 1em;
        line-height: 28px;
    }
    section.section-description .blue-box .icon-container {
        flex-direction: row;
        row-gap: 1rem;
        column-gap: 3rem;
    }
    section.section-description .blue-box .icon-box {
        align-items: center;
        justify-content: center;
    }
    section.section-description .blue-box .icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        max-width: 75px;
    }
    section.section-description .blue-box .icon img {
        width: 45%;
    }
    section.section-description .blue-box .title {
        font-size: 1em;
        line-height: 32px;
        text-align: left;
    }
    section.section-description .blue-box .subtitle {
        font-size: 2.1875em;
        line-height: 50px;
        text-align: left;
    } 
    .alle-gegevens .uab-container {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .alle-gegevens .subtitle {
        font-size: 1em;
        line-height: 32px;
    }
    .alle-gegevens .title {
        font-size: 2.5em;
        line-height: 50px;
    }
    .alle-gegevens .description {
        font-size: 1em;
        line-height: 28px;
    }
    .alle-gegevens .blue-box {
/*         height: 200px; */
    }
    .alle-gegevens .blue-box .icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        max-width: 75px;
    }
    .alle-gegevens .blue-box .icon-box label {
        font-size: 1.5em;
        line-height: 32px;
    }
    .alle-gegevens .blue-box p {
        font-size: 1.25em;
        line-height: 32px;
    }
  .switch-toggle.switch-candy label {
    font-size: 1em;
  }
}
.header-banner{
    min-height: 480px;
}

/* package icon */
.package-content .navigation-wrapper{
  margin-top:1rem;
}

.arrow-icon{
    font-size: 1.75em;
    width: 42px;
    height: 42px;
    display: block;
    text-align: center;
    margin: auto;
    background: #007BFF;
    border-radius: 50%;
    color: #fff;
    margin-top: 53px;
    cursor: pointer;
}

.package-icon-mobile .arrow-icon{
    background-color: transparent;
    color: #007BFF;
    font-size: 3.4375em;
}

.header-banner .uab-container{
    width: 100%;
}

section.section-description>div .text-container.title,
.pricing-banner .content .title{
    font-size: 1.563em;
    padding: 1rem;
    font-weight: 600;
}

.pricing-banner .content .title{
    padding: 0;
}

.pricing-banner .content .subtitle{
    font-size: 0.875em;
    letter-spacing: 2.63px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 2.285;
    color: #fff;
}

.pricing-banner .next-button-text{
    color: #fff;
    text-align: right;
    font-size: 0.875em;
    position: absolute;
    right: 72px;
    top: -10px;
    max-width: 190px;
}

section.section-description .text-container{
    padding: 1rem;
}

.section-description .uab-col-12{
    flex: auto;
}

/* advantages banner */
.pricing-banner{
    background-color: #007BFF;
    position:relative;
    padding: 39px 23px 98px 23px;
}

.pricing-banner.agent-active{
    background-color: #007BFF;
}

.pricing-banner .result-row .result-item{
    background-color: #FFFFFF;
}


.pricing-banner .uab-container{
    z-index: 1;
    position: relative;
}

.promotion-banner.pricing-banner .result-row .result-item{
    height: auto;
    text-align: left;
}

.pricing-banner .result-col{
    max-width: 100%;
}

.promotion-banner.pricing-banner .result-item .desc{
    font-size: 1.25em;
    line-height: 1.6;
}

.pricing-banner .result-item .title{
    font-size: 1.438em;
    line-height: 1.3;
}

/* advantages mobile slider */
.pricing-banner .swiper-button-next, 
.pricing-banner .swiper-button-prev{
    color: #fff;
    width: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.pricing-banner .swiper-button-next:after,
.pricing-banner .swiper-button-prev:after{
    font-size: 1.25em;
}

.pricing-banner .swiper-button-next:hover, 
.pricing-banner .swiper-button-prev:hover{
    background:#fff;
}

.pricing-banner .swiper-button-next:hover:after, 
.pricing-banner .swiper-button-prev:hover:after{
    color:#0077FB;
}

.pricing-banner .navigation-wrapper{
    position: relative;
}

/* Features style */
.pricing-features-section{
    background-color: #ffffff;
    padding: 0 11px;
    padding-top: 30px;
    padding-bottom: 82px;
    z-index: 1;
    position: relative;
}

.pricing-features-section .title{
    font-size: 1.563em;
    line-height: 1.25;
    font-weight: 600;
}

.pricing-features-section .features-table-wrap,
.pricing-features-section .features-table-wrap table{
    width: 100%;
}

.cross-icon {
  font-size: 1.7rem;
  line-height: 25px;
}

.cross-icon:before {
    content:'\00D7';
    color:#FF0000;
}

.check-icon {
  font-size: 1.7rem;
  line-height: 25px;
}

.check-icon:before {
    content: '\2713';
    color:#5F9B4A;
}

.info-icon:before {
    content:'\2139';
    color:#919191;
    position: relative;
    top: -5px;
    left: 10px;
}

.pricing-features-section .features-table-wrap .feature-content,
.pricing-features-section .features-table-wrap .content-wrap{
    width: 55%;
    font-size: 0.875em;
    font-weight: 600;
    word-break: break-word;
}

.pricing-features-section .features-table-wrap .content-wrap{
    width: 40%;
    color: #007BFF;
    text-align: right;
}

.pricing-features-section .features-table-wrap table td{
    padding:9px 13px;
}

.pricing-features-section .faq-section{
    padding-top: 0;
}

.pricing-features-section .faq-section .tab{
    border: none;
    border-radius: 7px;
    margin-bottom: 23px;
}

.pricing-features-section .faq-section .tab-label{
    background-color: #F5F8FD;
    border-radius: 7px;
    color: #007BFF;
    padding: 1rem 20px 1rem 30px;
    letter-spacing: 0.96px;
    font-weight: 600;
}

.pricing-features-section .faq-section .tab-content{
    padding: 0px;
  visibility:hidden;
}

.pricing-features-section .faq-section input:checked ~ .tab-content{
    max-height: calc(100vh + 1000px);
    padding: 0px;
    padding-top: 37px;
    visibility:visible;
}

.pricing-features-section .faq-section input:checked + .tab-label{
    background-color: #007BFF;
    color: #fff;
}

.pricing-features-section .faq-section input:checked + .tab-label::after {
    color: #fff;
}

.pricing-features-section .compare-feature thead tr th{
    width: 33.33%;
    padding: 0.75rem 0;
    text-align: right;
}

.pricing-features-section .features-table-wrap table{
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-features-section .compare-feature table td{
    border: 1px solid #D5D5D5;
}

.pricing-features-section .compare-feature .tab-label,
.pricing-features-section .faq-section .compare-feature input:checked + .tab-label{
    background-color: #002C5B;
    color: #fff;
}

.pricing-features-section .faq-section .compare-feature input:checked + .tab-label::after {
    color: #007BFF;
}

.pricing-features-section .compare-feature select{
    padding: 6px;
    padding-right:20px;
    font-size: 0.875em;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    color: #002950;
    -moz-appearance:none; 
    -webkit-appearance:none; 
    appearance:none;
    z-index: 1;
    position: relative;
    background: transparent;
}

.pricing-features-section .compare-feature .select-wrap:before{
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    color: #007BFF;
    transition: all 0.35s;
    position:absolute;
    right:5px;
    top:8px;
    font-size:1em;
    transform:rotate(90deg);
}

.compare-feature .select-wrap {
    position:relative;
}


@media screen and (min-width:992px){
    /* header banner */
    .header-banner{
        height: 680px;
    }

    section.section-description>div .text-container.title{
        font-size: 2.5em;
    }

    .text-container{
        /*width: 45%;*/
    }

    /* features style */
    .pricing-features-section{
        background-color: #FAFAFA;
        padding-top: 80px;
        padding-bottom: 123px;
    }

    .pricing-features-section .features-table-wrap .no-content,
    .pricing-features-section .features-table-wrap .feature-content{
        width: 25%;
    }

    .pricing-features-section .features-table-wrap .heading-wrap,
    .pricing-features-section .features-table-wrap .content-wrap{
        width: 12%;
        color: #002950;
    }

    .pricing-features-section .features-table-wrap .heading-wrap .title,
    .pricing-features-section .features-table-wrap .heading-wrap .label,
    .pricing-features-section .features-table-wrap .heading-wrap .price{
        font-weight: 600;
        line-height: 1.5;
    }

    .pricing-features-section .features-table-wrap .heading-wrap .label{
        font-size: 0.75em;
    }

    .pricing-features-section .features-table-wrap .heading-wrap .price{
        font-size: 1.375em;
        padding-bottom: 19px;
        display: block;
    }

    .pricing-features-section .title{
        font-size: 2.5em;
    }

    .pricing-features-section .features-table-wrap .heading-wrap .title{
        font-size: 1.313em;
        line-height: 1.476;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #002950;
    }

    .pricing-features-section .features-table-wrap table td{
        border: 1px solid #D5D5D5;
        padding:0.75rem;
        font-weight: 600;
        text-align: center;
    }

    .pricing-features-section .features-table-wrap .content-wrap{
        text-align: center;
        font-size: 1rem;
        line-height: 25px;
    }

    .pricing-features-section .features-table-wrap .feature-content{
        text-align: left;
        color: #002950;
        font-size: 1rem;
        line-height: 25px;
    }

    .pricing-features-section .package-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 60px;
    }

    .pricing-features-section .package-footer .cta-btn{
        width: 100%;
        background-color: #007BFF;
        color: #ffffff;
        font-size: 0.875em;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 23px;
        padding: 9.5px 0px;
        text-decoration: none;
        max-width: 156px;
        letter-spacing: -0.25px;
    }
    .pricing-features-section .package-footer .cta-btn:hover {
        background-color: #002C5B;
    }

    .pricing-features-section .package-footer .read-more{
        font-size: 0.938em;
        font-weight: 500;
        color: #007BFF;
    }
    .pricing-features-section .package-footer .read-more:hover {
        color: #002C5B;
    }

    /* advantages banner */
    .pricing-banner{
        background-color: #002C5B;
        padding: 68px 0px 112px 0px;
    }

    .pricing-banner:before,
    .pricing-banner:after{
        content:'';
        background-image:url('../images/pricing-banner-img.svg');
        width: 100%;
        height: 100%;
        position:absolute;
        top: 0;
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .pricing-banner:after {
        background-position: left;
    }

    .pricing-banner .content .title{
        font-size: 2.5em;
        line-height: 1.25;
    }

    .pricing-banner .result-row {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }

    .pricing-banner .result-row{
        gap:15px;
    }

    .pricing-banner .result-col{
        max-width: 345px;
    }

    
}
@charset "UTF-8";
/*
* CSS TOGGLE SWITCH
*
* Ionuț Colceriu - ghinda.net
* https://github.com/ghinda/css-toggle-switch
*
*/
/* supported values are px, rem-calc, em-calc
 */
/* imports
 */
/* Functions
 */
/* Shared
 */
/* Hide by default
 */
.switch-toggle a, .switch-light span span {
  display: none; }

/* We can't test for a specific feature,
 * so we only target browsers with support for media queries.
 */
@media only screen {
  /* Checkbox
 */
  .switch-light {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
   * when the inputs are focused.
   */ }
    .switch-light::after {
      clear: both;
      content: "";
      display: table; }
    .switch-light *, .switch-light *:before, .switch-light *:after {
      box-sizing: border-box; }
    .switch-light a {
      display: block;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .switch-light label, .switch-light > span {
      /* breathing room for bootstrap/foundation classes.
     */
      line-height: 2em;
      vertical-align: middle; }
    .switch-light input:focus ~ span a, .switch-light input:focus + label {
      outline-width: 2px;
      outline-style: solid;
      outline-color: Highlight;
      /* Chrome/Opera gets its native focus styles.
     */ }
      @media (-webkit-min-device-pixel-ratio: 0) {
        .switch-light input:focus ~ span a, .switch-light input:focus + label {
          outline-color: -webkit-focus-ring-color;
          outline-style: auto; } }
  /* don't hide the input from screen-readers and keyboard access
 */
  .switch-light input {
    position: absolute;
    opacity: 0;
    z-index: 3; }
  .switch-light input:checked ~ span a {
    right: 0%; }
  /* inherit from label
 */
  .switch-light strong {
    font-weight: inherit; }
  .switch-light > span {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 2em;
    /* overwrite 3rd party classes padding
   * eg. bootstrap .well
   */
    padding: 0;
    text-align: left; }
  .switch-light span span {
    position: relative;
    z-index: 2;
    display: block;
    float: left;
    width: 50%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .switch-light a {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 1;
    display: block;
    width: 50%;
    height: 100%;
    padding: 0; }
  /* Radio Switch
 */
  .switch-toggle {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
   * when the inputs are focused.
   */
    /* For callout panels in foundation
  */
    padding: 0 !important;
    /* 2 items
   */
    /* 3 items
   */
    /* 4 items
   */
    /* 5 items
   */
    /* 6 items
   */ }
    .switch-toggle::after {
      clear: both;
      content: "";
      display: table; }
    .switch-toggle *, .switch-toggle *:before, .switch-toggle *:after {
      box-sizing: border-box; }
    .switch-toggle a {
      display: block;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .switch-toggle label, .switch-toggle > span {
      /* breathing room for bootstrap/foundation classes.
     */
      line-height: 2em;
      vertical-align: middle; }
    .switch-toggle input:focus ~ span a, .switch-toggle input:focus + label {
      outline-width: 2px;
      outline-style: solid;
      outline-color: Highlight;
      /* Chrome/Opera gets its native focus styles.
     */ }
      @media (-webkit-min-device-pixel-ratio: 0) {
        .switch-toggle input:focus ~ span a, .switch-toggle input:focus + label {
          outline-color: -webkit-focus-ring-color;
          outline-style: auto; } }
    .switch-toggle input {
      position: absolute;
      left: 0;
      opacity: 0; }
    .switch-toggle input + label {
      position: relative;
      z-index: 2;
      display: block;
      float: left;
      padding: 0 0.5em;
      margin: 0;
      text-align: center; }
    .switch-toggle a {
      position: absolute;
      top: 0;
      left: 7px;
      padding: 0;
      z-index: 1;
      width: 10px;
      height: 100%; }
/*   .switch-toggle label:nth-child(2):nth-last-child(6){
    padding-left: 25px;
  }
  .switch-toggle label:nth-child(2):nth-last-child(6)~label{
    padding-right: 25px;
  } */
  
  
    .switch-toggle label:nth-child(2):nth-last-child(4), .switch-toggle label:nth-child(2):nth-last-child(4) ~ label, .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
      width: calc(50% - 5px); }
    .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
      left: calc(50% - 3px); }
    .switch-toggle label:nth-child(2):nth-last-child(6), .switch-toggle label:nth-child(2):nth-last-child(6) ~ label, .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
      width: calc(33.33% - 5px); }
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
      left: 33.33%; }
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
      left: calc(66.66% - 3px); }
    .switch-toggle label:nth-child(2):nth-last-child(8), .switch-toggle label:nth-child(2):nth-last-child(8) ~ label, .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
      width: calc(25% - 5px); }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
      left: 25%; }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
      left: 50%; }
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
      left: calc(75% - 3px); }
    .switch-toggle label:nth-child(2):nth-last-child(10), .switch-toggle label:nth-child(2):nth-last-child(10) ~ label, .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
      width: calc(20% - 5px); }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
      left: 20%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
      left: 40%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
      left: 60%; }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
      left: calc(80% - 3px); }
    .switch-toggle label:nth-child(2):nth-last-child(12), .switch-toggle label:nth-child(2):nth-last-child(12) ~ label, .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
      width: calc(16.6% - 5px); }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
      left: 16.6%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
      left: 33.2%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
      left: 49.8%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
      left: 66.4%; }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
      left: calc(83% - 3px); }
  
  
  /* Candy Theme
 * Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
 * http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
 */
  .switch-toggle.switch-candy, .switch-light.switch-candy > span {
    background-color: #2d3035;
    border-radius: 3px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.2); }
  .switch-light.switch-candy span span, .switch-light.switch-candy input:checked ~ span span:first-child, .switch-toggle.switch-candy label {
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 1px #191b1e; }
  .switch-light.switch-candy input ~ span span:first-child, .switch-light.switch-candy input:checked ~ span span:nth-child(2), .switch-candy input:checked + label {
    color: #333;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
  .switch-candy a {
    border: 1px solid #333;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    background-color: #70c66b;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2), transparent);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent); }
  .switch-candy-blue a {
    background-color: #38a3d4; }
  .switch-candy-yellow a {
    background-color: #f5e560; }
  /* iOS Theme
*/
  .switch-ios.switch-light span span {
    color: #888b92; }
  .switch-ios.switch-light a {
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    background-color: #fff;
    border-radius: 100%;
    border: 0.25em solid #D8D9DB;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out; }
  .switch-ios.switch-light > span {
    display: block;
    width: 100%;
    height: 2em;
    background-color: #D8D9DB;
    border-radius: 1.75em;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    transition: all .4s ease-out; }
  .switch-ios.switch-light > span span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    line-height: 1.875em;
    vertical-align: middle;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out; }
    .switch-ios.switch-light > span span:first-of-type {
      opacity: 1;
      padding-left: 1.875em; }
    .switch-ios.switch-light > span span:last-of-type {
      padding-right: 1.875em; }
  .switch-ios.switch-light input:checked ~ span a {
    left: 100%;
    border-color: #4BD865;
    margin-left: -2em; }
  .switch-ios.switch-light input:checked ~ span {
    border-color: #4BD865;
    box-shadow: inset 0 0 0 30px #4BD865; }
  .switch-ios.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-ios.switch-light input:checked ~ span span:last-of-type {
    opacity: 1;
    color: #fff; }
  .switch-ios.switch-toggle {
    background-color: #D8D9DB;
    border-radius: 30px;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0; }
    .switch-ios.switch-toggle a {
      background-color: #4BD865;
      border: 0.125em solid #D8D9DB;
      border-radius: 1.75em;
      -webkit-transition: all 0.12s ease-out;
      -moz-transition: all 0.12s ease-out;
      transition: all 0.12s ease-out; }
    .switch-ios.switch-toggle label {
      height: 2.4em;
      color: #888b92;
      line-height: 2.4em;
      vertical-align: middle; }
  .switch-ios input:checked + label {
    color: #3e4043; }
  /* Holo Theme
 */
  .switch-toggle.switch-holo, .switch-light.switch-holo > span {
    background-color: #464747;
    border-radius: 1px;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
    color: #fff;
    text-transform: uppercase; }
  .switch-holo label {
    color: #fff; }
  .switch-holo > span span {
    opacity: 0;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    transition: all 0.1s; }
    .switch-holo > span span:first-of-type {
      opacity: 1; }
  .switch-holo > span span, .switch-holo label {
    font-size: 85%;
    line-height: 2.15625em; }
  .switch-holo a {
    background-color: #666;
    border-radius: 1px;
    box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, inset rgba(0, 0, 0, 0.3) 0 -1px 0; }
  /* Selected ON switch-light
*/
  .switch-holo.switch-light input:checked ~ span a {
    background-color: #0E88B1; }
  .switch-holo.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-holo.switch-light input:checked ~ span span:last-of-type {
    opacity: 1; }
  /* Material Theme
 */
  /* switch-light
 */
  .switch-light.switch-material a {
    top: -0.1875em;
    width: 1.75em;
    height: 1.75em;
    border-radius: 50%;
    background: #fafafa;
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: right .28s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: right .28s cubic-bezier(.4, 0, .2, 1);
    transition: right .28s cubic-bezier(.4, 0, .2, 1); }
  .switch-material.switch-light {
    overflow: visible; }
    .switch-material.switch-light::after {
      clear: both;
      content: "";
      display: table; }
  .switch-material.switch-light > span {
    overflow: visible;
    position: relative;
    top: 0.1875em;
    width: 3.25em;
    height: 1.5em;
    min-height: auto;
    border-radius: 1em;
    background: rgba(0, 0, 0, 0.26); }
  .switch-material.switch-light span span {
    position: absolute;
    clip: rect(0 0 0 0); }
  .switch-material.switch-light input:checked ~ span a {
    right: 0;
    background: #3f51b5;
    box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.1875em -0.125em rgba(0, 0, 0, 0.2), 0 0.0625em 0.375em 0 rgba(0, 0, 0, 0.12); }
  .switch-material.switch-light input:checked ~ span {
    background: rgba(63, 81, 181, 0.5); }
  /* switch-toggle
 */
  .switch-toggle.switch-material {
    overflow: visible; }
    .switch-toggle.switch-material::after {
      clear: both;
      content: "";
      display: table; }
  .switch-toggle.switch-material a {
    top: 48%;
    width: 0.375em !important;
    height: 0.375em;
    margin-left: 0.25em;
    background: #3f51b5;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.4s ease-in;
    -moz-transition: -moz-transform 0.4s ease-in;
    transition: transform 0.4s ease-in; }
  .switch-toggle.switch-material label {
    color: rgba(0, 0, 0, 0.54);
    font-size: 1em; }
  .switch-toggle.switch-material label:before {
    content: '';
    position: absolute;
    top: 48%;
    left: 0;
    display: block;
    width: 0.875em;
    height: 0.875em;
    border-radius: 100%;
    border: 0.125em solid rgba(0, 0, 0, 0.54);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .switch-toggle.switch-material input:checked + label:before {
    border-color: #3f51b5; }
  /* ripple
 */
  .switch-light.switch-material > span:before, .switch-light.switch-material > span:after, .switch-toggle.switch-material label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    background: #3f51b5;
    opacity: .4;
    margin-left: -1.25em;
    margin-top: -1.25em;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity .4s ease-in;
    -moz-transition: opacity .4s ease-in;
    transition: opacity .4s ease-in; }
  .switch-light.switch-material > span:after {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -1.25em; }
  .switch-toggle.switch-material label:after {
    width: 3.25em;
    height: 3.25em;
    margin-top: -0.75em; }
  @-webkit-keyframes materialRipple {
    0% {
      -webkit-transform: scale(0); }

    20% {
      -webkit-transform: scale(1); }

    100% {
      opacity: 0;
      -webkit-transform: scale(1); } }

  @-moz-keyframes materialRipple {
    0% {
      -moz-transform: scale(0); }

    20% {
      -moz-transform: scale(1); }

    100% {
      opacity: 0;
      -moz-transform: scale(1); } }

  @keyframes materialRipple {
    0% {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0); }

    20% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }

    100% {
      opacity: 0;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); } }

  .switch-material.switch-light input:not(:checked) ~ span:after, .switch-material.switch-light input:checked ~ span:before, .switch-toggle.switch-material input:checked + label:after {
    -webkit-animation: materialRipple .4s ease-in;
    -moz-animation: materialRipple .4s ease-in;
    animation: materialRipple .4s ease-in; }
  /* trick to prevent the default checked ripple animation from showing
 * when the page loads.
 * the ripples are hidden by default, and shown only when the input is focused.
 */
  .switch-light.switch-material.switch-light input ~ span:before, .switch-light.switch-material.switch-light input ~ span:after, .switch-material.switch-toggle input + label:after {
    visibility: hidden; }
  .switch-light.switch-material.switch-light input:focus:checked ~ span:before, .switch-light.switch-material.switch-light input:focus:not(:checked) ~ span:after, .switch-material.switch-toggle input:focus:checked + label:after {
    visibility: visible; } }

/* Bugfix for older Webkit, including mobile Webkit. Adapted from
 * http://css-tricks.com/webkit-sibling-bug/
 */
@media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 80em) {
  .switch-light, .switch-toggle {
    -webkit-animation: webkitSiblingBugfix infinite 1s; } }

@-webkit-keyframes webkitSiblingBugfix {
  from {
    -webkit-transform: translate3d(0, 0, 0); }

  to {
    -webkit-transform: translate3d(0, 0, 0); } }

/*# sourceMappingURL=toggle-switch.css.map */

@media all and (min-width:992px){
    .switch-toggle a {
      left: 10px; }
    
    .switch-toggle label:nth-child(2):nth-last-child(4), .switch-toggle label:nth-child(2):nth-last-child(4) ~ label, .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
      width: calc(50% - 10px); }
    .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
      left: calc(50%); 
    }
    .switch-toggle label:nth-child(2):nth-last-child(6), .switch-toggle label:nth-child(2):nth-last-child(6) ~ label, .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
      width: calc(33.33% - 10px); }
    
    .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
      left: 66.66%; }
    .switch-toggle label:nth-child(2):nth-last-child(8), .switch-toggle label:nth-child(2):nth-last-child(8) ~ label, .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
      width: calc(25% - 10px); }
    
    .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
      left: 75%; }
    .switch-toggle label:nth-child(2):nth-last-child(10), .switch-toggle label:nth-child(2):nth-last-child(10) ~ label, .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
      width: calc(20% - 10px); }
    .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
      left: 80%; }
    .switch-toggle label:nth-child(2):nth-last-child(12), .switch-toggle label:nth-child(2):nth-last-child(12) ~ label, .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
      width: calc(16.6% - 10px); }
    .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
      left: 83%; }
  }
/**
 * Swiper 7.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 13, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}