.btn {
  border-width: 2px;
}
body {
  font-family: Hanken Grotesk;
}
.display-1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 76px;
}
.display-1 > .checkbox-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 61px;
}
.display-2 > .checkbox-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
}
.display-4 > .checkbox-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.8rem;
  line-height: 49px;
}
.display-5 > .checkbox-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  line-height: 1.55;
}
.display-7 > .checkbox-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 100px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #006ed8 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #080813 !important;
}
.bg-danger {
  background-color: #0739fa !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0739fa !important;
  border-color: #0739fa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0325a7 !important;
  border-color: #0325a7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0325a7 !important;
  border-color: #0325a7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #006ed8 !important;
  border-color: #006ed8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #004281 !important;
  border-color: #004281 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #004281 !important;
  border-color: #004281 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #080813 !important;
  border-color: #080813 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0739fa !important;
  border-color: #0739fa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0325a7 !important;
  border-color: #0325a7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0325a7 !important;
  border-color: #0325a7 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #0739fa;
  color: #0739fa;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0325a7 !important;
  background-color: transparent!important;
  border-color: #0325a7 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0739fa !important;
  border-color: #0739fa !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: #006ed8;
  color: #006ed8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #004281 !important;
  background-color: transparent!important;
  border-color: #004281 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #006ed8 !important;
  border-color: #006ed8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #080813;
  color: #080813;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #080813 !important;
  border-color: #080813 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #0739fa;
  color: #0739fa;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0325a7 !important;
  background-color: transparent!important;
  border-color: #0325a7 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0739fa !important;
  border-color: #0739fa !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: #ffffff !important;
}
.text-secondary {
  color: #0739fa !important;
}
.text-success {
  color: #006ed8 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #080813 !important;
}
.text-danger {
  color: #0739fa !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #032298 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #003a72 !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: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #032298 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #080813;
}
.alert-danger {
  background-color: #0739fa;
}
.checkbox-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.checkbox-gallery-filter li a {
  border-radius: 100px !important;
}
.checkbox-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.checkbox-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.checkbox-plan-header.bg-primary .checkbox-plan-subtitle,
.checkbox-plan-header.bg-primary .checkbox-plan-price-desc {
  color: #ffffff;
}
.checkbox-plan-header.bg-success .checkbox-plan-subtitle,
.checkbox-plan-header.bg-success .checkbox-plan-price-desc {
  color: #a5d3ff;
}
.checkbox-plan-header.bg-info .checkbox-plan-subtitle,
.checkbox-plan-header.bg-info .checkbox-plan-price-desc {
  color: #ffffff;
}
.checkbox-plan-header.bg-warning .checkbox-plan-subtitle,
.checkbox-plan-header.bg-warning .checkbox-plan-price-desc {
  color: #a6a6da;
}
.checkbox-plan-header.bg-danger .checkbox-plan-subtitle,
.checkbox-plan-header.bg-danger .checkbox-plan-price-desc {
  color: #cfd9fe;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control > .checkbox-iconfont {
  font-size: 1.40625rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .checkbox-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.checkbox-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.checkbox-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.checkbox-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.checkbox-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: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0739fa !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='%23ffffff' %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;
}
.checkbox-section-btn .btn,
.checkbox-section-btn-main .btn {
  min-height: 77px;
  min-width: 280px;
  padding: 9px 15px;
  box-shadow: none;
}
@media (max-width: 992px) {
  .checkbox-section-btn .btn,
  .checkbox-section-btn-main .btn {
    min-height: 71px;
    min-width: 180px;
  }
}
.checkbox-section-btn .btn:hover,
.checkbox-section-btn-main .btn:hover,
.checkbox-section-btn .btn:focus,
.checkbox-section-btn-main .btn:focus {
  color: #ffffff !important;
  border: none;
  background-color: #0739fa !important;
}
.checkbox-section-btn .btn-primary-outline,
.checkbox-section-btn-main .btn-primary-outline {
  border: 2px solid #ffffff;
}
.checkbox-section-btn .btn-secondary-outline,
.checkbox-section-btn-main .btn-secondary-outline {
  border: 2px solid #0739fa;
}
.checkbox-section-btn .btn-success-outline,
.checkbox-section-btn-main .btn-success-outline {
  border: 2px solid #006ed8;
}
.checkbox-section-btn .btn-info-outline,
.checkbox-section-btn-main .btn-info-outline {
  border: 2px solid #ffffff;
}
.checkbox-section-btn .btn-warning-outline,
.checkbox-section-btn-main .btn-warning-outline {
  border: 2px solid #080813;
}
.checkbox-section-btn .btn-danger-outline,
.checkbox-section-btn-main .btn-danger-outline {
  border: 2px solid #0739fa;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uORlwypqCo {
  background-color: #0782fa;
}
.xgkf51o-uORlwypqCo .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORlwypqCo .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORlwypqCo .title-wrapper {
  padding: 50px 80px 0 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORlwypqCo .title-wrapper {
    margin-bottom: 32px;
    padding: 0;
  }
}
.xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-btn {
  position: relative;
}
.xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-btn::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: -3rem;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  filter: blur(25px) blur(25px);
  background-color: #0739fa;
}
.xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-btn .btn {
  position: relative;
  z-index: 1;
  min-height: 77px;
  min-width: 280px;
}
@media (max-width: 992px) {
  .xgkf51o-uORlwypqCo .title-wrapper .checkbox-section-btn .btn {
    min-height: 71px;
    min-width: 250px;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.xgkf51o-uORlwypqCo .image-wrapper::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100%;
  width: 400px;
  height: 400px;
  filter: blur(35px) blur(35px);
  background-color: #0739fa;
}
@media (max-width: 992px) {
  .xgkf51o-uORlwypqCo .image-wrapper::before {
    width: 250px;
    height: 250px;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper::after {
  content: '';
  position: absolute;
  right: .3rem;
  bottom: -3rem;
  border-radius: 100%;
  border: 2px solid #ffffff;
  width: 550px;
  height: 550px;
  background-color: transparent;
}
@media (max-width: 992px) {
  .xgkf51o-uORlwypqCo .image-wrapper::after {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .xgkf51o-uORlwypqCo .image-wrapper::after {
    display: none;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper img {
  border-radius: 10px;
  box-shadow: 6px 6px 20px #006ed8;
}
.xgkf51o-uORlwypqCo .image-wrapper .image_1 {
  width: 250px;
  max-height: 250px;
  object-fit: cover;
  z-index: 2;
  position: relative;
  transform: rotate(5deg);
}
@media (max-width: 768px) {
  .xgkf51o-uORlwypqCo .image-wrapper .image_1 {
    width: 100%;
    height: 250px;
    margin: 0 0 32px 0;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper .image_2 {
  display: block;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 1rem 0 0 auto;
  z-index: 2;
  position: relative;
  transform: rotate(18deg);
}
@media (max-width: 768px) {
  .xgkf51o-uORlwypqCo .image-wrapper .image_2 {
    width: 100%;
    height: 250px;
    transform: rotate(5deg);
    margin: 0 0 32px 0;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper .image_3 {
  width: 250px;
  height: 250px;
  margin: 0 0 0 -2rem;
  object-fit: cover;
  z-index: 1;
  transform: rotate(-5deg);
}
@media (max-width: 768px) {
  .xgkf51o-uORlwypqCo .image-wrapper .image_3 {
    width: 100%;
    height: 250px;
    margin: 0 0 32px 0;
  }
}
.xgkf51o-uORlwypqCo .image-wrapper .image_4 {
  width: 280px;
  height: 250px;
  margin: 0 0 0 auto;
  object-fit: cover;
  z-index: 2;
  transform: rotate(-2deg);
}
@media (max-width: 768px) {
  .xgkf51o-uORlwypqCo .image-wrapper .image_4 {
    margin: 0;
    width: 100%;
    height: 250px;
  }
}
.xgkf51o-uORlwypqCo .checkbox-section-title {
  color: #101511;
}
.xgkf51o-uORlwypqCo .checkbox-text {
  color: #6e716f;
}
.xgkf51o-uORlwypqCo .checkbox-section-title,
.xgkf51o-uORlwypqCo .checkbox-section-btn {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORID5P4H0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xgkf51o-uORID5P4H0 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORID5P4H0 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORID5P4H0 .container {
  max-width: 1280px;
}
.xgkf51o-uORID5P4H0 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #0782fa;
  padding: 4rem 0;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .xgkf51o-uORID5P4H0 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .xgkf51o-uORID5P4H0 .content-wrapper {
    padding: 40px 6vw;
  }
}
.xgkf51o-uORID5P4H0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .xgkf51o-uORID5P4H0 .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.xgkf51o-uORID5P4H0 .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.xgkf51o-uORID5P4H0 .checkbox-text {
  color: #ffffff;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .xgkf51o-uORID5P4H0 .checkbox-text {
    margin-top: 16px;
  }
}
.xgkf51o-uORID5P4H0 .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  left: -6rem;
}
@media (max-width: 1599px) {
  .xgkf51o-uORID5P4H0 .img-container {
    left: -4vw;
  }
}
@media (max-width: 1400px) {
  .xgkf51o-uORID5P4H0 .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORID5P4H0 .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.xgkf51o-uORID5P4H0 .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #0782fa 2.76%, #ffffff 29.66%, #0782fa 61%, #0739fa 99.93%);
}
@media (max-width: 767px) {
  .xgkf51o-uORID5P4H0 .image-wrapper {
    padding: 20px;
  }
}
.xgkf51o-uORID5P4H0 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #0782fa 2.76%, #ffffff 29.66%, #0782fa 61%, #0739fa 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.xgkf51o-uORID5P4H0 .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.xgkf51o-uORID5P4H0 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xgkf51o-uORID5P4H0 .card-title,
.xgkf51o-uORID5P4H0 .checkbox-section-btn {
  text-align: center;
  color: #ffffff;
}
.xgkf51o-uORK32oi8X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.xgkf51o-uORK32oi8X .media-container-row {
  justify-content: space-between;
}
.xgkf51o-uORK32oi8X .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .xgkf51o-uORK32oi8X .text-content {
    max-width: none;
  }
}
.xgkf51o-uORK32oi8X .container {
  z-index: 1;
}
.xgkf51o-uORK32oi8X .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
}
.xgkf51o-uORK32oi8X .bg_column-reverse {
  flex-direction: column-reverse;
}
.xgkf51o-uORK32oi8X .bg__white {
  background: #fff;
  height: 100%;
}
.xgkf51o-uORK32oi8X .bg__gray {
  background: #fcf5e6;
  height: 100%;
}
.xgkf51o-uORK32oi8X .box-shadow {
  position: relative;
  box-shadow: 0 4px 8px 0 #1a1a0159;
  border-radius: 24px;
  padding: 4rem 19rem;
  margin: 0;
  background: #fff;
}
@media (max-width: 1400px) {
  .xgkf51o-uORK32oi8X .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .xgkf51o-uORK32oi8X .box-shadow {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .xgkf51o-uORK32oi8X .icons {
    justify-content: center !important;
  }
  .xgkf51o-uORK32oi8X .box-shadow {
    width: 100%;
    padding: 3rem 1rem;
  }
  .xgkf51o-uORK32oi8X .text-content * {
    text-align: center;
  }
}
.xgkf51o-uORK32oi8X .geometry {
  position: absolute;
}
.xgkf51o-uORK32oi8X .geometry__square,
.xgkf51o-uORK32oi8X .geometry__circle {
  width: 88px;
  height: 88px;
}
.xgkf51o-uORK32oi8X .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.xgkf51o-uORK32oi8X .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #0739fa;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.xgkf51o-uORK32oi8X .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.xgkf51o-uORK32oi8X .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #0739fa;
  border-radius: 100px;
  margin: 0.5rem;
}
.xgkf51o-uORK32oi8X .geometry_top-right {
  top: -50px;
  right: 30%;
}
.xgkf51o-uORK32oi8X .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
@media (min-width: 768px) {
  .xgkf51o-uORK32oi8X .geometry__square-bg {
    transition: transform .3s;
  }
  .xgkf51o-uORK32oi8X .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .xgkf51o-uORK32oi8X .box-shadow:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .xgkf51o-uORK32oi8X .box-shadow:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORK32oi8X .geometry {
    position: absolute;
  }
  .xgkf51o-uORK32oi8X .geometry__circle,
  .xgkf51o-uORK32oi8X .geometry__circle-bg,
  .xgkf51o-uORK32oi8X .geometry__square,
  .xgkf51o-uORK32oi8X .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.xgkf51o-uORK32oi8X P {
  color: #000000;
}
.xgkf51o-uORK32oi8X .checkbox-section-title {
  color: #000000;
}
.xgkf51o-uORL0mbV36 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.xgkf51o-uORL0mbV36 .checkbox-iconfont {
  display: block;
  font-size: 4rem;
  color: #0782fa;
  margin-bottom: 1.5rem;
}
.xgkf51o-uORL0mbV36 .col-lg-4,
.xgkf51o-uORL0mbV36 .col-12 {
  padding: 0 2rem;
}
.xgkf51o-uORL0mbV36 .row {
  margin: 0 -2rem;
  justify-content: center;
}
.xgkf51o-uORL0mbV36 .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .xgkf51o-uORL0mbV36 .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORL0mbV36 .card-wrapper {
    margin-bottom: 3rem;
  }
}
.xgkf51o-uORL0mbV36 .card-title,
.xgkf51o-uORL0mbV36 .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORL0mbV36 .card-text {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORL0mbV36 .checkbox-section-subtitle {
  color: #6c758f;
}
.xgkf51o-uORL0mbV36 .checkbox-section-title {
  color: #36187d;
}
.xgkf51o-uORL0mbV36 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORL0mbV36 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uORLp08brR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0782fa;
}
.xgkf51o-uORLp08brR .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORLp08brR .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORLp08brR .container {
  max-width: 1600px;
}
.xgkf51o-uORLp08brR .row {
  justify-content: center;
}
.xgkf51o-uORLp08brR .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .content-container {
    flex-wrap: wrap;
  }
}
.xgkf51o-uORLp08brR .info-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .info-container {
    width: 100%;
  }
}
.xgkf51o-uORLp08brR .title-container {
  margin-bottom: 50px;
}
.xgkf51o-uORLp08brR .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .checkbox-section-title {
    text-align: center !important;
  }
}
.xgkf51o-uORLp08brR .checkbox-section-subtitle {
  color: #ffffff;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .checkbox-section-subtitle {
    text-align: center !important;
    margin-top: 1rem;
  }
}
.xgkf51o-uORLp08brR .btn-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: auto;
}
.xgkf51o-uORLp08brR .text-container {
  max-width: 400px;
  margin: 12px auto 0 0;
  width: 100%;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .text-container {
    margin: 24px auto;
  }
}
.xgkf51o-uORLp08brR .checkbox-text {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .checkbox-text {
    text-align: center !important;
  }
}
.xgkf51o-uORLp08brR .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .text-item-container {
    flex-wrap: wrap;
  }
}
.xgkf51o-uORLp08brR .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.xgkf51o-uORLp08brR .icon-text {
  color: #AE5EFF;
}
.xgkf51o-uORLp08brR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.xgkf51o-uORLp08brR .iconfont-wrapper .checkbox-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.xgkf51o-uORLp08brR .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.xgkf51o-uORLp08brR form {
  width: 100%;
}
.xgkf51o-uORLp08brR form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.xgkf51o-uORLp08brR form p {
  color: #ffffff;
}
.xgkf51o-uORLp08brR form .checkbox-section-btn {
  width: max-content;
  max-width: 50%;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR form .checkbox-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.xgkf51o-uORLp08brR form .checkbox-section-btn .btn {
  padding: 10px 40px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR form .checkbox-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.xgkf51o-uORLp08brR form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.xgkf51o-uORLp08brR form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.xgkf51o-uORLp08brR form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #04208b 2.76%, #0739fa 29.66%, #006ed8 61%, #66b3ff 99.93%);
}
.xgkf51o-uORLp08brR form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #04208b 2.76%, #0739fa 29.66%, #006ed8 61%, #66b3ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.xgkf51o-uORLp08brR form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR form .group-border {
    flex-wrap: wrap;
  }
}
.xgkf51o-uORLp08brR form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.xgkf51o-uORLp08brR form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form .form-control::-moz-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form .form-control:-moz-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form .form-control:-ms-input-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form .form-control:hover {
  outline: none !important;
}
.xgkf51o-uORLp08brR form select {
  color: #939292 !important;
}
.xgkf51o-uORLp08brR form textarea {
  height: 200px;
}
.xgkf51o-uORLp08brR form input:active,
.xgkf51o-uORLp08brR form textarea:active,
.xgkf51o-uORLp08brR form input:focus,
.xgkf51o-uORLp08brR form textarea:focus {
  background-color: #FFFFFF !important;
}
.xgkf51o-uORLp08brR form input:active::-webkit-input-placeholder,
.xgkf51o-uORLp08brR form textarea:active::-webkit-input-placeholder,
.xgkf51o-uORLp08brR form input:focus::-webkit-input-placeholder,
.xgkf51o-uORLp08brR form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form input:active::-moz-placeholder,
.xgkf51o-uORLp08brR form textarea:active::-moz-placeholder,
.xgkf51o-uORLp08brR form input:focus::-moz-placeholder,
.xgkf51o-uORLp08brR form textarea:focus::-moz-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form input:active:-moz-placeholder,
.xgkf51o-uORLp08brR form textarea:active:-moz-placeholder,
.xgkf51o-uORLp08brR form input:focus:-moz-placeholder,
.xgkf51o-uORLp08brR form textarea:focus:-moz-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form input:active:-ms-input-placeholder,
.xgkf51o-uORLp08brR form textarea:active:-ms-input-placeholder,
.xgkf51o-uORLp08brR form input:focus:-ms-input-placeholder,
.xgkf51o-uORLp08brR form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.xgkf51o-uORLp08brR form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.xgkf51o-uORLp08brR form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.xgkf51o-uORLp08brR form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.xgkf51o-uORLp08brR form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.xgkf51o-uORLp08brR form .form-check-input:focus,
.xgkf51o-uORLp08brR form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.xgkf51o-uORLp08brR form .form-check-input:checked {
  border-color: #ffffff !important;
}
.xgkf51o-uORLp08brR .img-container {
  width: 50%;
}
@media (max-width: 991px) {
  .xgkf51o-uORLp08brR .img-container {
    width: 100%;
    margin-top: 40px;
  }
}
.xgkf51o-uORLp08brR .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(90deg, #04208b 2.76%, #0739fa 29.66%, #006ed8 61%, #66b3ff 99.93%);
}
.xgkf51o-uORLp08brR .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(90deg, #04208b 2.76%, #0739fa 29.66%, #006ed8 61%, #66b3ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.xgkf51o-uORLp08brR .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
  background-color: #ffffff;
}
.xgkf51o-uORLp08brR .image-wrapper img {
  width: 75%;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.xgkf51o-uORLWcLO26 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.xgkf51o-uORLWcLO26 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORLWcLO26 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORLWcLO26 .title-wrapper .checkbox-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .xgkf51o-uORLWcLO26 .title-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.xgkf51o-uORLWcLO26 .title-wrapper .checkbox-section-title span {
  color: #bcfe1e;
}
.xgkf51o-uORLWcLO26 .items-wrap {
  justify-content: center;
  margin: 0 -14px;
}
.xgkf51o-uORLWcLO26 .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .xgkf51o-uORLWcLO26 .item {
    padding: 0 14px;
  }
}
.xgkf51o-uORLWcLO26 .item .item-wrapper {
  position: relative;
  border: 1px solid #ffffff;
  background-color: #0782fa;
  padding: 24px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .xgkf51o-uORLWcLO26 .item .item-wrapper {
    padding: 14px;
  }
}
.xgkf51o-uORLWcLO26 .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .icon-wrapper .icon-wrap .checkbox-iconfont {
  font-size: 56px;
  color: #ffffff;
  background: linear-gradient(#ffffff 80%, transparent);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .item-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .item-title {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .tags-wrapper .list {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.xgkf51o-uORLWcLO26 .item .item-wrapper .card-box .tags-wrapper .list .tag-wrapper {
  padding: 8px 14px;
  margin: 5px;
  border: 1px solid #006ed8;
}
.xgkf51o-uORLWcLO26 .item .card_1::before {
  background: linear-gradient(45deg, #0739fa, #0782fa 50%);
}
.xgkf51o-uORLWcLO26 .item .card_2::before {
  background: linear-gradient(45deg, #0737ee, #0782fa 50%);
}
.xgkf51o-uORLWcLO26 .item .card_3::before {
  background: linear-gradient(45deg, #0739fa, #0782fa 50%);
}
.xgkf51o-uORLWcLO26 .item .card_1 .card-box .icon-wrapper .icon-wrap {
  background-color: #0739fa;
}
.xgkf51o-uORLWcLO26 .item .card_2 .card-box .icon-wrapper .icon-wrap {
  background-color: #0737ee;
}
.xgkf51o-uORLWcLO26 .item .card_3 .card-box .icon-wrapper .icon-wrap {
  background-color: #0739fa;
}
.xgkf51o-uORLWcLO26 .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORLWcLO26 .item-title {
  color: #ffffff;
}
.xgkf51o-uORLWcLO26 .list {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORLWcLO26 .item-title,
.xgkf51o-uORLWcLO26 .tags-wrapper,
.xgkf51o-uORLWcLO26 .icon-wrapper {
  text-align: center;
}
.xgkf51o-uORLYO5yQ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0782fa;
}
.xgkf51o-uORLYO5yQ6 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORLYO5yQ6 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORLYO5yQ6 .row {
  justify-content: center;
}
.xgkf51o-uORLYO5yQ6 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .title-wrapper {
    margin-bottom: 30px;
  }
}
.xgkf51o-uORLYO5yQ6 .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uORLYO5yQ6 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORLYO5yQ6 .items-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .items-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .xgkf51o-uORLYO5yQ6 .items-wrapper {
    display: block;
  }
}
.xgkf51o-uORLYO5yQ6 .item {
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .xgkf51o-uORLYO5yQ6 .item {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORLYO5yQ6 .item:hover .item-wrapper .item-img img,
.xgkf51o-uORLYO5yQ6 .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper {
  height: 100%;
  border: 3px solid #ffffff;
  padding: 48px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper {
    padding: 30px 20px;
  }
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .item-img {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper .item-img {
    margin-bottom: 30px;
  }
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .card-name {
  margin-bottom: 10px;
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .card-role {
  margin-bottom: 0;
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .text-wrapper .card-text {
  display: inline-block;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .text-wrapper .card-text {
    width: 100%;
    margin-top: 30px;
  }
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .checkbox-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .checkbox-section-btn {
    margin-top: 30px;
  }
}
.xgkf51o-uORLYO5yQ6 .item .item-wrapper .card-box .checkbox-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.xgkf51o-uORLYO5yQ6 .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uORLYO5yQ6 .card-name {
  color: #cbff5b;
}
.xgkf51o-uORLYO5yQ6 .card-role {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORLYO5yQ6 .card-text {
  color: #ffffff;
}
.xgkf51o-uORLYO5yQ6 .checkbox-tag {
  color: #000000;
}
.xgkf51o-uORLYO5yQ6 .card-text,
.xgkf51o-uORLYO5yQ6 .checkbox-section-btn,
.xgkf51o-uORLYO5yQ6 .text-wrapper {
  text-align: center;
}
.xgkf51o-uORMcsO9Mn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.xgkf51o-uORMcsO9Mn .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORMcsO9Mn .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORMcsO9Mn .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .xgkf51o-uORMcsO9Mn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORMcsO9Mn .container {
    padding: 0 26px;
  }
}
.xgkf51o-uORMcsO9Mn .row {
  justify-content: center;
}
.xgkf51o-uORMcsO9Mn .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #0782fa;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORMcsO9Mn .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORMcsO9Mn .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.xgkf51o-uORMcsO9Mn .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .xgkf51o-uORMcsO9Mn .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.xgkf51o-uORMcsO9Mn .content-wrapper .title-wrapper .checkbox-section-title {
  margin-bottom: 30px;
}
.xgkf51o-uORMcsO9Mn .content-wrapper .title-wrapper .checkbox-desc {
  margin-bottom: 0;
}
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper .checkbox-section-subtitle {
  margin-bottom: 20px;
}
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper .checkbox-text {
  margin-bottom: 20px;
}
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper .link-wrapper:hover .checkbox-link,
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper .link-wrapper:focus .checkbox-link {
  color: #000000;
}
.xgkf51o-uORMcsO9Mn .content-wrapper .text-wrapper .link-wrapper .checkbox-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORMcsO9Mn .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORMcsO9Mn .checkbox-section-subtitle {
  color: #ffffff;
}
.xgkf51o-uORMcsO9Mn .checkbox-desc {
  color: #ffffff;
}
.xgkf51o-uORMcsO9Mn .checkbox-text {
  color: #ffffff;
}
.xgkf51o-uORMcsO9Mn .checkbox-link {
  color: #ffffff;
}
.xgkf51o-uORZMfiZpz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.xgkf51o-uORZMfiZpz .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORZMfiZpz .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORZMfiZpz .title-wrapper .checkbox-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZMfiZpz .title-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.xgkf51o-uORZMfiZpz .title-wrapper .checkbox-section-title span {
  color: #bcfe1e;
}
.xgkf51o-uORZMfiZpz .items-wrap {
  justify-content: center;
  margin: 0 -14px;
}
.xgkf51o-uORZMfiZpz .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZMfiZpz .item {
    padding: 0 14px;
  }
}
.xgkf51o-uORZMfiZpz .item .item-wrapper {
  position: relative;
  border: 1px solid #ffffff;
  background-color: #0782fa;
  padding: 24px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .xgkf51o-uORZMfiZpz .item .item-wrapper {
    padding: 14px;
  }
}
.xgkf51o-uORZMfiZpz .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .icon-wrapper .icon-wrap .checkbox-iconfont {
  font-size: 56px;
  color: #ffffff;
  background: linear-gradient(#ffffff 80%, transparent);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .item-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .item-title {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .tags-wrapper .list {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.xgkf51o-uORZMfiZpz .item .item-wrapper .card-box .tags-wrapper .list .tag-wrapper {
  padding: 8px 14px;
  margin: 5px;
  border: 1px solid #006ed8;
}
.xgkf51o-uORZMfiZpz .item .card_1::before {
  background: linear-gradient(45deg, #0739fa, #0782fa 50%);
}
.xgkf51o-uORZMfiZpz .item .card_2::before {
  background: linear-gradient(45deg, #0737ee, #0782fa 50%);
}
.xgkf51o-uORZMfiZpz .item .card_3::before {
  background: linear-gradient(45deg, #0739fa, #0782fa 50%);
}
.xgkf51o-uORZMfiZpz .item .card_1 .card-box .icon-wrapper .icon-wrap {
  background-color: #0739fa;
}
.xgkf51o-uORZMfiZpz .item .card_2 .card-box .icon-wrapper .icon-wrap {
  background-color: #0737ee;
}
.xgkf51o-uORZMfiZpz .item .card_3 .card-box .icon-wrapper .icon-wrap {
  background-color: #0739fa;
}
.xgkf51o-uORZMfiZpz .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORZMfiZpz .item-title {
  color: #ffffff;
}
.xgkf51o-uORZMfiZpz .list {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORZMfiZpz .item-title,
.xgkf51o-uORZMfiZpz .tags-wrapper,
.xgkf51o-uORZMfiZpz .icon-wrapper {
  text-align: center;
}
.xgkf51o-uORZNwqZIO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0782fa;
}
.xgkf51o-uORZNwqZIO .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORZNwqZIO .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORZNwqZIO .row {
  justify-content: center;
}
.xgkf51o-uORZNwqZIO .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .title-wrapper {
    margin-bottom: 30px;
  }
}
.xgkf51o-uORZNwqZIO .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uORZNwqZIO .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORZNwqZIO .items-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .items-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .xgkf51o-uORZNwqZIO .items-wrapper {
    display: block;
  }
}
.xgkf51o-uORZNwqZIO .item {
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .xgkf51o-uORZNwqZIO .item {
    margin-bottom: 16px;
  }
}
.xgkf51o-uORZNwqZIO .item:hover .item-wrapper .item-img img,
.xgkf51o-uORZNwqZIO .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.xgkf51o-uORZNwqZIO .item .item-wrapper {
  height: 100%;
  border: 3px solid #ffffff;
  padding: 48px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper {
    padding: 30px 20px;
  }
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .item-img {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper .item-img {
    margin-bottom: 30px;
  }
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .card-name {
  margin-bottom: 10px;
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .card-role {
  margin-bottom: 0;
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .text-wrapper .card-text {
  display: inline-block;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .text-wrapper .card-text {
    width: 100%;
    margin-top: 30px;
  }
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .checkbox-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .checkbox-section-btn {
    margin-top: 30px;
  }
}
.xgkf51o-uORZNwqZIO .item .item-wrapper .card-box .checkbox-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.xgkf51o-uORZNwqZIO .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uORZNwqZIO .card-name {
  color: #cbff5b;
}
.xgkf51o-uORZNwqZIO .card-role {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORZNwqZIO .card-text {
  color: #ffffff;
}
.xgkf51o-uORZNwqZIO .checkbox-tag {
  color: #000000;
}
.xgkf51o-uORZNwqZIO .card-text,
.xgkf51o-uORZNwqZIO .checkbox-section-btn,
.xgkf51o-uORZNwqZIO .text-wrapper {
  text-align: center;
}
.xgkf51o-uORZPWcAaV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.xgkf51o-uORZPWcAaV .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uORZPWcAaV .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uORZPWcAaV .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZPWcAaV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORZPWcAaV .container {
    padding: 0 26px;
  }
}
.xgkf51o-uORZPWcAaV .row {
  justify-content: center;
}
.xgkf51o-uORZPWcAaV .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #0782fa;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .xgkf51o-uORZPWcAaV .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uORZPWcAaV .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.xgkf51o-uORZPWcAaV .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .xgkf51o-uORZPWcAaV .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.xgkf51o-uORZPWcAaV .content-wrapper .title-wrapper .checkbox-section-title {
  margin-bottom: 30px;
}
.xgkf51o-uORZPWcAaV .content-wrapper .title-wrapper .checkbox-desc {
  margin-bottom: 0;
}
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper .checkbox-section-subtitle {
  margin-bottom: 20px;
}
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper .checkbox-text {
  margin-bottom: 20px;
}
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper .link-wrapper:hover .checkbox-link,
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper .link-wrapper:focus .checkbox-link {
  color: #000000;
}
.xgkf51o-uORZPWcAaV .content-wrapper .text-wrapper .link-wrapper .checkbox-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORZPWcAaV .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORZPWcAaV .checkbox-section-subtitle {
  color: #ffffff;
}
.xgkf51o-uORZPWcAaV .checkbox-desc {
  color: #ffffff;
}
.xgkf51o-uORZPWcAaV .checkbox-text {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uORZPWcAaV .checkbox-link {
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOSi5CsyY1 {
  overflow: hidden;
  background-image: url("../../../assets/images/red-stone.jpg-1376x768.jpg");
}
.xgkf51o-uOSi5CsyY1 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSi5CsyY1 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSi5CsyY1 .row {
  justify-content: center;
}
.xgkf51o-uOSi5CsyY1 .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSi5CsyY1 .title-wrapper {
    margin-bottom: 30px;
  }
}
.xgkf51o-uOSi5CsyY1 .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOSi5CsyY1 .title-wrapper .checkbox-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOSi5CsyY1 .content-wrapper {
    margin-bottom: 40px;
  }
}
.xgkf51o-uOSi5CsyY1 .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSi5CsyY1 .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.xgkf51o-uOSi5CsyY1 .content-wrapper .checkbox-section-btn .btn {
  margin-bottom: 0;
}
.xgkf51o-uOSi5CsyY1 .card {
  justify-content: flex-end;
}
.xgkf51o-uOSi5CsyY1 .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .xgkf51o-uOSi5CsyY1 .image-wrapper {
    display: block;
  }
}
.xgkf51o-uOSi5CsyY1 .image-wrapper::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#ffffff, transparent);
  filter: blur(100px);
}
.xgkf51o-uOSi5CsyY1 .image-wrapper .image-wrap {
  position: relative;
  z-index: 1;
}
.xgkf51o-uOSi5CsyY1 .image-wrapper .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .xgkf51o-uOSi5CsyY1 .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.xgkf51o-uOSi5CsyY1 .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSi5CsyY1 .checkbox-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSi5CsyY1 .checkbox-text,
.xgkf51o-uOSi5CsyY1 .text-wrapper {
  color: #ffffff;
}
.xgkf51o-uOSi5CsyY1 .checkbox-text,
.xgkf51o-uOSi5CsyY1 .text-wrapper,
.xgkf51o-uOSi5CsyY1 .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uOSEM7FjUH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/quiet-mountain.jpg-1376x768.jpg");
}
.xgkf51o-uOSEM7FjUH .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSEM7FjUH .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSEM7FjUH .items-wrap {
  justify-content: center;
}
.xgkf51o-uOSEM7FjUH .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSEM7FjUH .content-wrapper {
    margin-bottom: 32px;
  }
}
.xgkf51o-uOSEM7FjUH .content-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOSEM7FjUH .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSEM7FjUH .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSEM7FjUH .item {
    margin-bottom: 16px;
  }
}
.xgkf51o-uOSEM7FjUH .item:hover .item-wrapper,
.xgkf51o-uOSEM7FjUH .item:focus .item-wrapper {
  border: 2px solid #ffffff;
}
.xgkf51o-uOSEM7FjUH .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .xgkf51o-uOSEM7FjUH .item .item-wrapper {
    padding: 20px 16px;
  }
}
.xgkf51o-uOSEM7FjUH .item .item-wrapper .icon-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSEM7FjUH .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOSEM7FjUH .item .item-wrapper .icon-wrapper .checkbox-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #66b3ff, #ffffff);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.xgkf51o-uOSEM7FjUH .item .item-wrapper .card-box .title-wrap .item-title,
.xgkf51o-uOSEM7FjUH .item .item-wrapper .card-box .title-wrap .item-title_2 {
  margin-bottom: 16px;
}
.xgkf51o-uOSEM7FjUH .item .item-wrapper .card-box .title-wrap .item-text,
.xgkf51o-uOSEM7FjUH .item .item-wrapper .card-box .title-wrap .item-text_2 {
  margin-bottom: 0;
}
.xgkf51o-uOSEM7FjUH .item .card_1 {
  background-color: #006ed8;
  border: 2px solid #006ed8;
}
.xgkf51o-uOSEM7FjUH .item .card_2 {
  background-color: #0782fa;
  border: 2px solid #0782fa;
}
.xgkf51o-uOSEM7FjUH .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSEM7FjUH .item-title {
  color: #f2f2f2;
}
.xgkf51o-uOSEM7FjUH .item-title_2 {
  color: #f2f2f2;
}
.xgkf51o-uOSEM7FjUH .item-text {
  color: #b9b9b9;
}
.xgkf51o-uOSEM7FjUH .item-text_2 {
  color: #b9b9b9;
}
.xgkf51o-uOSEM7FjUH .item-title,
.xgkf51o-uOSEM7FjUH .icon-wrapper {
  text-align: center;
}
.xgkf51o-uOSEM7FjUH .item-title_2,
.xgkf51o-uOSEM7FjUH .icon-wrapper {
  text-align: center;
}
.xgkf51o-uOSEM7FjUH .item-text,
.xgkf51o-uOSEM7FjUH .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.xgkf51o-uOSEM7FjUH .item-text_2,
.xgkf51o-uOSEM7FjUH .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSF5tmlxJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOSF5tmlxJ .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSF5tmlxJ .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSF5tmlxJ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .xgkf51o-uOSF5tmlxJ .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSF5tmlxJ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSF5tmlxJ .container {
    padding: 0 16px;
  }
}
.xgkf51o-uOSF5tmlxJ .row-content {
  margin: 0 -24px;
}
.xgkf51o-uOSF5tmlxJ .title-wrapper .checkbox-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSF5tmlxJ .title-wrapper .checkbox-section-title {
    margin-bottom: 36px;
  }
}
.xgkf51o-uOSF5tmlxJ .item {
  padding: 0 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .xgkf51o-uOSF5tmlxJ .item {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOSF5tmlxJ .item:nth-child(2n) .item-wrapper {
  margin-top: 80px;
}
.xgkf51o-uOSF5tmlxJ .item:nth-child(2n) .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  color: #ffffff;
}
.xgkf51o-uOSF5tmlxJ .item:nth-child(3n) .item-wrapper {
  margin-top: 144px;
}
.xgkf51o-uOSF5tmlxJ .item:nth-child(3n) .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  color: #ffffff;
}
.xgkf51o-uOSF5tmlxJ .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 36px;
}
.xgkf51o-uOSF5tmlxJ .item .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  font-size: 100px;
  color: #ffffff;
  display: inline-flex;
}
.xgkf51o-uOSF5tmlxJ .item .item-wrapper .card-box .card-title {
  margin-bottom: 32px;
}
.xgkf51o-uOSF5tmlxJ .item .item-wrapper .card-box .checkbox-text {
  margin-bottom: 32px;
}
.xgkf51o-uOSF5tmlxJ .checkbox-section-title {
  color: #080808;
}
.xgkf51o-uOSF5tmlxJ .card-title {
  color: #080808;
}
.xgkf51o-uOSF5tmlxJ .card-text {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSF5tmlxJ .card-title,
.xgkf51o-uOSF5tmlxJ .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.xgkf51o-uOSFYPgbLu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/rough-pattern.jpg-1376x768.jpg");
}
.xgkf51o-uOSFYPgbLu .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSFYPgbLu .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSFYPgbLu .items-wrap {
  justify-content: center;
}
.xgkf51o-uOSFYPgbLu .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSFYPgbLu .content-wrapper {
    margin-bottom: 32px;
  }
}
.xgkf51o-uOSFYPgbLu .content-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOSFYPgbLu .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSFYPgbLu .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSFYPgbLu .item {
    margin-bottom: 16px;
  }
}
.xgkf51o-uOSFYPgbLu .item:hover .item-wrapper,
.xgkf51o-uOSFYPgbLu .item:focus .item-wrapper {
  border: 2px solid #ffffff;
}
.xgkf51o-uOSFYPgbLu .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .xgkf51o-uOSFYPgbLu .item .item-wrapper {
    padding: 20px 16px;
  }
}
.xgkf51o-uOSFYPgbLu .item .item-wrapper .icon-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSFYPgbLu .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOSFYPgbLu .item .item-wrapper .icon-wrapper .checkbox-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #66b3ff, #ffffff);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.xgkf51o-uOSFYPgbLu .item .item-wrapper .card-box .title-wrap .item-title,
.xgkf51o-uOSFYPgbLu .item .item-wrapper .card-box .title-wrap .item-title_2 {
  margin-bottom: 16px;
}
.xgkf51o-uOSFYPgbLu .item .item-wrapper .card-box .title-wrap .item-text,
.xgkf51o-uOSFYPgbLu .item .item-wrapper .card-box .title-wrap .item-text_2 {
  margin-bottom: 0;
}
.xgkf51o-uOSFYPgbLu .item .card_1 {
  background-color: #006ed8;
  border: 2px solid #006ed8;
}
.xgkf51o-uOSFYPgbLu .item .card_2 {
  background-color: #0782fa;
  border: 2px solid #0782fa;
}
.xgkf51o-uOSFYPgbLu .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSFYPgbLu .item-title {
  color: #f2f2f2;
}
.xgkf51o-uOSFYPgbLu .item-title_2 {
  color: #f2f2f2;
}
.xgkf51o-uOSFYPgbLu .item-text {
  color: #b9b9b9;
}
.xgkf51o-uOSFYPgbLu .item-text_2 {
  color: #b9b9b9;
}
.xgkf51o-uOSFYPgbLu .item-title,
.xgkf51o-uOSFYPgbLu .icon-wrapper {
  text-align: center;
}
.xgkf51o-uOSFYPgbLu .item-title_2,
.xgkf51o-uOSFYPgbLu .icon-wrapper {
  text-align: center;
}
.xgkf51o-uOSFYPgbLu .item-text,
.xgkf51o-uOSFYPgbLu .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.xgkf51o-uOSFYPgbLu .item-text_2,
.xgkf51o-uOSFYPgbLu .icon-wrapper {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSFZZ2pm1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOSFZZ2pm1 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSFZZ2pm1 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSFZZ2pm1 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .xgkf51o-uOSFZZ2pm1 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSFZZ2pm1 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSFZZ2pm1 .container {
    padding: 0 16px;
  }
}
.xgkf51o-uOSFZZ2pm1 .row-content {
  margin: 0 -24px;
}
.xgkf51o-uOSFZZ2pm1 .title-wrapper .checkbox-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSFZZ2pm1 .title-wrapper .checkbox-section-title {
    margin-bottom: 36px;
  }
}
.xgkf51o-uOSFZZ2pm1 .item {
  padding: 0 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .xgkf51o-uOSFZZ2pm1 .item {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOSFZZ2pm1 .item:nth-child(2n) .item-wrapper {
  margin-top: 80px;
}
.xgkf51o-uOSFZZ2pm1 .item:nth-child(2n) .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  color: #ffffff;
}
.xgkf51o-uOSFZZ2pm1 .item:nth-child(3n) .item-wrapper {
  margin-top: 144px;
}
.xgkf51o-uOSFZZ2pm1 .item:nth-child(3n) .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  color: #ffffff;
}
.xgkf51o-uOSFZZ2pm1 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 36px;
}
.xgkf51o-uOSFZZ2pm1 .item .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  font-size: 100px;
  color: #ffffff;
  display: inline-flex;
}
.xgkf51o-uOSFZZ2pm1 .item .item-wrapper .card-box .card-title {
  margin-bottom: 32px;
}
.xgkf51o-uOSFZZ2pm1 .item .item-wrapper .card-box .checkbox-text {
  margin-bottom: 32px;
}
.xgkf51o-uOSFZZ2pm1 .checkbox-section-title {
  color: #080808;
}
.xgkf51o-uOSFZZ2pm1 .card-title {
  color: #080808;
}
.xgkf51o-uOSFZZ2pm1 .card-text {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSFZZ2pm1 .card-title,
.xgkf51o-uOSFZZ2pm1 .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOSGhqGkg6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0782fa;
}
.xgkf51o-uOSGhqGkg6 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSGhqGkg6 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSGhqGkg6 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .container {
    padding: 0 20px;
  }
}
.xgkf51o-uOSGhqGkg6 .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .row {
    padding: 50px 16px;
  }
}
.xgkf51o-uOSGhqGkg6 .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffffff;
  filter: blur(120px);
}
.xgkf51o-uOSGhqGkg6 .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #ffffff;
  filter: blur(150px);
}
.xgkf51o-uOSGhqGkg6 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #006ed8;
  opacity: 1;
}
.xgkf51o-uOSGhqGkg6 .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.xgkf51o-uOSGhqGkg6 .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.xgkf51o-uOSGhqGkg6 .row .title-wrapper .desc-wrapper .checkbox-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  opacity: .5;
}
.xgkf51o-uOSGhqGkg6 .row .title-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
.xgkf51o-uOSGhqGkg6 .row .title-wrapper .checkbox-text {
  margin-bottom: 32px;
}
.xgkf51o-uOSGhqGkg6 .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGhqGkg6 .row .image-wrapper {
    min-height: 450px;
  }
}
.xgkf51o-uOSGhqGkg6 .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.xgkf51o-uOSGhqGkg6 .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.xgkf51o-uOSGhqGkg6 .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.xgkf51o-uOSGhqGkg6 .checkbox-desc {
  color: #ffffff;
}
.xgkf51o-uOSGhqGkg6 .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uOSGhqGkg6 .checkbox-text {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSGhqGkg6 .checkbox-desc,
.xgkf51o-uOSGhqGkg6 .desc-wrapper {
  text-align: center;
}
.xgkf51o-uOSGhqGkg6 .checkbox-section-title,
.xgkf51o-uOSGhqGkg6 .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOSGFMF5e3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0782fa;
}
.xgkf51o-uOSGFMF5e3 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSGFMF5e3 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 64px;
  background-image: linear-gradient(45deg, #66b3ff -10%, #006ed8 30%, #0739fa 80%);
  overflow: hidden;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGFMF5e3 .card-wrapper {
    display: block;
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOSGFMF5e3 .card-wrapper {
    margin-bottom: 32px;
  }
}
.xgkf51o-uOSGFMF5e3 .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #006ed8, #0739fa, transparent);
  height: 1px;
  width: 100%;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .title-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGFMF5e3 .card-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .title-wrapper .checkbox-title {
  margin-bottom: 16px;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .title-wrapper .checkbox-text {
  margin-bottom: 0;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper {
  width: 50%;
  background-color: #ffffff;
  padding: 45px 36px;
  margin-bottom: -6rem;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper {
    width: 100%;
    padding: 22px 16px;
    margin-bottom: 0;
  }
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row h5 {
  margin-bottom: 20px !important;
  background-image: linear-gradient(90deg, #0739fa, #04208b 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group {
    margin-bottom: 16px;
  }
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  padding: 10px 20px;
  border: 1px solid #ffffff !important;
  background-color: #f2f2f2;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #0739fa !important;
  box-shadow: none;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #6e716f;
  opacity: .5;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 150px;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #6e716f;
  border-color: #6e716f;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .checkbox-section-btn {
  width: 100%;
  padding: 0;
}
.xgkf51o-uOSGFMF5e3 .card-wrapper .form-wrapper .dragArea.row .checkbox-section-btn .btn {
  margin: 0;
}
.xgkf51o-uOSGFMF5e3 .checkbox-section-btn {
  text-align: right;
}
.xgkf51o-uOSGFMF5e3 .checkbox-title {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSGFMF5e3 .checkbox-text {
  color: #ffffff;
  text-align: center;
}
.xgkf51o-uOSGFMF5e3 label {
  color: #ffffff;
}
.xgkf51o-uOSGFMF5e3 H5 {
  text-align: center;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uORluUlSzy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uORluUlSzy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uORluUlSzy .menu_box .navbar.opened,
  .xgkf51o-uORluUlSzy .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uORluUlSzy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .btn:hover {
  box-shadow: none;
}
.xgkf51o-uORluUlSzy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uORluUlSzy .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before,
.xgkf51o-uORluUlSzy .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uORluUlSzy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uORluUlSzy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uORluUlSzy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uORluUlSzy .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uORluUlSzy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uORluUlSzy .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uORluUlSzy .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uORluUlSzy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uORluUlSzy .dropdown-menu,
.xgkf51o-uORluUlSzy .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uORluUlSzy .nav-item:focus,
.xgkf51o-uORluUlSzy .nav-link:focus {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uORluUlSzy .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uORluUlSzy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uORluUlSzy .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uORluUlSzy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uORluUlSzy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uORluUlSzy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uORluUlSzy .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uORluUlSzy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uORluUlSzy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uORluUlSzy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uORluUlSzy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uORluUlSzy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uORluUlSzy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uORluUlSzy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uORluUlSzy .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uORluUlSzy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uORluUlSzy .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;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uORluUlSzy .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uORluUlSzy .dropdown-item.active,
.xgkf51o-uORluUlSzy .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uORluUlSzy .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uORluUlSzy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uORluUlSzy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uORluUlSzy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uORluUlSzy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uORluUlSzy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uORluUlSzy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uORluUlSzy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uORluUlSzy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uORluUlSzy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uORluUlSzy .navbar {
    height: 70px;
  }
  .xgkf51o-uORluUlSzy .navbar.opened {
    height: auto;
  }
  .xgkf51o-uORluUlSzy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uORluUlSzy .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uORluUlSzy .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uORluUlSzy .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uORluUlSzy .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uORluUlSzy .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uORluUlSzy .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uORluUlSzy .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uORluUlSzy .text_widget a:hover,
.xgkf51o-uORluUlSzy .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uORluUlSzy .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uORluUlSzy .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uORluUlSzy .icons-menu-main {
  display: flex;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uORluUlSzy .navbar-caption {
  color: #000000;
}
.xgkf51o-uORluUlSzy .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uORluUlSzy .checkbox-section-subtitle,
.xgkf51o-uORluUlSzy .text_widget,
.xgkf51o-uORluUlSzy .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uORluUlSzy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOSHUT7FKR {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #0782fa;
  background-image: linear-gradient(135deg, #04208b 10%, #0782fa 80%, #ffffff 130%);
}
.xgkf51o-uOSHUT7FKR .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSHUT7FKR .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOSHUT7FKR .row {
  justify-content: center;
}
.xgkf51o-uOSHUT7FKR .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.xgkf51o-uOSHUT7FKR .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.xgkf51o-uOSHUT7FKR .content-wrapper .checkbox-section-title {
  margin-bottom: 22px;
}
.xgkf51o-uOSHUT7FKR .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOSHUT7FKR .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.xgkf51o-uOSHUT7FKR .content-wrapper .checkbox-section-btn {
  margin-top: 32px;
}
.xgkf51o-uOSHUT7FKR .content-wrapper .checkbox-section-btn .checkbox-section-title {
  margin-top: 22px;
}
.xgkf51o-uOSHUT7FKR .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uOSHUT7FKR .checkbox-text,
.xgkf51o-uOSHUT7FKR .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.xgkf51o-uOSHUT7FKR .checkbox-section-title,
.xgkf51o-uOSHUT7FKR .checkbox-section-btn,
.xgkf51o-uOSHUT7FKR .logo-wrapper {
  text-align: center;
}
.xgkf51o-uOSIic8ia4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xgkf51o-uOSIic8ia4 .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOSIic8ia4 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOSIic8ia4 .container {
    padding: 0 20px;
  }
}
.xgkf51o-uOSIic8ia4 .row {
  margin: 0;
}
.xgkf51o-uOSIic8ia4 .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOSIic8ia4 .checkbox-section-title {
  color: #000000;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT3XHPxAk {
  background-color: transparent;
}
.xgkf51o-uOT3XHPxAk .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uOT3XHPxAk .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uOT3XHPxAk .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uOT3XHPxAk .menu_box .navbar.opened,
  .xgkf51o-uOT3XHPxAk .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uOT3XHPxAk .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uOT3XHPxAk .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uOT3XHPxAk .btn:hover {
  box-shadow: none;
}
.xgkf51o-uOT3XHPxAk .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uOT3XHPxAk .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT3XHPxAk .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uOT3XHPxAk .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uOT3XHPxAk .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOT3XHPxAk .nav-item .nav-link:hover::before,
.xgkf51o-uOT3XHPxAk .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uOT3XHPxAk .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uOT3XHPxAk .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uOT3XHPxAk .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT3XHPxAk .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uOT3XHPxAk .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uOT3XHPxAk .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uOT3XHPxAk .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uOT3XHPxAk .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uOT3XHPxAk .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uOT3XHPxAk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uOT3XHPxAk .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uOT3XHPxAk .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uOT3XHPxAk .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uOT3XHPxAk .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uOT3XHPxAk .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uOT3XHPxAk .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uOT3XHPxAk .dropdown-menu,
.xgkf51o-uOT3XHPxAk .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uOT3XHPxAk .nav-item:focus,
.xgkf51o-uOT3XHPxAk .nav-link:focus {
  outline: none;
}
.xgkf51o-uOT3XHPxAk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT3XHPxAk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uOT3XHPxAk .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uOT3XHPxAk .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT3XHPxAk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uOT3XHPxAk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uOT3XHPxAk .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT3XHPxAk .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uOT3XHPxAk .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uOT3XHPxAk .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uOT3XHPxAk .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uOT3XHPxAk .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uOT3XHPxAk .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uOT3XHPxAk .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uOT3XHPxAk .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uOT3XHPxAk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uOT3XHPxAk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uOT3XHPxAk .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uOT3XHPxAk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uOT3XHPxAk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uOT3XHPxAk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uOT3XHPxAk .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uOT3XHPxAk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uOT3XHPxAk .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uOT3XHPxAk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uOT3XHPxAk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uOT3XHPxAk .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uOT3XHPxAk .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;
}
.xgkf51o-uOT3XHPxAk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uOT3XHPxAk .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uOT3XHPxAk .dropdown-item.active,
.xgkf51o-uOT3XHPxAk .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uOT3XHPxAk .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uOT3XHPxAk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uOT3XHPxAk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uOT3XHPxAk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uOT3XHPxAk ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uOT3XHPxAk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT3XHPxAk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uOT3XHPxAk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT3XHPxAk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT3XHPxAk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT3XHPxAk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT3XHPxAk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uOT3XHPxAk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uOT3XHPxAk .navbar {
    height: 70px;
  }
  .xgkf51o-uOT3XHPxAk .navbar.opened {
    height: auto;
  }
  .xgkf51o-uOT3XHPxAk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uOT3XHPxAk .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uOT3XHPxAk .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uOT3XHPxAk .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uOT3XHPxAk .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uOT3XHPxAk .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uOT3XHPxAk .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uOT3XHPxAk .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uOT3XHPxAk .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uOT3XHPxAk .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uOT3XHPxAk .text_widget a:hover,
.xgkf51o-uOT3XHPxAk .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uOT3XHPxAk .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uOT3XHPxAk .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uOT3XHPxAk .icons-menu-main {
  display: flex;
}
.xgkf51o-uOT3XHPxAk .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT3XHPxAk .navbar-caption {
  color: #000000;
}
.xgkf51o-uOT3XHPxAk .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uOT3XHPxAk .checkbox-section-subtitle,
.xgkf51o-uOT3XHPxAk .text_widget,
.xgkf51o-uOT3XHPxAk .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uOT3XHPxAk a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOT3XIBRJm {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #0782fa;
  background-image: linear-gradient(135deg, #04208b 10%, #0782fa 80%, #ffffff 130%);
}
.xgkf51o-uOT3XIBRJm .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT3XIBRJm .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOT3XIBRJm .row {
  justify-content: center;
}
.xgkf51o-uOT3XIBRJm .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.xgkf51o-uOT3XIBRJm .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.xgkf51o-uOT3XIBRJm .content-wrapper .checkbox-section-title {
  margin-bottom: 22px;
}
.xgkf51o-uOT3XIBRJm .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT3XIBRJm .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.xgkf51o-uOT3XIBRJm .content-wrapper .checkbox-section-btn {
  margin-top: 32px;
}
.xgkf51o-uOT3XIBRJm .content-wrapper .checkbox-section-btn .checkbox-section-title {
  margin-top: 22px;
}
.xgkf51o-uOT3XIBRJm .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uOT3XIBRJm .checkbox-text,
.xgkf51o-uOT3XIBRJm .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.xgkf51o-uOT3XIBRJm .checkbox-section-title,
.xgkf51o-uOT3XIBRJm .checkbox-section-btn,
.xgkf51o-uOT3XIBRJm .logo-wrapper {
  text-align: center;
}
.xgkf51o-uOT3XJo7Yv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xgkf51o-uOT3XJo7Yv .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT3XJo7Yv .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT3XJo7Yv .container {
    padding: 0 20px;
  }
}
.xgkf51o-uOT3XJo7Yv .row {
  margin: 0;
}
.xgkf51o-uOT3XJo7Yv .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOT3XJo7Yv .checkbox-section-title {
  color: #000000;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT6B9A7Ia {
  background-color: transparent;
}
.xgkf51o-uOT6B9A7Ia .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uOT6B9A7Ia .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6B9A7Ia .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uOT6B9A7Ia .menu_box .navbar.opened,
  .xgkf51o-uOT6B9A7Ia .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uOT6B9A7Ia .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uOT6B9A7Ia .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uOT6B9A7Ia .btn:hover {
  box-shadow: none;
}
.xgkf51o-uOT6B9A7Ia .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uOT6B9A7Ia .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT6B9A7Ia .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uOT6B9A7Ia .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uOT6B9A7Ia .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOT6B9A7Ia .nav-item .nav-link:hover::before,
.xgkf51o-uOT6B9A7Ia .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uOT6B9A7Ia .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6B9A7Ia .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uOT6B9A7Ia .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT6B9A7Ia .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uOT6B9A7Ia .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uOT6B9A7Ia .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uOT6B9A7Ia .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uOT6B9A7Ia .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uOT6B9A7Ia .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uOT6B9A7Ia .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uOT6B9A7Ia .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uOT6B9A7Ia .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uOT6B9A7Ia .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uOT6B9A7Ia .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uOT6B9A7Ia .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6B9A7Ia .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uOT6B9A7Ia .dropdown-menu,
.xgkf51o-uOT6B9A7Ia .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uOT6B9A7Ia .nav-item:focus,
.xgkf51o-uOT6B9A7Ia .nav-link:focus {
  outline: none;
}
.xgkf51o-uOT6B9A7Ia .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT6B9A7Ia .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uOT6B9A7Ia .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uOT6B9A7Ia .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT6B9A7Ia .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uOT6B9A7Ia .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uOT6B9A7Ia .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6B9A7Ia .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uOT6B9A7Ia .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uOT6B9A7Ia .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uOT6B9A7Ia .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uOT6B9A7Ia .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uOT6B9A7Ia .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6B9A7Ia .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uOT6B9A7Ia .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uOT6B9A7Ia .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uOT6B9A7Ia .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uOT6B9A7Ia .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uOT6B9A7Ia .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;
}
.xgkf51o-uOT6B9A7Ia .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uOT6B9A7Ia .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uOT6B9A7Ia .dropdown-item.active,
.xgkf51o-uOT6B9A7Ia .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uOT6B9A7Ia .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uOT6B9A7Ia .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uOT6B9A7Ia .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uOT6B9A7Ia .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uOT6B9A7Ia ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uOT6B9A7Ia .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT6B9A7Ia button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uOT6B9A7Ia nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT6B9A7Ia nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT6B9A7Ia nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT6B9A7Ia nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT6B9A7Ia a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uOT6B9A7Ia .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uOT6B9A7Ia .navbar {
    height: 70px;
  }
  .xgkf51o-uOT6B9A7Ia .navbar.opened {
    height: auto;
  }
  .xgkf51o-uOT6B9A7Ia .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uOT6B9A7Ia .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uOT6B9A7Ia .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uOT6B9A7Ia .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6B9A7Ia .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uOT6B9A7Ia .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uOT6B9A7Ia .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6B9A7Ia .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uOT6B9A7Ia .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uOT6B9A7Ia .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uOT6B9A7Ia .text_widget a:hover,
.xgkf51o-uOT6B9A7Ia .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6B9A7Ia .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uOT6B9A7Ia .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uOT6B9A7Ia .icons-menu-main {
  display: flex;
}
.xgkf51o-uOT6B9A7Ia .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT6B9A7Ia .navbar-caption {
  color: #000000;
}
.xgkf51o-uOT6B9A7Ia .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uOT6B9A7Ia .checkbox-section-subtitle,
.xgkf51o-uOT6B9A7Ia .text_widget,
.xgkf51o-uOT6B9A7Ia .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uOT6B9A7Ia a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOT6BahVlv {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #0782fa;
  background-image: linear-gradient(135deg, #04208b 10%, #0782fa 80%, #ffffff 130%);
}
.xgkf51o-uOT6BahVlv .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT6BahVlv .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOT6BahVlv .row {
  justify-content: center;
}
.xgkf51o-uOT6BahVlv .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.xgkf51o-uOT6BahVlv .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.xgkf51o-uOT6BahVlv .content-wrapper .checkbox-section-title {
  margin-bottom: 22px;
}
.xgkf51o-uOT6BahVlv .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6BahVlv .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.xgkf51o-uOT6BahVlv .content-wrapper .checkbox-section-btn {
  margin-top: 32px;
}
.xgkf51o-uOT6BahVlv .content-wrapper .checkbox-section-btn .checkbox-section-title {
  margin-top: 22px;
}
.xgkf51o-uOT6BahVlv .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uOT6BahVlv .checkbox-text,
.xgkf51o-uOT6BahVlv .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.xgkf51o-uOT6BahVlv .checkbox-section-title,
.xgkf51o-uOT6BahVlv .checkbox-section-btn,
.xgkf51o-uOT6BahVlv .logo-wrapper {
  text-align: center;
}
.xgkf51o-uOT6BaVj4m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xgkf51o-uOT6BaVj4m .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT6BaVj4m .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6BaVj4m .container {
    padding: 0 20px;
  }
}
.xgkf51o-uOT6BaVj4m .row {
  margin: 0;
}
.xgkf51o-uOT6BaVj4m .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOT6BaVj4m .checkbox-section-title {
  color: #000000;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT6E9NbPH {
  background-color: transparent;
}
.xgkf51o-uOT6E9NbPH .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.xgkf51o-uOT6E9NbPH .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6E9NbPH .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .xgkf51o-uOT6E9NbPH .menu_box .navbar.opened,
  .xgkf51o-uOT6E9NbPH .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.xgkf51o-uOT6E9NbPH .navbar-dropdown {
  position: relative !important;
}
.xgkf51o-uOT6E9NbPH .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.xgkf51o-uOT6E9NbPH .btn:hover {
  box-shadow: none;
}
.xgkf51o-uOT6E9NbPH .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .xgkf51o-uOT6E9NbPH .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT6E9NbPH .nav-item {
    margin: 0 !important;
  }
}
.xgkf51o-uOT6E9NbPH .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.xgkf51o-uOT6E9NbPH .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #000000;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOT6E9NbPH .nav-item .nav-link:hover::before,
.xgkf51o-uOT6E9NbPH .nav-item .nav-link:focus::before {
  width: 100%;
}
.xgkf51o-uOT6E9NbPH .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6E9NbPH .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .xgkf51o-uOT6E9NbPH .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .xgkf51o-uOT6E9NbPH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .xgkf51o-uOT6E9NbPH .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .xgkf51o-uOT6E9NbPH .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .xgkf51o-uOT6E9NbPH .offcanvas_box {
    display: none;
  }
}
.xgkf51o-uOT6E9NbPH .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.xgkf51o-uOT6E9NbPH .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.xgkf51o-uOT6E9NbPH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.xgkf51o-uOT6E9NbPH .container {
  display: flex;
  margin: auto;
}
.xgkf51o-uOT6E9NbPH .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.xgkf51o-uOT6E9NbPH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.xgkf51o-uOT6E9NbPH .iconfont-wrapper:hover {
  opacity: .5;
}
.xgkf51o-uOT6E9NbPH .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6E9NbPH .navbar-nav {
    margin: 0;
  }
}
.xgkf51o-uOT6E9NbPH .dropdown-menu,
.xgkf51o-uOT6E9NbPH .navbar.opened {
  background-color: false !important;
}
.xgkf51o-uOT6E9NbPH .nav-item:focus,
.xgkf51o-uOT6E9NbPH .nav-link:focus {
  outline: none;
}
.xgkf51o-uOT6E9NbPH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT6E9NbPH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.xgkf51o-uOT6E9NbPH .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.xgkf51o-uOT6E9NbPH .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.xgkf51o-uOT6E9NbPH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.xgkf51o-uOT6E9NbPH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.xgkf51o-uOT6E9NbPH .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6E9NbPH .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.xgkf51o-uOT6E9NbPH .navbar.opened {
  transition: all 0.3s;
}
.xgkf51o-uOT6E9NbPH .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.xgkf51o-uOT6E9NbPH .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.xgkf51o-uOT6E9NbPH .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed {
  justify-content: center;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.xgkf51o-uOT6E9NbPH .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6E9NbPH .navbar .nav-item {
    padding: .5rem 0;
  }
  .xgkf51o-uOT6E9NbPH .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .xgkf51o-uOT6E9NbPH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .xgkf51o-uOT6E9NbPH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .xgkf51o-uOT6E9NbPH .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .xgkf51o-uOT6E9NbPH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .xgkf51o-uOT6E9NbPH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .xgkf51o-uOT6E9NbPH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .xgkf51o-uOT6E9NbPH .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .xgkf51o-uOT6E9NbPH .navbar ul.navbar-nav li {
    margin: 0;
  }
  .xgkf51o-uOT6E9NbPH .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .xgkf51o-uOT6E9NbPH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .xgkf51o-uOT6E9NbPH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .xgkf51o-uOT6E9NbPH .navbar .icons-menu {
    padding: 0;
  }
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-short {
  min-height: 60px;
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.xgkf51o-uOT6E9NbPH .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;
}
.xgkf51o-uOT6E9NbPH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.xgkf51o-uOT6E9NbPH .navbar-brand .navbar-logo a {
  outline: none;
}
.xgkf51o-uOT6E9NbPH .dropdown-item.active,
.xgkf51o-uOT6E9NbPH .dropdown-item:active {
  background-color: transparent;
}
.xgkf51o-uOT6E9NbPH .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.xgkf51o-uOT6E9NbPH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.xgkf51o-uOT6E9NbPH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.xgkf51o-uOT6E9NbPH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.xgkf51o-uOT6E9NbPH ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.xgkf51o-uOT6E9NbPH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #006ed8;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.xgkf51o-uOT6E9NbPH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.xgkf51o-uOT6E9NbPH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT6E9NbPH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT6E9NbPH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.xgkf51o-uOT6E9NbPH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.xgkf51o-uOT6E9NbPH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xgkf51o-uOT6E9NbPH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .xgkf51o-uOT6E9NbPH .navbar {
    height: 70px;
  }
  .xgkf51o-uOT6E9NbPH .navbar.opened {
    height: auto;
  }
  .xgkf51o-uOT6E9NbPH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.xgkf51o-uOT6E9NbPH .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .xgkf51o-uOT6E9NbPH .container-fluid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.xgkf51o-uOT6E9NbPH .checkbox-section-btn-main {
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 991px) {
  .xgkf51o-uOT6E9NbPH .checkbox-section-btn-main {
    justify-content: flex-start;
    display: block;
  }
}
.xgkf51o-uOT6E9NbPH .checkbox-section-btn-main .btn {
  min-width: 160px;
  margin-top: 0.6rem;
}
.xgkf51o-uOT6E9NbPH .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6E9NbPH .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.xgkf51o-uOT6E9NbPH .text_widget {
  margin-bottom: 32px;
}
.xgkf51o-uOT6E9NbPH .text_widget a {
  transition: all 0.3s ease-out;
}
.xgkf51o-uOT6E9NbPH .text_widget a:hover,
.xgkf51o-uOT6E9NbPH .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .xgkf51o-uOT6E9NbPH .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    margin-left: 5%;
  }
}
.xgkf51o-uOT6E9NbPH .navbar.navbar-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #0782fa;
}
.xgkf51o-uOT6E9NbPH .icons-menu-main {
  display: flex;
}
.xgkf51o-uOT6E9NbPH .checkbox-section-subtitle {
  color: #000000;
  text-align: center;
}
.xgkf51o-uOT6E9NbPH .navbar-caption {
  color: #000000;
}
.xgkf51o-uOT6E9NbPH .checkbox-text {
  color: #9a9a9a;
  text-align: center;
}
.xgkf51o-uOT6E9NbPH .checkbox-section-subtitle,
.xgkf51o-uOT6E9NbPH .text_widget,
.xgkf51o-uOT6E9NbPH .checkbox-section-btn {
  text-align: center;
}
.xgkf51o-uOT6E9NbPH a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.xgkf51o-uOT6EawtgQ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #0782fa;
  background-image: linear-gradient(135deg, #04208b 10%, #0782fa 80%, #ffffff 130%);
}
.xgkf51o-uOT6EawtgQ .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT6EawtgQ .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOT6EawtgQ .row {
  justify-content: center;
}
.xgkf51o-uOT6EawtgQ .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.xgkf51o-uOT6EawtgQ .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.xgkf51o-uOT6EawtgQ .content-wrapper .checkbox-section-title {
  margin-bottom: 22px;
}
.xgkf51o-uOT6EawtgQ .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6EawtgQ .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.xgkf51o-uOT6EawtgQ .content-wrapper .checkbox-section-btn {
  margin-top: 32px;
}
.xgkf51o-uOT6EawtgQ .content-wrapper .checkbox-section-btn .checkbox-section-title {
  margin-top: 22px;
}
.xgkf51o-uOT6EawtgQ .checkbox-section-title {
  color: #ffffff;
}
.xgkf51o-uOT6EawtgQ .checkbox-text,
.xgkf51o-uOT6EawtgQ .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.xgkf51o-uOT6EawtgQ .checkbox-section-title,
.xgkf51o-uOT6EawtgQ .checkbox-section-btn,
.xgkf51o-uOT6EawtgQ .logo-wrapper {
  text-align: center;
}
.xgkf51o-uOT6Eb6KqD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.xgkf51o-uOT6Eb6KqD .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOT6Eb6KqD .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .xgkf51o-uOT6Eb6KqD .container {
    padding: 0 20px;
  }
}
.xgkf51o-uOT6Eb6KqD .row {
  margin: 0;
}
.xgkf51o-uOT6Eb6KqD .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.xgkf51o-uOT6Eb6KqD .checkbox-section-title {
  color: #000000;
}
.xgkf51o-uOWCvUsgof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #006ed8;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image.disabled {
  display: none;
}
.xgkf51o-uOWCvUsgof .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xgkf51o-uOWCvUsgof .card-wrapper {
  padding: 32px 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper {
    padding: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .checkbox-section-title {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 32px;
  list-style-type: none;
}
@media (max-width: 992px) {
  .xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list {
    margin-bottom: 24px;
  }
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag {
  display: inline-flex;
  padding: 10px 32px;
  background-color: transparent;
  margin: 4px;
  border: 1px solid #0782fa;
  transition: all 0.3s ease-in-out;
}
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:hover,
.xgkf51o-uOWCvUsgof .card-wrapper .nav-wrapper .list .item-tag:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.xgkf51o-uOWCvUsgof .card-wrapper .checkbox-copy {
  margin-bottom: 0;
}
.xgkf51o-uOWCvUsgof .checkbox-section-title {
  color: #2c2c26;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .list,
.xgkf51o-uOWCvUsgof .nav-wrapper {
  color: #63635d;
  text-align: center;
}
.xgkf51o-uOWCvUsgof .checkbox-copy {
  color: #000000;
  text-align: center;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
.cookie-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.cookie-overlay.active {
	display: block;
}

.cookie-notification {
	position: fixed;
	bottom: -350px;
	left: 0;
	right: 0;
	background-color: gray;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
	transform: translateY(200px);
	z-index: 1000;
}

.cookie-notification.active {
	transform: translateY(-350px);
}

.cookie-notification__content {
	max-width: 800px;
	margin: 0 auto;
	color: aliceblue;
}

.cookie-notification__content p a {
	color: aliceblue;
	transition: all 0.5s ease-in-out;
}

.cookie-notification__content p a:hover {
	color: blueviolet;
}

.cookie-notification__actions {
	margin-top: 10px;
}

.cookie-notification__button {
	margin: 5px;
	padding: 10px 15px;
	min-width: 150px;
	font-size: 14px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-notification__button:hover {
	filter: saturate(0.8);
}

@media (max-width: 768px) {
	.cookie-notification {
		bottom: -250px;
		padding: 15px;
		transform: translateY(150px);
	}
	.cookie-notification.active {
		transform: translateY(-250px);
	}
	.cookie-notification__content {
		max-width: 90%;
	}
	.cookie-notification__button {
		min-width: 120px;
		font-size: 12px;
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.cookie-notification {
		bottom: -200px;
		padding: 10px;
		transform: translateY(100px);
	}
	.cookie-notification.active {
		transform: translateY(-200px);
	}
	.cookie-notification__content {
		max-width: 95%;
	}
	.cookie-notification__button {
		min-width: 100px;
		font-size: 10px;
		padding: 6px 10px;
	}
}

/* logoanimations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.navbar-brand {
    animation: shake 0.8s ease-in-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 7: rotate slight */
a, button, .btn {
  transition: transform 0.1s ease;
}
a:active, button:active, .btn:active {
  transform: rotate(-3deg);
}
/* endmainanimations */
.quiz-section {
  background-image: url("../../../assets/images/wet_twilight.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.quiz-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}