.btn {
  border-width: 2px;
}
body {
  font-family: Cormorant Infant;
}
.display-1 {
  font-family: 'Cormorant Infant', serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .spacing-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Cormorant Infant', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .spacing-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .spacing-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Cormorant Infant', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-5 > .spacing-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-7 > .spacing-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 1400px) {
  .display-1 {
    font-size: 2.45rem;
  }
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 0.7rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #25907c !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #25907c !important;
  border-color: #25907c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #134b41 !important;
  border-color: #134b41 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #134b41 !important;
  border-color: #134b41 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f5f4ed !important;
  border-color: #f5f4ed !important;
  color: #928a51 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #5a5532 !important;
  background-color: #d6d2b5 !important;
  border-color: #d6d2b5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #928a51 !important;
  background-color: #d6d2b5 !important;
  border-color: #d6d2b5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #25907c;
  color: #25907c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #134b41 !important;
  background-color: transparent !important;
  border-color: #134b41 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #25907c !important;
  border-color: #25907c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f5f4ed;
  color: #f5f4ed;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d6d2b5 !important;
  background-color: transparent !important;
  border-color: #d6d2b5 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #928a51 !important;
  background-color: #f5f4ed !important;
  border-color: #f5f4ed !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #25907c !important;
}
.text-secondary {
  color: #f5f4ed !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #103f36 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d1ccab !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.1em;
}
.nav-tabs .nav-link.active {
  color: #25907c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.spacing-gallery-filter li.active .btn {
  background-color: #25907c;
  border-color: #25907c;
  color: #ffffff;
}
.spacing-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #25907c;
}
.spacing-plan-header.bg-primary .spacing-plan-subtitle,
.spacing-plan-header.bg-primary .spacing-plan-price-desc {
  color: #5fd6c0;
}
.spacing-plan-header.bg-success .spacing-plan-subtitle,
.spacing-plan-header.bg-success .spacing-plan-price-desc {
  color: #d5d5d5;
}
.spacing-plan-header.bg-info .spacing-plan-subtitle,
.spacing-plan-header.bg-info .spacing-plan-price-desc {
  color: #ffffff;
}
.spacing-plan-header.bg-warning .spacing-plan-subtitle,
.spacing-plan-header.bg-warning .spacing-plan-price-desc {
  color: #ffffff;
}
.spacing-plan-header.bg-danger .spacing-plan-subtitle,
.spacing-plan-header.bg-danger .spacing-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .spacing-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #25907c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .spacing-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #25907c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #25907c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #25907c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #25907c;
  border-bottom-color: #25907c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #25907c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f5f4ed !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2325907c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPG9OdiVrY .btn {
  line-height: 1.2;
}
.dNC5Anh-uPG9OdiVrY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPG9OdiVrY .nav-link {
  position: relative;
}
.dNC5Anh-uPG9OdiVrY .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover,
.dNC5Anh-uPG9OdiVrY .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPG9OdiVrY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPG9OdiVrY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu,
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-item:focus,
.dNC5Anh-uPG9OdiVrY .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPG9OdiVrY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item.active,
.dNC5Anh-uPG9OdiVrY .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPG9OdiVrY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPG9OdiVrY ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPG9OdiVrY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPG9OdiVrY .navbar {
    height: 70px;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPG9OdiVrY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPG9WiYVL8 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
  overflow: hidden;
  position: relative;
}
.dNC5Anh-uPG9WiYVL8 img {
  position: absolute;
  object-fit: cover;
  height: 300px;
  width: 400px;
}
@media (max-width: 1199px) {
  .dNC5Anh-uPG9WiYVL8 img {
    display: none;
  }
}
.dNC5Anh-uPG9WiYVL8 .image_1 {
  top: 10rem;
  right: 0;
}
.dNC5Anh-uPG9WiYVL8 .image_2 {
  bottom: 5rem;
  left: -250px;
}
.dNC5Anh-uPG9WiYVL8 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPG9WiYVL8 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPG9WiYVL8 .container {
    padding: 0 22px;
  }
}
.dNC5Anh-uPG9WiYVL8 .content-wrapper {
  position: relative;
  z-index: 1;
}
.dNC5Anh-uPG9WiYVL8 .content-wrapper .spacing-desc {
  margin-bottom: 0;
}
.dNC5Anh-uPG9WiYVL8 .content-wrapper .spacing-section-title {
  margin-bottom: 10px;
}
.dNC5Anh-uPG9WiYVL8 .content-wrapper .spacing-section-title span {
  color: #47aff3;
}
.dNC5Anh-uPG9WiYVL8 .content-wrapper .spacing-text {
  margin-bottom: 10px;
}
.dNC5Anh-uPG9WiYVL8 .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPG9WiYVL8 .spacing-desc {
  color: #000000;
}
.dNC5Anh-uPG9WiYVL8 .spacing-text {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPG9WiYVL8 .spacing-section-title,
.dNC5Anh-uPG9WiYVL8 .spacing-section-btn {
  text-align: center;
  color: #000000;
}
.dNC5Anh-uPGazFXf89 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGazFXf89 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGazFXf89 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGazFXf89 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .container {
    padding: 0 30px;
  }
}
.dNC5Anh-uPGazFXf89 .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGazFXf89 .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .image-wrapper img {
    height: 300px;
  }
}
.dNC5Anh-uPGazFXf89 .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .text-wrapper {
    margin: 0;
  }
}
.dNC5Anh-uPGazFXf89 .text-wrapper .spacing-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGazFXf89 .text-wrapper .spacing-section-title {
    margin-bottom: 30px;
  }
}
.dNC5Anh-uPGazFXf89 .text-wrapper .spacing-text {
  margin-bottom: 20px;
}
.dNC5Anh-uPGazFXf89 .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGazFXf89 .spacing-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGazFXf89 .spacing-section-title,
.dNC5Anh-uPGazFXf89 .spacing-section-btn {
  text-align: center;
}
.dNC5Anh-uPGasY3s24 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGasY3s24 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGasY3s24 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGasY3s24 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .dNC5Anh-uPGasY3s24 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .dNC5Anh-uPGasY3s24 .container {
    padding: 0 12px;
  }
}
.dNC5Anh-uPGasY3s24 .content-wrapper {
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #1c1f26;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .content-wrapper {
    display: block;
  }
}
.dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper {
  width: 35em;
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper {
    width: 100%;
  }
}
.dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper .title-wrap {
  margin-bottom: 22px;
}
.dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper .title-wrap .spacing-section-title {
  margin-bottom: 32px;
  position: relative;
}
.dNC5Anh-uPGasY3s24 .content-wrapper .title-wrapper .title-wrap .spacing-text {
  margin-bottom: 20px;
}
.dNC5Anh-uPGasY3s24 .content-wrapper .image-wrapper {
  margin-top: 90px;
  border-top: 4px solid #f5f4ed;
  border-left: 4px solid #f5f4ed;
  padding: 40px 0 0 40px;
  border-radius: 64px 0 0 0;
  background-color: #000000;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .content-wrapper .image-wrapper {
    margin: 0 0 0 32px;
  }
}
.dNC5Anh-uPGasY3s24 .content-wrapper .image-wrapper img {
  min-height: 670px;
  border-radius: 32px 0 0 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGasY3s24 .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.dNC5Anh-uPGasY3s24 .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGasY3s24 .spacing-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGasY3s24 .spacing-section-title,
.dNC5Anh-uPGasY3s24 .spacing-section-btn {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGav13LZ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.dNC5Anh-uPGav13LZ9 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGav13LZ9 .container {
  max-width: 1300px;
}
.dNC5Anh-uPGav13LZ9 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGav13LZ9 .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGav13LZ9 .text-wrapper {
    padding: 3rem 2rem;
  }
}
.dNC5Anh-uPGav13LZ9 .row {
  background: #1c1f26;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGav13LZ9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.dNC5Anh-uPGav13LZ9 .image-wrapper {
  padding: 0;
}
.dNC5Anh-uPGav13LZ9 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.dNC5Anh-uPGav13LZ9 .spacing-section-title {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGav13LZ9 .spacing-text,
.dNC5Anh-uPGav13LZ9 .spacing-section-btn {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGav13LZ9 .spacing-section-subtitle {
  color: #ffffff;
}
.dNC5Anh-uPGaOGKUn3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGaOGKUn3 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGaOGKUn3 .spacing-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.dNC5Anh-uPGaOGKUn3 .spacing-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #ffffff;
  z-index: -1;
}
.dNC5Anh-uPGaOGKUn3 img {
  border-radius: 1rem;
}
.dNC5Anh-uPGaOGKUn3 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGaOGKUn3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGaOGKUn3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .dNC5Anh-uPGaOGKUn3 .text-wrapper {
    padding: 0 2rem;
  }
}
.dNC5Anh-uPGaOGKUn3 .spacing-section-title {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGaOGKUn3 .spacing-section-subtitle,
.dNC5Anh-uPGaOGKUn3 .subtitle-wrap {
  color: #000000;
}
.dNC5Anh-uPGaOGKUn3 .spacing-text,
.dNC5Anh-uPGaOGKUn3 .spacing-section-btn {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGaZsKonh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGaZsKonh .spacing-iconfont {
  display: block;
  font-size: 4rem;
  color: #47aff3;
  margin-bottom: 1.5rem;
}
.dNC5Anh-uPGaZsKonh .col-lg-4,
.dNC5Anh-uPGaZsKonh .col-12 {
  padding: 0 2rem;
}
.dNC5Anh-uPGaZsKonh .row {
  margin: 0 -2rem;
  justify-content: center;
}
.dNC5Anh-uPGaZsKonh .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .dNC5Anh-uPGaZsKonh .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGaZsKonh .card-wrapper {
    margin-bottom: 3rem;
  }
}
.dNC5Anh-uPGaZsKonh .card-title,
.dNC5Anh-uPGaZsKonh .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGaZsKonh .card-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGaZsKonh .spacing-section-subtitle {
  color: #ffffff;
}
.dNC5Anh-uPGaZsKonh .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGaZsKonh .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGaZsKonh .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPG9OdiVrY .btn {
  line-height: 1.2;
}
.dNC5Anh-uPG9OdiVrY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPG9OdiVrY .nav-link {
  position: relative;
}
.dNC5Anh-uPG9OdiVrY .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover,
.dNC5Anh-uPG9OdiVrY .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPG9OdiVrY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPG9OdiVrY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu,
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-item:focus,
.dNC5Anh-uPG9OdiVrY .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPG9OdiVrY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item.active,
.dNC5Anh-uPG9OdiVrY .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPG9OdiVrY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPG9OdiVrY ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPG9OdiVrY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPG9OdiVrY .navbar {
    height: 70px;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPG9OdiVrY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGflFKO92 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGflFKO92 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGflFKO92 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGflFKO92 .content-wrap {
  justify-content: flex-end;
}
.dNC5Anh-uPGflFKO92 .content-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGflFKO92 .content-wrapper {
    margin-bottom: 32px;
  }
}
.dNC5Anh-uPGflFKO92 .content-wrapper .spacing-section-title {
  margin-bottom: 24px;
}
.dNC5Anh-uPGflFKO92 .content-wrapper .spacing-section-title span {
  background: linear-gradient(170deg, #47aff3, #77c4f6);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.dNC5Anh-uPGflFKO92 .content-wrapper .text-wrapper .spacing-text {
  width: 80%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGflFKO92 .content-wrapper .text-wrapper .spacing-text {
    width: 100%;
  }
}
.dNC5Anh-uPGflFKO92 .image-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGflFKO92 .image-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGflFKO92 .image-wrapper {
    padding: 0;
  }
}
.dNC5Anh-uPGflFKO92 .image-wrapper img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGflFKO92 .image-wrapper img {
    height: 350px;
  }
}
.dNC5Anh-uPGflFKO92 .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGflFKO92 .spacing-text,
.dNC5Anh-uPGflFKO92 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGflFKO92 .spacing-section-title,
.dNC5Anh-uPGflFKO92 .spacing-section-btn,
.dNC5Anh-uPGflFKO92 .clients-wrapper {
  text-align: center;
}
.dNC5Anh-uPGfpRdTgm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
  background-image: linear-gradient(#f5f4ed 80%, #f5f4ed 110%);
}
.dNC5Anh-uPGfpRdTgm .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGfpRdTgm .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGfpRdTgm .row {
  justify-content: center;
}
.dNC5Anh-uPGfpRdTgm .content-wrapper {
  position: relative;
  z-index: 2;
}
.dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #47aff3, #000000 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-section-title {
    margin-bottom: 22px;
  }
}
.dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-text {
    margin-bottom: 22px;
  }
}
.dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfpRdTgm .content-wrapper .spacing-desc {
    margin-bottom: 22px;
  }
}
.dNC5Anh-uPGfpRdTgm .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGfpRdTgm .spacing-text {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGfpRdTgm .spacing-desc {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGfpRdTgm .spacing-section-title,
.dNC5Anh-uPGfpRdTgm .spacing-section-btn {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGfsORtMt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #1c1f26;
}
.dNC5Anh-uPGfsORtMt .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.dNC5Anh-uPGfsORtMt .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGfsORtMt .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGfsORtMt .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.dNC5Anh-uPGfsORtMt .content-wrap .card {
  justify-content: space-between;
}
.dNC5Anh-uPGfsORtMt .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .dNC5Anh-uPGfsORtMt .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfsORtMt .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.dNC5Anh-uPGfsORtMt .content-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfsORtMt .content-wrapper .spacing-section-title {
    margin-bottom: 16px;
  }
}
.dNC5Anh-uPGfsORtMt .content-wrapper .text-wrapper .spacing-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfsORtMt .content-wrapper .text-wrapper .spacing-text {
    margin-bottom: 16px;
  }
}
.dNC5Anh-uPGfsORtMt .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .dNC5Anh-uPGfsORtMt .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfsORtMt .image-wrap {
    padding: 0;
  }
}
.dNC5Anh-uPGfsORtMt .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfsORtMt .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.dNC5Anh-uPGfsORtMt .spacing-section-title {
  color: #150764;
}
.dNC5Anh-uPGfsORtMt .spacing-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGfsORtMt .spacing-section-title,
.dNC5Anh-uPGfsORtMt .spacing-section-btn {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGfv0PPO8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGfv0PPO8 .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGfv0PPO8 .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .container {
    padding: 0 16px;
  }
}
.dNC5Anh-uPGfv0PPO8 .card {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .image-wrapper {
    margin-bottom: 32px;
  }
}
.dNC5Anh-uPGfv0PPO8 .image-wrapper img {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .image-wrapper img {
    height: 350px;
  }
}
.dNC5Anh-uPGfv0PPO8 .title-wrapper {
  padding-left: 64px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .title-wrapper {
    padding-left: 0;
  }
}
.dNC5Anh-uPGfv0PPO8 .title-wrapper .subtitle-wrapper .spacing-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 4px 12px;
  border-radius: 8px !important;
  box-shadow: 3px 4px 0 0 #000000;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .title-wrapper .subtitle-wrapper .spacing-section-subtitle {
    margin-bottom: 32px;
  }
}
.dNC5Anh-uPGfv0PPO8 .title-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
.dNC5Anh-uPGfv0PPO8 .spacing-desc {
  margin-bottom: 0;
  padding-left: 64px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGfv0PPO8 .spacing-desc {
    padding-left: 0;
  }
}
.dNC5Anh-uPGfv0PPO8 .spacing-section-title {
  color: #000000;
}
.dNC5Anh-uPGfv0PPO8 .spacing-section-subtitle {
  color: #000000;
}
.dNC5Anh-uPGfv0PPO8 .spacing-section-title,
.dNC5Anh-uPGfv0PPO8 .spacing-section-btn {
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPG9OdiVrY .btn {
  line-height: 1.2;
}
.dNC5Anh-uPG9OdiVrY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPG9OdiVrY .nav-link {
  position: relative;
}
.dNC5Anh-uPG9OdiVrY .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover,
.dNC5Anh-uPG9OdiVrY .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPG9OdiVrY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPG9OdiVrY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu,
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-item:focus,
.dNC5Anh-uPG9OdiVrY .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPG9OdiVrY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item.active,
.dNC5Anh-uPG9OdiVrY .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPG9OdiVrY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPG9OdiVrY ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPG9OdiVrY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPG9OdiVrY .navbar {
    height: 70px;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPG9OdiVrY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGhZPjc4n {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGhZPjc4n .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGhZPjc4n .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGhZPjc4n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.dNC5Anh-uPGhZPjc4n .row {
  align-items: center;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGhZPjc4n .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .dNC5Anh-uPGhZPjc4n .text-wrapper {
    padding: 0 2rem;
  }
}
.dNC5Anh-uPGhZPjc4n .spacing-section-title {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGhZPjc4n .spacing-text,
.dNC5Anh-uPGhZPjc4n .spacing-section-btn {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGh1o3iTw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
  overflow: hidden;
}
.dNC5Anh-uPGh1o3iTw .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGh1o3iTw .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .container {
    padding: 0 30px;
  }
}
.dNC5Anh-uPGh1o3iTw .card {
  justify-content: center;
}
.dNC5Anh-uPGh1o3iTw .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper {
    padding: 0;
    display: block;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper {
  width: 50%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item {
  margin-bottom: 150px;
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item {
    margin-bottom: 60px;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item .item-wrapper .card-box .desc-wrapper .item-desc {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item .item-wrapper .card-box .desc-wrapper .item-desc {
    margin-bottom: 40px;
    padding-left: 60px;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item .item-wrapper .card-box .desc-wrapper .item-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item .item-wrapper .card-box .desc-wrapper .item-desc::before {
    width: 40px;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper .image-wrap {
  position: relative;
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper .image-wrap img {
  height: 840px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper .image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 118px;
  height: 118px;
  background-image: linear-gradient(-135deg, #1c1f26 50%, #ffffff 50%);
  z-index: 1;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh1o3iTw .content-wrapper .image-wrapper .image-wrap::before {
    width: 50px;
    height: 50px;
  }
}
.dNC5Anh-uPGh1o3iTw .item-desc {
  color: #254b45;
}
.dNC5Anh-uPGh1o3iTw .item-text {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGh1o3iTw .item-desc,
.dNC5Anh-uPGh1o3iTw .desc-wrapper {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGh8RD57e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGh8RD57e .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGh8RD57e .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .container {
    padding: 0 24px;
  }
}
.dNC5Anh-uPGh8RD57e .row {
  justify-content: center;
  border-top: 1px solid #f5f4ed;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGh8RD57e .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .row {
    border: none;
  }
}
.dNC5Anh-uPGh8RD57e .row .item {
  padding: 0 32px 0 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .row .item {
    padding: 0 16px;
  }
}
.dNC5Anh-uPGh8RD57e .item-wrapper {
  height: 100%;
}
.dNC5Anh-uPGh8RD57e .item-wrapper .card-box {
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .item-wrapper .card-box {
    display: block;
  }
}
.dNC5Anh-uPGh8RD57e .subtitle-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .subtitle-wrap {
    display: block;
  }
}
.dNC5Anh-uPGh8RD57e .subtitle-wrap .spacing-section-subtitle {
  padding: 32px;
  writing-mode: tb;
  transform: rotate(180deg);
  margin: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .subtitle-wrap .spacing-section-subtitle {
    transform: rotate(0);
    writing-mode: horizontal-tb;
    padding: 24px;
    border-left: 1px solid #f5f4ed;
    text-align: left;
  }
}
.dNC5Anh-uPGh8RD57e .content-wrapper {
  padding: 32px;
  border-left: 1px solid #f5f4ed;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .content-wrapper {
    padding: 24px;
    border-top: 1px solid #f5f4ed;
    border-left: 1px solid #f5f4ed;
  }
}
.dNC5Anh-uPGh8RD57e .content-wrapper .spacing-section-title {
  margin-bottom: 16px;
}
.dNC5Anh-uPGh8RD57e .content-wrapper .spacing-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .content-wrapper .spacing-text {
    text-align: left;
  }
}
.dNC5Anh-uPGh8RD57e .content-wrapper .spacing-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGh8RD57e .content-wrapper .spacing-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.dNC5Anh-uPGh8RD57e .spacing-section-title {
  color: #F9F6E0;
}
.dNC5Anh-uPGh8RD57e .spacing-section-subtitle {
  color: #E0B548;
  text-align: center;
}
.dNC5Anh-uPGh8RD57e .spacing-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGh8RD57e .spacing-section-title,
.dNC5Anh-uPGh8RD57e .spacing-section-btn {
  text-align: center;
  color: #ffffff;
}
.dNC5Anh-uPGhhZy7J7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGhhZy7J7 .spacing-section-title {
  color: #000000;
}
.dNC5Anh-uPGhhZy7J7 .spacing-section-subtitle {
  color: #000000;
}
.dNC5Anh-uPGhhZy7J7 .spacing-text {
  color: #000000;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGhhZy7J7 .spacing-text {
    padding: 0;
    margin-top: 2rem;
  }
}
.dNC5Anh-uPGhhZy7J7 .line {
  height: 2px;
  background: currentColor;
  margin-bottom: 1.5rem;
}
.dNC5Anh-uPGhhZy7J7 .spacing-section-title,
.dNC5Anh-uPGhhZy7J7 .line {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPG9OdiVrY .btn {
  line-height: 1.2;
}
.dNC5Anh-uPG9OdiVrY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPG9OdiVrY .nav-link {
  position: relative;
}
.dNC5Anh-uPG9OdiVrY .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover,
.dNC5Anh-uPG9OdiVrY .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPG9OdiVrY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPG9OdiVrY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu,
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-item:focus,
.dNC5Anh-uPG9OdiVrY .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPG9OdiVrY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item.active,
.dNC5Anh-uPG9OdiVrY .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPG9OdiVrY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPG9OdiVrY ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPG9OdiVrY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPG9OdiVrY .navbar {
    height: 70px;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPG9OdiVrY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGj1OdWCO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGj1OdWCO input,
.dNC5Anh-uPGj1OdWCO textarea,
.dNC5Anh-uPGj1OdWCO input:active,
.dNC5Anh-uPGj1OdWCO textarea:active,
.dNC5Anh-uPGj1OdWCO input:focus,
.dNC5Anh-uPGj1OdWCO textarea:focus,
.dNC5Anh-uPGj1OdWCO form {
  color: black;
}
.dNC5Anh-uPGj1OdWCO input,
.dNC5Anh-uPGj1OdWCO textarea {
  border: none !important;
  border-bottom: 1px solid #969494 !important;
}
.dNC5Anh-uPGj1OdWCO input:hover,
.dNC5Anh-uPGj1OdWCO textarea:hover {
  border: none !important;
  border-bottom: 1px solid #c9c9c9 !important;
}
.dNC5Anh-uPGj1OdWCO .btn:hover {
  color: #000000 !important;
  background-color: #f5f4ed !important;
}
.dNC5Anh-uPGj1OdWCO .colored-text {
  color: #47aff3 !important;
}
.dNC5Anh-uPGj1OdWCO .spacing-section-title {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGj1OdWCO .spacing-section-subtitle {
  color: #000000;
  text-align: center;
}
.dNC5Anh-uPGj1OdWCO .spacing-text {
  color: #ffffff;
}
.dNC5Anh-uPGrf7TDup {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1c1f26;
}
.dNC5Anh-uPGrf7TDup .spacing-iconfont {
  display: block;
  font-size: 4rem;
  color: #47aff3;
  margin-bottom: 1.5rem;
}
.dNC5Anh-uPGrf7TDup .col-lg-4,
.dNC5Anh-uPGrf7TDup .col-12 {
  padding: 0 2rem;
}
.dNC5Anh-uPGrf7TDup .row {
  margin: 0 -2rem;
  justify-content: center;
}
.dNC5Anh-uPGrf7TDup .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .dNC5Anh-uPGrf7TDup .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGrf7TDup .card-wrapper {
    margin-bottom: 3rem;
  }
}
.dNC5Anh-uPGrf7TDup .card-title,
.dNC5Anh-uPGrf7TDup .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGrf7TDup .card-text {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGrf7TDup .spacing-section-subtitle {
  color: #ffffff;
}
.dNC5Anh-uPGrf7TDup .spacing-section-title {
  color: #ffffff;
}
.dNC5Anh-uPGrf7TDup .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGrf7TDup .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPG9OdiVrY .btn {
  line-height: 1.2;
}
.dNC5Anh-uPG9OdiVrY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPG9OdiVrY .nav-link {
  position: relative;
}
.dNC5Anh-uPG9OdiVrY .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover,
.dNC5Anh-uPG9OdiVrY .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPG9OdiVrY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPG9OdiVrY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .dropdown-menu,
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPG9OdiVrY .nav-item:focus,
.dNC5Anh-uPG9OdiVrY .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPG9OdiVrY .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPG9OdiVrY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPG9OdiVrY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPG9OdiVrY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPG9OdiVrY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPG9OdiVrY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPG9OdiVrY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPG9OdiVrY .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPG9OdiVrY .dropdown-item.active,
.dNC5Anh-uPG9OdiVrY .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPG9OdiVrY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPG9OdiVrY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPG9OdiVrY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPG9OdiVrY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPG9OdiVrY ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPG9OdiVrY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPG9OdiVrY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPG9OdiVrY .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPG9OdiVrY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPG9OdiVrY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPG9OdiVrY .navbar {
    height: 70px;
  }
  .dNC5Anh-uPG9OdiVrY .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPG9OdiVrY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGk1esWOo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGk1esWOo .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGk1esWOo .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGk1esWOo .row {
  justify-content: space-between;
}
.dNC5Anh-uPGk1esWOo .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk1esWOo .content-wrapper {
    padding: 0;
  }
}
.dNC5Anh-uPGk1esWOo .content-wrapper .spacing-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk1esWOo .content-wrapper .spacing-section-title {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk1esWOo .content-wrapper .spacing-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk1esWOo .content-wrapper .spacing-text {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk1esWOo .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.dNC5Anh-uPGk1esWOo .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.dNC5Anh-uPGk1esWOo .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.dNC5Anh-uPGk1esWOo .content-wrapper .logo-wrapper .logo-wrap .spacing-desc {
  margin-bottom: 0;
}
.dNC5Anh-uPGk1esWOo .spacing-section-title {
  color: #000000;
}
.dNC5Anh-uPGk1esWOo .spacing-desc {
  color: #000000;
}
.dNC5Anh-uPGk1esWOo .spacing-text {
  color: #000000;
}
.dNC5Anh-uPGk1esWOo .spacing-section-title,
.dNC5Anh-uPGk1esWOo .spacing-section-btn {
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGk6sZQOr .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPGk6sZQOr .btn {
  line-height: 1.2;
}
.dNC5Anh-uPGk6sZQOr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPGk6sZQOr .nav-link {
  position: relative;
}
.dNC5Anh-uPGk6sZQOr .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPGk6sZQOr .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPGk6sZQOr .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk6sZQOr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPGk6sZQOr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item:hover,
.dNC5Anh-uPGk6sZQOr .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPGk6sZQOr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPGk6sZQOr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPGk6sZQOr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGk6sZQOr .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPGk6sZQOr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPGk6sZQOr .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPGk6sZQOr .dropdown-menu,
.dNC5Anh-uPGk6sZQOr .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPGk6sZQOr .nav-item:focus,
.dNC5Anh-uPGk6sZQOr .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPGk6sZQOr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk6sZQOr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPGk6sZQOr .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPGk6sZQOr .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk6sZQOr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPGk6sZQOr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPGk6sZQOr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPGk6sZQOr .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPGk6sZQOr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPGk6sZQOr .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPGk6sZQOr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGk6sZQOr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPGk6sZQOr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGk6sZQOr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPGk6sZQOr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPGk6sZQOr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPGk6sZQOr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPGk6sZQOr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPGk6sZQOr .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPGk6sZQOr .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPGk6sZQOr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPGk6sZQOr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPGk6sZQOr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPGk6sZQOr .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPGk6sZQOr .dropdown-item.active,
.dNC5Anh-uPGk6sZQOr .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPGk6sZQOr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPGk6sZQOr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPGk6sZQOr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPGk6sZQOr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPGk6sZQOr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPGk6sZQOr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPGk6sZQOr ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPGk6sZQOr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPGk6sZQOr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPGk6sZQOr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPGk6sZQOr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPGk6sZQOr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPGk6sZQOr .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPGk6sZQOr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPGk6sZQOr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPGk6sZQOr .navbar {
    height: 70px;
  }
  .dNC5Anh-uPGk6sZQOr .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPGk6sZQOr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGk6v2Apx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGk6v2Apx .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGk6v2Apx .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGk6v2Apx .row {
  justify-content: space-between;
}
.dNC5Anh-uPGk6v2Apx .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk6v2Apx .content-wrapper {
    padding: 0;
  }
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .spacing-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk6v2Apx .content-wrapper .spacing-section-title {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .spacing-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk6v2Apx .content-wrapper .spacing-text {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.dNC5Anh-uPGk6v2Apx .content-wrapper .logo-wrapper .logo-wrap .spacing-desc {
  margin-bottom: 0;
}
.dNC5Anh-uPGk6v2Apx .spacing-section-title {
  color: #000000;
}
.dNC5Anh-uPGk6v2Apx .spacing-desc {
  color: #000000;
}
.dNC5Anh-uPGk6v2Apx .spacing-text {
  color: #000000;
}
.dNC5Anh-uPGk6v2Apx .spacing-section-title,
.dNC5Anh-uPGk6v2Apx .spacing-section-btn {
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}
.dNC5Anh-uPGk9juhuX .navbar-dropdown {
  position: relative !important;
}
.dNC5Anh-uPGk9juhuX .btn {
  line-height: 1.2;
}
.dNC5Anh-uPGk9juhuX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.dNC5Anh-uPGk9juhuX .nav-link {
  position: relative;
}
.dNC5Anh-uPGk9juhuX .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #232323;
}
.dNC5Anh-uPGk9juhuX .nav-link:hover {
  color: #232323 !important;
}
.dNC5Anh-uPGk9juhuX .nav-link:hover:before {
  width: 100%;
}
.dNC5Anh-uPGk9juhuX .dropdown-item:before {
  font-family: infographic2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk9juhuX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPGk9juhuX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.dNC5Anh-uPGk9juhuX .dropdown-item:hover,
.dNC5Anh-uPGk9juhuX .dropdown-item:focus {
  background: #25907c !important;
  color: white !important;
}
.dNC5Anh-uPGk9juhuX .dropdown-item:hover span {
  color: white;
}
.dNC5Anh-uPGk9juhuX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dNC5Anh-uPGk9juhuX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.dNC5Anh-uPGk9juhuX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.dNC5Anh-uPGk9juhuX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.dNC5Anh-uPGk9juhuX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGk9juhuX .container {
    flex-wrap: nowrap;
  }
}
.dNC5Anh-uPGk9juhuX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.dNC5Anh-uPGk9juhuX .navbar-nav {
  margin: auto;
}
.dNC5Anh-uPGk9juhuX .dropdown-menu,
.dNC5Anh-uPGk9juhuX .navbar.opened {
  background: #2c8bc9 !important;
}
.dNC5Anh-uPGk9juhuX .nav-item:focus,
.dNC5Anh-uPGk9juhuX .nav-link:focus {
  outline: none;
}
.dNC5Anh-uPGk9juhuX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk9juhuX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.dNC5Anh-uPGk9juhuX .dropdown .dropdown-menu .dropdown-item .spacing-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.dNC5Anh-uPGk9juhuX .dropdown .dropdown-menu .dropdown-item .spacing-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.dNC5Anh-uPGk9juhuX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.dNC5Anh-uPGk9juhuX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.dNC5Anh-uPGk9juhuX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #2c8bc9;
}
.dNC5Anh-uPGk9juhuX .navbar.opened {
  transition: all 0.3s;
}
.dNC5Anh-uPGk9juhuX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.dNC5Anh-uPGk9juhuX .navbar .navbar-logo img {
  width: auto;
}
.dNC5Anh-uPGk9juhuX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed {
  justify-content: center;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .dNC5Anh-uPGk9juhuX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.dNC5Anh-uPGk9juhuX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .dNC5Anh-uPGk9juhuX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .dNC5Anh-uPGk9juhuX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .dNC5Anh-uPGk9juhuX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .dNC5Anh-uPGk9juhuX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .dNC5Anh-uPGk9juhuX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .dNC5Anh-uPGk9juhuX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .dNC5Anh-uPGk9juhuX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .dNC5Anh-uPGk9juhuX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .dNC5Anh-uPGk9juhuX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .dNC5Anh-uPGk9juhuX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .dNC5Anh-uPGk9juhuX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .dNC5Anh-uPGk9juhuX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.dNC5Anh-uPGk9juhuX .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dNC5Anh-uPGk9juhuX .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.dNC5Anh-uPGk9juhuX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.dNC5Anh-uPGk9juhuX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.dNC5Anh-uPGk9juhuX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.dNC5Anh-uPGk9juhuX .navbar-brand .navbar-logo a {
  outline: none;
}
.dNC5Anh-uPGk9juhuX .dropdown-item.active,
.dNC5Anh-uPGk9juhuX .dropdown-item:active {
  background-color: transparent;
}
.dNC5Anh-uPGk9juhuX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.dNC5Anh-uPGk9juhuX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.dNC5Anh-uPGk9juhuX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.dNC5Anh-uPGk9juhuX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2c8bc9;
}
.dNC5Anh-uPGk9juhuX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.dNC5Anh-uPGk9juhuX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.dNC5Anh-uPGk9juhuX ul.navbar-nav {
  flex-wrap: wrap;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.dNC5Anh-uPGk9juhuX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.dNC5Anh-uPGk9juhuX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPGk9juhuX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPGk9juhuX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.dNC5Anh-uPGk9juhuX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.dNC5Anh-uPGk9juhuX .navbar-dropdown {
  padding: 0 1rem;
}
.dNC5Anh-uPGk9juhuX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dNC5Anh-uPGk9juhuX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dNC5Anh-uPGk9juhuX .navbar {
    height: 70px;
  }
  .dNC5Anh-uPGk9juhuX .navbar.opened {
    height: auto;
  }
  .dNC5Anh-uPGk9juhuX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.dNC5Anh-uPGk9l4Wbt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f4ed;
}
.dNC5Anh-uPGk9l4Wbt .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGk9l4Wbt .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGk9l4Wbt .row {
  justify-content: space-between;
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk9l4Wbt .content-wrapper {
    padding: 0;
  }
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .spacing-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk9l4Wbt .content-wrapper .spacing-section-title {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .spacing-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGk9l4Wbt .content-wrapper .spacing-text {
    margin-bottom: 20px;
  }
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.dNC5Anh-uPGk9l4Wbt .content-wrapper .logo-wrapper .logo-wrap .spacing-desc {
  margin-bottom: 0;
}
.dNC5Anh-uPGk9l4Wbt .spacing-section-title {
  color: #000000;
}
.dNC5Anh-uPGk9l4Wbt .spacing-desc {
  color: #000000;
}
.dNC5Anh-uPGk9l4Wbt .spacing-text {
  color: #000000;
}
.dNC5Anh-uPGk9l4Wbt .spacing-section-title,
.dNC5Anh-uPGk9l4Wbt .spacing-section-btn {
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c8bc9;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image.disabled {
  display: none;
}
.dNC5Anh-uPGtmSxaWD .spacing-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper {
  padding: 32px 64px;
  background-color: #424753;
}
@media (max-width: 1440px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper {
    padding: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-section-title {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #d2d2d2;
  transition: all 0.3s ease-in-out;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:hover,
.dNC5Anh-uPGtmSxaWD .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #2c8bc9;
  border: 1px solid #2c8bc9;
  color: #ffffff;
}
.dNC5Anh-uPGtmSxaWD .card-wrapper .spacing-copy {
  margin-bottom: 0;
}
.dNC5Anh-uPGtmSxaWD .spacing-section-title {
  color: #2c2c26;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .list,
.dNC5Anh-uPGtmSxaWD .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.dNC5Anh-uPGtmSxaWD .spacing-copy {
  color: #ffffff;
  text-align: center;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
/* Main container for the cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  width: calc(100% - 40px);
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(100%);
  animation: slideIn 0.5s forwards;
  z-index: 1000;
}

/* Slide in animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header section: icon and message */
.cookie-banner .banner-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-banner .banner-header img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.cookie-banner .banner-header p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Buttons section */
.cookie-banner .banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.cookie-banner .banner-buttons button {
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
}

.cookie-banner .banner-buttons button:hover {
  transform: scale(1.03);
}

/* Accept button design */
.cookie-banner .banner-buttons button#cookieAcceptBtn {
  background-color: #4caf50;
  color: #fff;
}

/* Reject button design */
.cookie-banner .banner-buttons button#cookieRejectBtn {
  background-color: #fff;
  color: #f44336;
  border: 2px solid #f44336;
}

.cookie-banner .banner-buttons button#cookieRejectBtn:hover {
  background-color: #ffe6e6;
}

/* Footer section with policy links */
.cookie-banner .banner-footer {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.cookie-banner .banner-footer a {
  color: #007bff;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-bottom 0.3s;
}

.cookie-banner .banner-footer a:hover {
  border-bottom: 1px dashed #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-banner {
    max-width: 90%;
    padding: 15px;
    bottom: 15px;
    right: 15px;
  }
  .cookie-banner .banner-buttons button {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    max-width: 100%;
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
  .cookie-banner .banner-header img {
    width: 40px;
    height: 40px;
  }
  .cookie-banner .banner-buttons button {
    font-size: 14px;
    padding: 8px;
  }
}

/* logoanimations */
@keyframes stretchOut {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand {
    animation: stretchOut 1.2s ease-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 21: translate bounce */
a, button, .btn {
  position: relative;
}
a:active, button:active, .btn:active {
  animation: bounce-click 0.3s ease-out;
}
@keyframes bounce-click {
  0% { transform: translateY(0); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}
/* endmainanimations */
