.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Manrope;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 8.5rem;
  line-height: 0.95;
}
.display-1 > .kerning-iconfont {
  font-size: 10.625rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.95rem;
  line-height: 1.15;
}
.display-2 > .kerning-iconfont {
  font-size: 6.1875rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.33rem;
  line-height: 1.55;
}
.display-4 > .kerning-iconfont {
  font-size: 1.6625rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  line-height: 1.45;
}
.display-5 > .kerning-iconfont {
  font-size: 2.8125rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  line-height: 1.55;
}
.display-7 > .kerning-iconfont {
  font-size: 1.6875rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 6.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.95rem;
    font-size: calc( 3.625rem + (8.5 - 3.625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.625rem + (8.5 - 3.625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.96rem;
    font-size: calc( 2.3825rem + (4.95 - 2.3825) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.3825rem + (4.95 - 2.3825) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.064rem;
    font-size: calc( 1.1155rem + (1.33 - 1.1155) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1155rem + (1.33 - 1.1155) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.08rem;
    font-size: calc( 1.1225rem + (1.35 - 1.1225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1225rem + (1.35 - 1.1225) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 5.95rem;
    font-size: calc( 3.625rem + (8.5 - 3.625) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (3.625rem + (8.5 - 3.625) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 3.96rem;
    font-size: calc( 2.3825rem + (4.95 - 2.3825) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (2.3825rem + (4.95 - 2.3825) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 1.064rem;
    font-size: calc( 1.1155rem + (1.33 - 1.1155) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.1155rem + (1.33 - 1.1155) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 1.08rem;
    font-size: calc( 1.1225rem + (1.35 - 1.1225) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.1225rem + (1.35 - 1.1225) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #c0dbff !important;
}
.bg-success {
  background-color: #e5e5e5 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #c0dbff !important;
}
.bg-danger {
  background-color: #213a5c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
  color: #0052c0 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0052c0 !important;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
  color: #0052c0 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0052c0 !important;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
  color: #0052c0 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0052c0 !important;
  background-color: #f3f8ff !important;
  border-color: #f3f8ff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #213a5c !important;
  border-color: #213a5c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #2e5282 !important;
  border-color: #2e5282 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #2e5282 !important;
  border-color: #2e5282 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #c0dbff;
  color: #c0dbff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #69a9ff !important;
  background-color: transparent !important;
  border-color: #69a9ff !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #0052c0 !important;
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #c0dbff;
  color: #c0dbff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #69a9ff !important;
  background-color: transparent !important;
  border-color: #69a9ff !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0052c0 !important;
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #e5e5e5;
  color: #e5e5e5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #bababa !important;
  background-color: transparent !important;
  border-color: #bababa !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #666666 !important;
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c0dbff;
  color: #c0dbff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #69a9ff !important;
  background-color: transparent !important;
  border-color: #69a9ff !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0052c0 !important;
  background-color: #c0dbff !important;
  border-color: #c0dbff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #213a5c;
  color: #213a5c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a121c !important;
  background-color: transparent !important;
  border-color: #0a121c !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #213a5c !important;
  border-color: #213a5c !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: #c0dbff !important;
}
.text-secondary {
  color: #c0dbff !important;
}
.text-success {
  color: #e5e5e5 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #c0dbff !important;
}
.text-danger {
  color: #213a5c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5aa1ff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5aa1ff !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #b2b2b2 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #5aa1ff !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #060b11 !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c0dbff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #c0dbff;
}
.alert-danger {
  background-color: #213a5c;
}
.kerning-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.kerning-gallery-filter li a {
  border-radius: 100px !important;
}
.kerning-gallery-filter li.active .btn {
  background-color: #c0dbff;
  border-color: #c0dbff;
  color: #005dda;
}
.kerning-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c0dbff;
}
.kerning-plan-header.bg-primary .kerning-plan-subtitle,
.kerning-plan-header.bg-primary .kerning-plan-price-desc {
  color: #ffffff;
}
.kerning-plan-header.bg-success .kerning-plan-subtitle,
.kerning-plan-header.bg-success .kerning-plan-price-desc {
  color: #ffffff;
}
.kerning-plan-header.bg-info .kerning-plan-subtitle,
.kerning-plan-header.bg-info .kerning-plan-price-desc {
  color: #ffffff;
}
.kerning-plan-header.bg-warning .kerning-plan-subtitle,
.kerning-plan-header.bg-warning .kerning-plan-price-desc {
  color: #ffffff;
}
.kerning-plan-header.bg-danger .kerning-plan-subtitle,
.kerning-plan-header.bg-danger .kerning-plan-price-desc {
  color: #4375ba;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Manrope', sans-serif;
  font-size: 1.33rem;
  line-height: 1.55;
  font-weight: 400;
  border-radius: 40px !important;
}
.form-control > .kerning-iconfont {
  font-size: 1.6625rem;
}
.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: #c0dbff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1.33rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .kerning-iconfont {
  font-size: 1.6625rem;
}
blockquote {
  border-color: #c0dbff;
}
/* Forms */
.kerning-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.kerning-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.kerning-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.kerning-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c0dbff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c0dbff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c0dbff;
  border-bottom-color: #c0dbff;
}
.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: #000000 !important;
  background-color: #c0dbff !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: #c0dbff !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='%23c0dbff' %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;
}
.kerning-section-btn {
  width: 100%;
}
.kerning-section-btn .btn {
  padding: 16px 30px;
  border-radius: 3rem !important;
  font-weight: 400 !important;
  padding: 30px;
  width: 100%;
}
@media (max-width: 992px) {
  .kerning-section-btn .btn {
    padding: 16px 22px;
  }
}
@media (max-width: 992px) {
  .kerning-section-btn .btn {
    padding: 22px;
  }
}
.logo-wrap {
  border-radius: 3rem !important;
}
.item-tag {
  border-radius: 3rem !important;
}
.iconfont-wrap .kerning-iconfont {
  border-radius: 8px;
}
.nav-link {
  border-radius: 3rem !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.kerning-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.items-wrapper,
.form-wrapper {
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  img,
  .card-wrap,
  .card-wrapper,
  .video-wrapper,
  .kerning-figure iframe,
  .google-map iframe,
  .slide-content,
  .plan,
  .card,
  .item-wrapper,
  .items-wrapper,
  .form-wrapper {
    border-radius: 30px !important;
  }
}
.image-avatar {
  border-radius: 30px !important;
}
.item-wrapper::after,
.item-wrapper::before {
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  .item-wrapper::after,
  .item-wrapper::before {
    border-radius: 30px !important;
  }
}
.card-wrap::after,
.card-wrap::before {
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  .card-wrap::after,
  .card-wrap::before {
    border-radius: 30px !important;
  }
}
.form-wrapper::after,
.form-wrapper::before {
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  .form-wrapper::after,
  .form-wrapper::before {
    border-radius: 30px !important;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmdPxcVUZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover,
.hlgtfc-uOmdPxcVUZ .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmdPxcVUZ .nav-link {
  position: relative;
}
.hlgtfc-uOmdPxcVUZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmdPxcVUZ .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu,
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmdPxcVUZ .nav-item:focus,
.hlgtfc-uOmdPxcVUZ .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmdPxcVUZ .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%;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmdPxcVUZ .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%;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .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;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmdPxcVUZ .dropdown-item.active,
.hlgtfc-uOmdPxcVUZ .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmdPxcVUZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmdPxcVUZ ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmdPxcVUZ .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmdPxcVUZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .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) {
  .hlgtfc-uOmdPxcVUZ .navbar {
    height: 70px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmdPxcVUZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmdPxcVUZ .container,
.hlgtfc-uOmdPxcVUZ .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmdPxcVUZ .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmdPxcVUZ .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmdPxcVUZ .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmectuTXr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.hlgtfc-uOmectuTXr svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.hlgtfc-uOmectuTXr H1 {
  color: #000000;
}
.hlgtfc-uOmectuTXr .kerning-text,
.hlgtfc-uOmectuTXr .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOmectuTXr #e1_ellipse {
  fill: #c0dbff !important;
}
.hlgtfc-uOmectuTXr img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .hlgtfc-uOmectuTXr img {
    width: 100%;
  }
}
.hlgtfc-uOmectuTXr .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmectuTXr .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmewhM8dp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.hlgtfc-uOmewhM8dp .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmewhM8dp .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmewhM8dp .row {
  padding: 1rem;
}
.hlgtfc-uOmewhM8dp .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #edf5ff;
  border-radius: 400px 0 0 0;
}
.hlgtfc-uOmewhM8dp .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .hlgtfc-uOmewhM8dp .title-wrapper {
    padding: 0;
  }
}
.hlgtfc-uOmewhM8dp .title-wrapper .kerning-section-title {
  margin-bottom: 15px;
}
.hlgtfc-uOmewhM8dp .title-wrapper .kerning-text {
  margin-bottom: 16px;
}
.hlgtfc-uOmewhM8dp .cards .card {
  margin-bottom: 20px;
}
.hlgtfc-uOmewhM8dp .cards .card .kerning-number {
  margin: 0;
}
.hlgtfc-uOmewhM8dp .cards .card .kerning-desc {
  margin: 0;
}
.hlgtfc-uOmewhM8dp .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmewhM8dp .kerning-text {
  color: #000000;
}
.hlgtfc-uOmewhM8dp .kerning-number {
  color: #000000;
}
.hlgtfc-uOmewhM8dp .kerning-desc {
  color: #000000;
}
.hlgtfc-uOmezS4qBt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0dbff;
}
.hlgtfc-uOmezS4qBt .content {
  display: flex;
  align-items: center;
}
.hlgtfc-uOmezS4qBt .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmezS4qBt .content-main {
    margin-left: 0;
  }
}
.hlgtfc-uOmezS4qBt .kerning-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #000000;
}
@media (max-width: 992px) {
  .hlgtfc-uOmezS4qBt .kerning-section-subtitle {
    margin-bottom: 24px;
  }
}
.hlgtfc-uOmezS4qBt .kerning-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.hlgtfc-uOmezS4qBt .kerning-text {
  margin-bottom: 38px;
  color: #000000;
}
@media (max-width: 992px) {
  .hlgtfc-uOmezS4qBt .kerning-text {
    margin-bottom: 25px;
  }
}
.hlgtfc-uOmezS4qBt .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.hlgtfc-uOmezS4qBt .btn:hover {
  box-shadow: none;
}
.hlgtfc-uOmezS4qBt .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .hlgtfc-uOmezS4qBt .image-wrapper {
    margin-bottom: 61px;
  }
}
.hlgtfc-uOmezS4qBt .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #213a5c;
  border-radius: 5%;
  background: #edf5ff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #c0dbff;
}
@media (max-width: 1200px) {
  .hlgtfc-uOmezS4qBt .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.hlgtfc-uOmezS4qBt .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.hlgtfc-uOmezS4qBt .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #213a5c;
  border-radius: 20px;
  background: #edf5ff;
  box-shadow: 0px 0px 20px -5px #c0dbff;
}
@media (max-width: 1400px) {
  .hlgtfc-uOmezS4qBt .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .hlgtfc-uOmezS4qBt .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .hlgtfc-uOmezS4qBt .image-wrapper .image-phone {
    right: 6rem;
  }
}
.hlgtfc-uOmezS4qBt .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.hlgtfc-uOmeDeHSIi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.hlgtfc-uOmeDeHSIi .wrapper {
  background: #edf5ff;
}
.hlgtfc-uOmeDeHSIi .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmeDeHSIi .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmeDeHSIi .kerning-section-title {
  text-align: center;
  color: #000000;
}
.hlgtfc-uOmeDeHSIi .kerning-text {
  color: #000000;
}
.hlgtfc-uOmeQtQh2k {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #c0dbff;
}
.hlgtfc-uOmeQtQh2k .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmeQtQh2k .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmeQtQh2k .text-wrapper {
    margin-bottom: 2rem;
  }
}
.hlgtfc-uOmeQtQh2k .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .hlgtfc-uOmeQtQh2k .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.hlgtfc-uOmeQtQh2k img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .hlgtfc-uOmeQtQh2k img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .hlgtfc-uOmeQtQh2k .image-wrapper {
    padding: 1rem;
  }
}
.hlgtfc-uOmeQtQh2k .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmeQtQh2k .kerning-text,
.hlgtfc-uOmeQtQh2k .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOmlAhmlY9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #edf5ff;
}
.hlgtfc-uOmlAhmlY9 p {
  margin: 0;
}
@media (max-width: 991px) {
  .hlgtfc-uOmlAhmlY9 .row {
    justify-content: flex-start !important;
  }
}
.hlgtfc-uOmlAhmlY9 .kerning-section-head {
  margin-bottom: 2rem;
}
.hlgtfc-uOmlAhmlY9 .kerning-section-title {
  text-align: center;
  color: #000000;
}
.hlgtfc-uOmlAhmlY9 .kerning-section-subtitle {
  text-align: center;
}
.hlgtfc-uOmlAhmlY9 .image-wrapper {
  margin-bottom: 1rem;
}
.hlgtfc-uOmlAhmlY9 .card-container {
  display: flex;
  flex-wrap: wrap;
}
.hlgtfc-uOmlAhmlY9 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: auto;
  flex-grow: 0;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #c0dbff;
  border-width: 3px;
  border-style: dashed;
  border-color: #213a5c;
  border-radius: 30px;
  justify-content: center;
}
.hlgtfc-uOmlAhmlY9 .kerning-iconfont {
  font-size: 3rem;
  color: #cd8ad1;
}
.hlgtfc-uOmlAhmlY9 div[class*="col"] {
  margin-bottom: 2rem;
}
.hlgtfc-uOmlAhmlY9 P {
  color: #000000;
}
.hlgtfc-uOmlAhmlY9 .card-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmdPxcVUZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover,
.hlgtfc-uOmdPxcVUZ .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmdPxcVUZ .nav-link {
  position: relative;
}
.hlgtfc-uOmdPxcVUZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmdPxcVUZ .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu,
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmdPxcVUZ .nav-item:focus,
.hlgtfc-uOmdPxcVUZ .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmdPxcVUZ .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%;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmdPxcVUZ .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%;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .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;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmdPxcVUZ .dropdown-item.active,
.hlgtfc-uOmdPxcVUZ .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmdPxcVUZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmdPxcVUZ ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmdPxcVUZ .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmdPxcVUZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .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) {
  .hlgtfc-uOmdPxcVUZ .navbar {
    height: 70px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmdPxcVUZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmdPxcVUZ .container,
.hlgtfc-uOmdPxcVUZ .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmdPxcVUZ .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmdPxcVUZ .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmdPxcVUZ .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmfBb8UcX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmfBb8UcX .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfBb8UcX .row {
    padding: 0 12px;
  }
}
.hlgtfc-uOmfBb8UcX .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmfBb8UcX .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmfBb8UcX .image-wrapper {
  position: relative;
}
.hlgtfc-uOmfBb8UcX .image-wrapper::before {
  content: '';
  display: block;
  background-color: #213a5c;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfBb8UcX .image-wrapper::before {
    display: none;
  }
}
.hlgtfc-uOmfBb8UcX .image-wrapper::after {
  content: '';
  display: block;
  background-color: #edf5ff;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 0 100% 0 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfBb8UcX .image-wrapper::after {
    display: none;
  }
}
.hlgtfc-uOmfBb8UcX .image-wrapper img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 0 0 100%;
}
.hlgtfc-uOmfBb8UcX .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfBb8UcX .text-wrapper {
    padding: 60px 0 0;
  }
}
.hlgtfc-uOmfBb8UcX .text-wrapper .kerning-section-title {
  margin-bottom: 15px;
}
.hlgtfc-uOmfBb8UcX .text-wrapper .kerning-text {
  margin-bottom: 0;
}
.hlgtfc-uOmfBb8UcX .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmfBb8UcX .kerning-text {
  color: #000000;
}
.hlgtfc-uOmfNLZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.hlgtfc-uOmfNLZGIX .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmfNLZGIX .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmfNLZGIX .text-wrap {
  width: 100%;
}
.hlgtfc-uOmfNLZGIX .kerning-title {
  margin-bottom: 0;
  color: #000000;
  text-align: center;
}
.hlgtfc-uOmfNLZGIX .kerning-text {
  padding-top: 10px;
  color: #000000;
}
.hlgtfc-uOmfNLZGIX .comment-text {
  margin-top: 40px;
  color: #213a5c;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.hlgtfc-uOmfKwTO70 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0dbff;
}
.hlgtfc-uOmfKwTO70 .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmfKwTO70 .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmfKwTO70 .container-fluid {
  padding: 0;
}
.hlgtfc-uOmfKwTO70 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfKwTO70 .row {
    padding: 0 12px;
  }
}
.hlgtfc-uOmfKwTO70 .row {
  justify-content: center;
}
.hlgtfc-uOmfKwTO70 .container-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 0;
}
.hlgtfc-uOmfKwTO70 .container-wrapper .cont-wrap {
  width: 100%;
  height: 360px;
  background-color: #213a5c;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfKwTO70 .container-wrapper .cont-wrap {
    display: none;
  }
}
.hlgtfc-uOmfKwTO70 .link-wrapper {
  width: 100%;
  height: 100%;
}
.hlgtfc-uOmfKwTO70 .link-wrapper:hover .text-wrapper .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmfKwTO70 .link-wrapper:hover .text-wrapper .icon-wrapper .kerning-iconfont {
  transform: translate(20px, 0px);
}
.hlgtfc-uOmfKwTO70 .text-wrapper {
  position: relative;
  padding: 13rem 25rem 19rem 6rem;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfKwTO70 .text-wrapper {
    padding: 2rem 1rem;
  }
}
.hlgtfc-uOmfKwTO70 .text-wrapper .kerning-number {
  margin-bottom: 20px;
}
.hlgtfc-uOmfKwTO70 .text-wrapper .kerning-section-title {
  margin-bottom: 29px;
  transition: all .3s ease;
}
.hlgtfc-uOmfKwTO70 .text-wrapper .kerning-text {
  margin-bottom: 22px;
  opacity: .5;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfKwTO70 .text-wrapper .kerning-text {
    margin-bottom: 19px;
  }
}
.hlgtfc-uOmfKwTO70 .text-wrapper .icon-wrapper .kerning-iconfont {
  font-size: 16px;
  opacity: .5;
  display: inline-block;
  transition: all .3s ease;
}
.hlgtfc-uOmfKwTO70 .text-wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  height: 585px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfKwTO70 .text-wrapper img {
    position: static;
    margin-top: 64px;
    width: 100%;
    height: 400px;
  }
}
.hlgtfc-uOmfKwTO70 .kerning-number {
  color: #1c314e;
}
.hlgtfc-uOmfKwTO70 .kerning-section-title,
.hlgtfc-uOmfKwTO70 .kerning-iconfont {
  color: #1c314e;
}
.hlgtfc-uOmfKwTO70 .kerning-text {
  color: #000000;
}
.hlgtfc-uOmfKwTO70 .kerning-section-title,
.hlgtfc-uOmfKwTO70 .icon-wrapper,
.hlgtfc-uOmfKwTO70 .kerning-iconfont {
  color: #000000;
}
.hlgtfc-uOmfQIL8h3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmfQIL8h3 .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmfQIL8h3 h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.hlgtfc-uOmfQIL8h3 h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #c0dbff;
  z-index: -1;
}
.hlgtfc-uOmfQIL8h3 h1 a:hover {
  color: inherit !important;
}
.hlgtfc-uOmfQIL8h3 .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmfQIL8h3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .hlgtfc-uOmfQIL8h3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .hlgtfc-uOmfQIL8h3 .text-wrapper {
    padding: 0 2rem;
  }
}
.hlgtfc-uOmfQIL8h3 .kerning-section-title {
  color: #000000;
  text-align: center;
}
.hlgtfc-uOmfQIL8h3 .kerning-section-subtitle,
.hlgtfc-uOmfQIL8h3 .subtitle-wrap {
  color: #19303d;
}
.hlgtfc-uOmfQIL8h3 .kerning-text,
.hlgtfc-uOmfQIL8h3 .kerning-section-btn {
  color: #000000;
  text-align: center;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmdPxcVUZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover,
.hlgtfc-uOmdPxcVUZ .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmdPxcVUZ .nav-link {
  position: relative;
}
.hlgtfc-uOmdPxcVUZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmdPxcVUZ .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu,
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmdPxcVUZ .nav-item:focus,
.hlgtfc-uOmdPxcVUZ .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmdPxcVUZ .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%;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmdPxcVUZ .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%;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .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;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmdPxcVUZ .dropdown-item.active,
.hlgtfc-uOmdPxcVUZ .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmdPxcVUZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmdPxcVUZ ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmdPxcVUZ .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmdPxcVUZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .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) {
  .hlgtfc-uOmdPxcVUZ .navbar {
    height: 70px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmdPxcVUZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmdPxcVUZ .container,
.hlgtfc-uOmdPxcVUZ .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmdPxcVUZ .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmdPxcVUZ .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmdPxcVUZ .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmfZUSkBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0dbff;
}
.hlgtfc-uOmfZUSkBl .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmfZUSkBl .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmfZUSkBl .content-wrapper {
  padding: 80px 90px;
  background-color: #edf5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper .kerning-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper .kerning-section-title {
    margin-bottom: 24px;
  }
}
.hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper .kerning-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper .title-wrapper .kerning-text {
    margin-bottom: 16px;
  }
}
.hlgtfc-uOmfZUSkBl .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.hlgtfc-uOmfZUSkBl .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hlgtfc-uOmfZUSkBl .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.hlgtfc-uOmfZUSkBl .kerning-section-title {
  color: #050f0f;
}
.hlgtfc-uOmfZUSkBl .kerning-text {
  color: #050f0f;
}
.hlgtfc-uOmg0VbinB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmg0VbinB .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmg0VbinB .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmg0VbinB .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #213a5c;
}
@media (max-width: 992px) {
  .hlgtfc-uOmg0VbinB .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.hlgtfc-uOmg0VbinB .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hlgtfc-uOmg0VbinB .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.hlgtfc-uOmg0VbinB .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #ffffff;
  border: 3px solid #213a5c;
  box-shadow: 4px 4px 0 0 #213a5c;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .hlgtfc-uOmg0VbinB .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.hlgtfc-uOmg0VbinB .content-wrapper .card-wrapper .kerning-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmg0VbinB .content-wrapper .card-wrapper .kerning-section-title {
    margin-bottom: 24px;
  }
}
.hlgtfc-uOmg0VbinB .content-wrapper .card-wrapper .kerning-text {
  margin-bottom: 0;
}
.hlgtfc-uOmg0VbinB .kerning-section-title {
  color: #ff9063;
  text-align: center;
}
.hlgtfc-uOmg0VbinB .kerning-text {
  color: #050f0f;
  text-align: center;
}
.hlgtfc-uOmg0VbinB .kerning-section-title,
.hlgtfc-uOmg0VbinB .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOmgfqZ4j0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.hlgtfc-uOmgfqZ4j0 .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmgfqZ4j0 .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn:focus {
  box-shadow: none;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.hlgtfc-uOmgfqZ4j0 .title-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .title-wrapper {
    margin: 0 30px;
  }
}
.hlgtfc-uOmgfqZ4j0 .title-wrapper .kerning-section-title {
  margin-bottom: 30px;
}
.hlgtfc-uOmgfqZ4j0 .text-wrapper {
  margin-right: 160px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .text-wrapper {
    margin: 0 30px 60px;
  }
}
.hlgtfc-uOmgfqZ4j0 .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .cards {
    margin: 0 18px;
  }
}
.hlgtfc-uOmgfqZ4j0 .card:hover .kerning-section-btn .btn {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.hlgtfc-uOmgfqZ4j0 .card:hover .kerning-section-btn .btn span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.hlgtfc-uOmgfqZ4j0 .card {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .card {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .hlgtfc-uOmgfqZ4j0 .card {
    margin-bottom: 30px;
  }
}
.hlgtfc-uOmgfqZ4j0 .card:hover .card-wrapper {
  background-color: #c0dbff;
}
.hlgtfc-uOmgfqZ4j0 .card:hover .card-wrapper .card-wrap_1 {
  border-color: #213a5c;
}
.hlgtfc-uOmgfqZ4j0 .card .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  padding: 40px;
  background-color: #edf5ff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper {
    padding: 25px;
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper {
    min-height: 500px;
  }
}
.hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 {
  border-top: 2px solid #213a5c;
  padding-top: 10px;
  transition: all .3s ease;
}
.hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 .kerning-date {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 .kerning-date {
    margin-bottom: 12px;
  }
}
.hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 .kerning-card-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 .kerning-card-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_1 .kerning-card-title {
    margin-bottom: 30px;
  }
}
.hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_2 .kerning-card-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgfqZ4j0 .card .card-wrapper .card-wrap_2 .kerning-card-text {
    margin-bottom: 20px;
  }
}
.hlgtfc-uOmgfqZ4j0 .kerning-section-title {
  color: #000000;
  text-align: center;
}
.hlgtfc-uOmgfqZ4j0 .kerning-text {
  color: #000000;
}
.hlgtfc-uOmgfqZ4j0 .kerning-date {
  color: #ffffff;
}
.hlgtfc-uOmgfqZ4j0 .kerning-card-title {
  color: #FFFFFF;
}
.hlgtfc-uOmgfqZ4j0 .kerning-card-text {
  color: #000000;
}
.hlgtfc-uOmgfqZ4j0 .kerning-card-title,
.hlgtfc-uOmgfqZ4j0 .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOmgps8ovD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c0dbff;
}
.hlgtfc-uOmgps8ovD .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOmgps8ovD .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOmgps8ovD .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .hlgtfc-uOmgps8ovD .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .hlgtfc-uOmgps8ovD .container {
    padding: 0 26px;
  }
}
.hlgtfc-uOmgps8ovD .image-wrapper {
  border: 1px solid #213a5c;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgps8ovD .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.hlgtfc-uOmgps8ovD .image-wrapper .kerning-emoji {
  margin-bottom: 18px;
}
.hlgtfc-uOmgps8ovD .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgps8ovD .image-wrapper img {
    height: 300px;
  }
}
.hlgtfc-uOmgps8ovD .title-wrapper .kerning-section-subtitle {
  margin-bottom: 18px;
}
.hlgtfc-uOmgps8ovD .title-wrapper .kerning-section-title {
  margin-bottom: 18px;
}
.hlgtfc-uOmgps8ovD .title-wrapper .kerning-text {
  margin-bottom: 0;
}
.hlgtfc-uOmgps8ovD .title-wrapper .kerning-section-btn {
  margin-top: 40px;
}
.hlgtfc-uOmgps8ovD .kerning-section-title {
  color: #ffffff;
}
.hlgtfc-uOmgps8ovD .kerning-section-subtitle {
  color: #000000;
}
.hlgtfc-uOmgps8ovD .kerning-text {
  color: #000000;
}
.hlgtfc-uOmgps8ovD .kerning-section-title,
.hlgtfc-uOmgps8ovD .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmdPxcVUZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover,
.hlgtfc-uOmdPxcVUZ .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmdPxcVUZ .nav-link {
  position: relative;
}
.hlgtfc-uOmdPxcVUZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmdPxcVUZ .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu,
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmdPxcVUZ .nav-item:focus,
.hlgtfc-uOmdPxcVUZ .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmdPxcVUZ .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%;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmdPxcVUZ .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%;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .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;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmdPxcVUZ .dropdown-item.active,
.hlgtfc-uOmdPxcVUZ .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmdPxcVUZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmdPxcVUZ ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmdPxcVUZ .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmdPxcVUZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .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) {
  .hlgtfc-uOmdPxcVUZ .navbar {
    height: 70px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmdPxcVUZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmdPxcVUZ .container,
.hlgtfc-uOmdPxcVUZ .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmdPxcVUZ .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmdPxcVUZ .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmdPxcVUZ .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOml2HOf9W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOml2HOf9W .kerning-fallback-image.disabled {
  display: none;
}
.hlgtfc-uOml2HOf9W .kerning-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hlgtfc-uOml2HOf9W .cont-wrap {
  justify-content: center;
}
.hlgtfc-uOml2HOf9W .title-wrapper .kerning-section-title {
  margin-bottom: 64px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .title-wrapper .kerning-section-title {
    margin-bottom: 46px;
    width: 100%;
  }
}
.hlgtfc-uOml2HOf9W .content-wrapper .kerning-text {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .content-wrapper .kerning-text {
    margin-bottom: 22px;
  }
}
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper {
    margin-bottom: 22px;
  }
}
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper .list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #000000;
}
.hlgtfc-uOml2HOf9W .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper {
    margin-bottom: 46px;
  }
}
.hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .kerning-iconfont,
.hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .kerning-iconfont {
  background-color: #000000;
}
.hlgtfc-uOml2HOf9W .content-wrapper .social-wrapper .social-wrap .soc-item a .kerning-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #ffffff;
  background-color: #212529;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.hlgtfc-uOml2HOf9W .content-wrap .kerning-section-subtitle {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .content-wrap .kerning-section-subtitle {
    margin-bottom: 22px;
  }
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row {
  position: relative;
  z-index: 1;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group {
  margin-bottom: 10px !important;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 14px 20px;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: none;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control:hover,
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-weight: 700 !important;
  opacity: .7;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.hlgtfc-uOml2HOf9W .content-wrap .dragArea.row .kerning-section-btn {
  width: 100%;
}
.hlgtfc-uOml2HOf9W .kerning-section-title {
  color: #212529;
}
.hlgtfc-uOml2HOf9W .kerning-section-subtitle {
  color: #51565c;
}
.hlgtfc-uOml2HOf9W .kerning-text {
  color: #000000;
}
.hlgtfc-uOml2HOf9W .list {
  color: #212529;
}
.hlgtfc-uOml2HOf9W .kerning-section-subtitle,
.hlgtfc-uOml2HOf9W .kerning-section-btn {
  color: #000000;
}
.hlgtfc-uOml2HOf9W .list,
.hlgtfc-uOml2HOf9W .item-wrap,
.hlgtfc-uOml2HOf9W .social-wrapper {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmdPxcVUZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover,
.hlgtfc-uOmdPxcVUZ .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmdPxcVUZ .nav-link {
  position: relative;
}
.hlgtfc-uOmdPxcVUZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmdPxcVUZ .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown-menu,
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmdPxcVUZ .nav-item:focus,
.hlgtfc-uOmdPxcVUZ .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmdPxcVUZ .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmdPxcVUZ .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%;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmdPxcVUZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmdPxcVUZ .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%;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmdPxcVUZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmdPxcVUZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .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;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmdPxcVUZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmdPxcVUZ .dropdown-item.active,
.hlgtfc-uOmdPxcVUZ .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmdPxcVUZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmdPxcVUZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmdPxcVUZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmdPxcVUZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmdPxcVUZ ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmdPxcVUZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmdPxcVUZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmdPxcVUZ .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmdPxcVUZ .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmdPxcVUZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmdPxcVUZ .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) {
  .hlgtfc-uOmdPxcVUZ .navbar {
    height: 70px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmdPxcVUZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmdPxcVUZ .container,
.hlgtfc-uOmdPxcVUZ .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmdPxcVUZ .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmdPxcVUZ .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmdPxcVUZ .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmdPxcVUZ .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmdPxcVUZ .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmdPxcVUZ .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmdPxcVUZ .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmdPxcVUZ .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmgK27uf2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmgK27uf2 .geometry {
  position: absolute;
}
.hlgtfc-uOmgK27uf2 .geometry__triangle {
  width: 128px;
  height: 88px;
}
.hlgtfc-uOmgK27uf2 .geometry_left {
  left: -70px;
}
.hlgtfc-uOmgK27uf2 .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.hlgtfc-uOmgK27uf2 .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #c0dbff;
  border-radius: 100px;
  margin: 0.5rem;
}
.hlgtfc-uOmgK27uf2 .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.hlgtfc-uOmgK27uf2 blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.hlgtfc-uOmgK27uf2 blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .hlgtfc-uOmgK27uf2 blockquote {
    padding: 2rem 1rem;
  }
  .hlgtfc-uOmgK27uf2 .geometry {
    position: absolute;
  }
  .hlgtfc-uOmgK27uf2 .geometry__square,
  .hlgtfc-uOmgK27uf2 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .hlgtfc-uOmgK27uf2 .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .hlgtfc-uOmgK27uf2 blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .hlgtfc-uOmgK27uf2 .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .hlgtfc-uOmgK27uf2 .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .hlgtfc-uOmgK27uf2 blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .hlgtfc-uOmgK27uf2 .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .hlgtfc-uOmgK27uf2 blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.hlgtfc-uOmgK27uf2 .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmgK27uf2 .kerning-text {
  color: #000000;
  text-align: left;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmgYa2LBN .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmgYa2LBN .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmgYa2LBN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmgYa2LBN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmgYa2LBN .dropdown-item:hover,
.hlgtfc-uOmgYa2LBN .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmgYa2LBN .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmgYa2LBN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmgYa2LBN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmgYa2LBN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmgYa2LBN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmgYa2LBN .nav-link {
  position: relative;
}
.hlgtfc-uOmgYa2LBN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmgYa2LBN .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmgYa2LBN .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmgYa2LBN .dropdown-menu,
.hlgtfc-uOmgYa2LBN .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmgYa2LBN .nav-item:focus,
.hlgtfc-uOmgYa2LBN .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmgYa2LBN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmgYa2LBN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmgYa2LBN .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmgYa2LBN .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmgYa2LBN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmgYa2LBN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmgYa2LBN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmgYa2LBN .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmgYa2LBN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmgYa2LBN .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmgYa2LBN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmgYa2LBN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmgYa2LBN .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%;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmgYa2LBN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmgYa2LBN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmgYa2LBN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmgYa2LBN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmgYa2LBN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmgYa2LBN .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%;
  }
  .hlgtfc-uOmgYa2LBN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmgYa2LBN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmgYa2LBN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmgYa2LBN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmgYa2LBN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmgYa2LBN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmgYa2LBN .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmgYa2LBN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmgYa2LBN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmgYa2LBN .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;
}
.hlgtfc-uOmgYa2LBN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmgYa2LBN .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmgYa2LBN .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmgYa2LBN .dropdown-item.active,
.hlgtfc-uOmgYa2LBN .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmgYa2LBN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmgYa2LBN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmgYa2LBN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmgYa2LBN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmgYa2LBN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmgYa2LBN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmgYa2LBN ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmgYa2LBN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmgYa2LBN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmgYa2LBN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmgYa2LBN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmgYa2LBN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmgYa2LBN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmgYa2LBN .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmgYa2LBN .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmgYa2LBN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmgYa2LBN .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) {
  .hlgtfc-uOmgYa2LBN .navbar {
    height: 70px;
  }
  .hlgtfc-uOmgYa2LBN .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmgYa2LBN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmgYa2LBN .container,
.hlgtfc-uOmgYa2LBN .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmgYa2LBN .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmgYa2LBN .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmgYa2LBN .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmgYa2LBN .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmgYa2LBN .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmgYa2LBN .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmgYa2LBN .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmgYa2LBN .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmgYa2LBN .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmgYa2LBN .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmgYa2LBN .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmgYa2LBN .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmgYa2LBN .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmgYa2LBN .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmgYa2LBN .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmllltusP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmllltusP .geometry {
  position: absolute;
}
.hlgtfc-uOmllltusP .geometry__triangle {
  width: 128px;
  height: 88px;
}
.hlgtfc-uOmllltusP .geometry_left {
  left: -70px;
}
.hlgtfc-uOmllltusP .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.hlgtfc-uOmllltusP .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #c0dbff;
  border-radius: 100px;
  margin: 0.5rem;
}
.hlgtfc-uOmllltusP .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.hlgtfc-uOmllltusP blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.hlgtfc-uOmllltusP blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .hlgtfc-uOmllltusP blockquote {
    padding: 2rem 1rem;
  }
  .hlgtfc-uOmllltusP .geometry {
    position: absolute;
  }
  .hlgtfc-uOmllltusP .geometry__square,
  .hlgtfc-uOmllltusP .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .hlgtfc-uOmllltusP .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .hlgtfc-uOmllltusP blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .hlgtfc-uOmllltusP .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .hlgtfc-uOmllltusP .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .hlgtfc-uOmllltusP blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .hlgtfc-uOmllltusP .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .hlgtfc-uOmllltusP blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.hlgtfc-uOmllltusP .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmllltusP .kerning-text {
  color: #000000;
  text-align: left;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}
.hlgtfc-uOmh03MeTo .navbar-dropdown {
  position: relative !important;
}
.hlgtfc-uOmh03MeTo .dropdown-item:before {
  font-family: pixel2 !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;
}
.hlgtfc-uOmh03MeTo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.hlgtfc-uOmh03MeTo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.hlgtfc-uOmh03MeTo .dropdown-item:hover,
.hlgtfc-uOmh03MeTo .dropdown-item:focus {
  background: #c0dbff !important;
  color: white !important;
}
.hlgtfc-uOmh03MeTo .dropdown-item:hover span {
  color: white;
}
.hlgtfc-uOmh03MeTo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.hlgtfc-uOmh03MeTo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hlgtfc-uOmh03MeTo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.hlgtfc-uOmh03MeTo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.hlgtfc-uOmh03MeTo .nav-link {
  position: relative;
}
.hlgtfc-uOmh03MeTo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .hlgtfc-uOmh03MeTo .container {
    flex-wrap: nowrap;
  }
}
.hlgtfc-uOmh03MeTo .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.hlgtfc-uOmh03MeTo .dropdown-menu,
.hlgtfc-uOmh03MeTo .navbar.opened {
  background: #ffffff !important;
}
.hlgtfc-uOmh03MeTo .nav-item:focus,
.hlgtfc-uOmh03MeTo .nav-link:focus {
  outline: none;
}
.hlgtfc-uOmh03MeTo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmh03MeTo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.hlgtfc-uOmh03MeTo .dropdown .dropdown-menu .dropdown-item .kerning-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.hlgtfc-uOmh03MeTo .dropdown .dropdown-menu .dropdown-item .kerning-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.hlgtfc-uOmh03MeTo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.hlgtfc-uOmh03MeTo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.hlgtfc-uOmh03MeTo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.hlgtfc-uOmh03MeTo .navbar.opened {
  transition: all 0.3s;
}
.hlgtfc-uOmh03MeTo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.hlgtfc-uOmh03MeTo .navbar .navbar-logo img {
  width: auto;
}
.hlgtfc-uOmh03MeTo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed {
  justify-content: center;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .hlgtfc-uOmh03MeTo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.hlgtfc-uOmh03MeTo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.hlgtfc-uOmh03MeTo .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%;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.hlgtfc-uOmh03MeTo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hlgtfc-uOmh03MeTo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .hlgtfc-uOmh03MeTo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .hlgtfc-uOmh03MeTo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .hlgtfc-uOmh03MeTo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .hlgtfc-uOmh03MeTo .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%;
  }
  .hlgtfc-uOmh03MeTo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .hlgtfc-uOmh03MeTo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .hlgtfc-uOmh03MeTo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .hlgtfc-uOmh03MeTo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .hlgtfc-uOmh03MeTo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .hlgtfc-uOmh03MeTo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.hlgtfc-uOmh03MeTo .navbar.navbar-short {
  min-height: 60px;
}
.hlgtfc-uOmh03MeTo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.hlgtfc-uOmh03MeTo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.hlgtfc-uOmh03MeTo .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;
}
.hlgtfc-uOmh03MeTo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.hlgtfc-uOmh03MeTo .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .hlgtfc-uOmh03MeTo .navbar-brand {
    padding-right: 40px;
  }
}
.hlgtfc-uOmh03MeTo .dropdown-item.active,
.hlgtfc-uOmh03MeTo .dropdown-item:active {
  background-color: transparent;
}
.hlgtfc-uOmh03MeTo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.hlgtfc-uOmh03MeTo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.hlgtfc-uOmh03MeTo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.hlgtfc-uOmh03MeTo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.hlgtfc-uOmh03MeTo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.hlgtfc-uOmh03MeTo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.hlgtfc-uOmh03MeTo ul.navbar-nav {
  flex-wrap: wrap;
}
.hlgtfc-uOmh03MeTo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.hlgtfc-uOmh03MeTo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.hlgtfc-uOmh03MeTo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmh03MeTo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmh03MeTo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.hlgtfc-uOmh03MeTo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.hlgtfc-uOmh03MeTo .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .hlgtfc-uOmh03MeTo .navbar-dropdown {
    padding: 0 1rem;
  }
}
.hlgtfc-uOmh03MeTo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlgtfc-uOmh03MeTo .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) {
  .hlgtfc-uOmh03MeTo .navbar {
    height: 70px;
  }
  .hlgtfc-uOmh03MeTo .navbar.opened {
    height: auto;
  }
  .hlgtfc-uOmh03MeTo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.hlgtfc-uOmh03MeTo .container,
.hlgtfc-uOmh03MeTo .container-fluid {
  flex-wrap: wrap;
}
.hlgtfc-uOmh03MeTo .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.hlgtfc-uOmh03MeTo .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.hlgtfc-uOmh03MeTo .contacts-menu .kerning-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .hlgtfc-uOmh03MeTo .contacts-menu {
    display: none;
  }
}
.hlgtfc-uOmh03MeTo .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.hlgtfc-uOmh03MeTo .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #c0dbff;
  margin-right: 24px;
  transition: 0.3s all;
}
.hlgtfc-uOmh03MeTo .icon-box:hover {
  transform: scale(1.1);
}
.hlgtfc-uOmh03MeTo .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .hlgtfc-uOmh03MeTo .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hlgtfc-uOmh03MeTo .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .hlgtfc-uOmh03MeTo .navbar-collapse .kerning-section-btn {
    margin-left: auto;
  }
}
.hlgtfc-uOmh03MeTo .navbar-collapse .kerning-section-btn .btn-black {
  color: #c0dbff !important;
}
@media (max-width: 577px) {
  .hlgtfc-uOmh03MeTo .navbar-collapse .kerning-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .hlgtfc-uOmh03MeTo .navbar-collapse .kerning-section-btn .btn {
    flex-grow: 1;
  }
}
.hlgtfc-uOmh03MeTo .navbar-collapse .nav-link:hover {
  color: #c0dbff !important;
}
.hlgtfc-uOmlmXPjPd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf5ff;
}
.hlgtfc-uOmlmXPjPd .geometry {
  position: absolute;
}
.hlgtfc-uOmlmXPjPd .geometry__triangle {
  width: 128px;
  height: 88px;
}
.hlgtfc-uOmlmXPjPd .geometry_left {
  left: -70px;
}
.hlgtfc-uOmlmXPjPd .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.hlgtfc-uOmlmXPjPd .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #c0dbff;
  border-radius: 100px;
  margin: 0.5rem;
}
.hlgtfc-uOmlmXPjPd .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.hlgtfc-uOmlmXPjPd blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.hlgtfc-uOmlmXPjPd blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .hlgtfc-uOmlmXPjPd blockquote {
    padding: 2rem 1rem;
  }
  .hlgtfc-uOmlmXPjPd .geometry {
    position: absolute;
  }
  .hlgtfc-uOmlmXPjPd .geometry__square,
  .hlgtfc-uOmlmXPjPd .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .hlgtfc-uOmlmXPjPd .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .hlgtfc-uOmlmXPjPd blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .hlgtfc-uOmlmXPjPd .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .hlgtfc-uOmlmXPjPd .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .hlgtfc-uOmlmXPjPd blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .hlgtfc-uOmlmXPjPd .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .hlgtfc-uOmlmXPjPd blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.hlgtfc-uOmlmXPjPd .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmlmXPjPd .kerning-text {
  color: #000000;
  text-align: left;
}
.hlgtfc-uOmxVoQgQu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .container {
    padding: 0 24px;
  }
}
.hlgtfc-uOmxVoQgQu .row {
  justify-content: space-between;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper {
  display: flex;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .logo-wrap img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px !important;
}
.hlgtfc-uOmxVoQgQu .logo-wrapper .border-wrap {
  width: 100%;
  border-bottom: 1px solid #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper {
  padding: 32px 0 0 32px;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .content-wrapper {
    padding: 24px 0;
  }
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-section-title {
  margin-bottom: 24px;
}
.hlgtfc-uOmxVoQgQu .content-wrapper .kerning-copy {
  margin-bottom: 0;
  line-height: 1.5;
}
.hlgtfc-uOmxVoQgQu .nav-list {
  padding: 0 32px 0 0;
  line-height: 1.5;
  list-style-type: none;
  margin: 0;
}
@media (max-width: 992px) {
  .hlgtfc-uOmxVoQgQu .nav-list {
    padding: 0;
  }
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap {
  position: relative;
  border-left: 1px solid #213a5c;
  border-bottom: 1px solid #213a5c;
  padding: 12px 32px;
  transition: all 0.3s ease-in-out;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus {
  color: #213a5c;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:hover::before,
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:focus::before {
  opacity: 1;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap:last-child {
  border-bottom: none;
}
.hlgtfc-uOmxVoQgQu .nav-list .item-wrap::before {
  content: '';
  background-color: #213a5c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 13px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.hlgtfc-uOmxVoQgQu .kerning-section-title {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list {
  color: #F9F6E0;
}
.hlgtfc-uOmxVoQgQu .kerning-copy {
  color: #000000;
}
.hlgtfc-uOmxVoQgQu .list,
.hlgtfc-uOmxVoQgQu .item-wrap {
  color: #000000;
}

/* 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 */
@keyframes flipIn {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  50% {
    opacity: 1;
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipOut {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: flipIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: flipOut 0.6s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes stretchOut {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.navbar-brand {
    animation: stretchOut 1.2s ease-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 8: skew slight */
a, button, .btn {
  transition: transform 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: skewX(5deg);
}
/* endmainanimations */
