body {
  font-family: Hanken Grotesk;
}
.display-1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10rem;
  line-height: 1.1;
}
.display-1 > .checkbox-iconfont {
  font-size: 12.5rem;
}
.display-2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-2 > .checkbox-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .checkbox-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .checkbox-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .checkbox-iconfont {
  font-size: 2rem;
}
/* ---- 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: 1600px) {
  .display-1 {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 7rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dfcefd !important;
  border-color: #dfcefd !important;
  color: #4c08c4 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #4c08c4 !important;
  background-color: #dfcefd !important;
  border-color: #dfcefd !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #4c08c4 !important;
  background-color: #dfcefd !important;
  border-color: #dfcefd !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent !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: transparent;
  color: #dfcefd;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a97bfa !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #4c08c4 !important;
  background-color: #dfcefd !important;
  border-color: #dfcefd !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent !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: transparent;
  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: transparent !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: #dfcefd !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9f6cf9 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.checkbox-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.checkbox-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #ffffff;
}
.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: #ffffff;
}
.checkbox-plan-header.bg-danger .checkbox-plan-subtitle,
.checkbox-plan-header.bg-danger .checkbox-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .checkbox-iconfont {
  font-size: 1.5rem;
}
.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.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .checkbox-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.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: #000000 !important;
  background: #dfcefd !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;
}
.PxhcCt-uO5ZHTkGJF {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO5ZHTkGJF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar.opened,
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO5ZHTkGJF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO5ZHTkGJF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO5ZHTkGJF .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;
  }
  .PxhcCt-uO5ZHTkGJF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO5ZHTkGJF .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO5ZHTkGJF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu,
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item:focus,
.PxhcCt-uO5ZHTkGJF .nav-link:focus {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .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;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown-item.active,
.PxhcCt-uO5ZHTkGJF .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO5ZHTkGJF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO5ZHTkGJF .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) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    height: 70px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO5ZHTkGJF .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO5ZHTkGJF .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO5ZHTkGJF .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO5ZHTkGJF .text_widget a:hover,
.PxhcCt-uO5ZHTkGJF .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO5ZHTkGJF .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle,
.PxhcCt-uO5ZHTkGJF .text_widget,
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO5ZLL78nO {
  background-color: #ffffff;
}
.PxhcCt-uO5ZLL78nO .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO5ZLL78nO .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO5ZLL78nO .content-wrap {
  margin: 0;
}
.PxhcCt-uO5ZLL78nO .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.PxhcCt-uO5ZLL78nO .content-wrapper {
  padding: 0 112px;
}
@media (max-width: 1440px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 1200px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.PxhcCt-uO5ZLL78nO .content-wrapper .checkbox-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.PxhcCt-uO5ZLL78nO .content-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.PxhcCt-uO5ZLL78nO .content-wrapper .checkbox-desc {
  margin-top: 122px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .content-wrapper .checkbox-desc {
    margin-top: 32px;
  }
}
.PxhcCt-uO5ZLL78nO .image-wrapper {
  height: 100%;
  padding-left: 112px;
  border-left: 3px dashed #000000;
  padding-left: 0;
  padding-right: 112px;
  border-left: none;
  border-right: 3px dashed #000000;
}
@media (max-width: 1440px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #000000;
    padding-top: 22px;
  }
}
@media (max-width: 1440px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 1200px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper {
    padding-right: 0;
    border-right: none;
    border-top: 3px dashed #000000;
    padding-top: 22px;
  }
}
.PxhcCt-uO5ZLL78nO .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZLL78nO .image-wrapper img {
    height: 350px;
  }
}
.PxhcCt-uO5ZLL78nO .checkbox-section-title {
  color: #c10b02;
}
.PxhcCt-uO5ZLL78nO .checkbox-text,
.PxhcCt-uO5ZLL78nO .text-wrapper {
  color: #000000;
  text-align: center;
}
.PxhcCt-uO5ZLL78nO .checkbox-desc {
  color: #4b4949;
  text-align: center;
}
.PxhcCt-uO5ZLL78nO .checkbox-section-title,
.PxhcCt-uO5ZLL78nO .checkbox-section-btn {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO5ZXFrCJe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2a2a;
}
@media (max-width: 992px) and (max-width: 992px) {
  .PxhcCt-uO5ZXFrCJe .container {
    padding: 0 24px;
  }
}
.PxhcCt-uO5ZXFrCJe .card {
  justify-content: center;
}
.PxhcCt-uO5ZXFrCJe .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZXFrCJe .title-wrapper {
    padding: 0 24px 24px;
  }
}
.PxhcCt-uO5ZXFrCJe .title-wrapper .checkbox-section-title {
  margin-bottom: 16px;
}
.PxhcCt-uO5ZXFrCJe .title-wrapper .checkbox-desc {
  margin-bottom: 0;
}
.PxhcCt-uO5ZXFrCJe .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZXFrCJe .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.PxhcCt-uO5ZXFrCJe .text-wrapper .checkbox-text {
  width: 45%;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZXFrCJe .text-wrapper .checkbox-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .PxhcCt-uO5ZXFrCJe .text-wrapper .checkbox-text:last-child {
    margin-bottom: 0;
  }
}
.PxhcCt-uO5ZXFrCJe .checkbox-section-title {
  color: #F9F6E0;
}
.PxhcCt-uO5ZXFrCJe .checkbox-desc {
  color: #ffffff;
}
.PxhcCt-uO5ZXFrCJe .checkbox-text {
  color: #ffffff;
}
.PxhcCt-uO5ZXFrCJe .checkbox-section-btn {
  text-align: right;
}
.PxhcCt-uO5ZXFrCJe .checkbox-section-title,
.PxhcCt-uO5ZXFrCJe .checkbox-section-btn {
  text-align: center;
  color: #ffffff;
}
.PxhcCt-uO7xCLCdi0 {
  background-image: url("../../../assets/images/domain1.jpg-1360x768.jpg");
}
.PxhcCt-uO7xCLCdi0 .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO7xCLCdi0 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO7xCLCdi0 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .PxhcCt-uO7xCLCdi0 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .PxhcCt-uO7xCLCdi0 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO7xCLCdi0 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .PxhcCt-uO7xCLCdi0 .container {
    padding: 0 24px;
  }
}
.PxhcCt-uO7xCLCdi0 .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO7xCLCdi0 .content-wrapper {
    padding: 0;
  }
}
.PxhcCt-uO7xCLCdi0 .content-wrapper .desc-wrapper .checkbox-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.PxhcCt-uO7xCLCdi0 .content-wrapper .desc-wrapper .checkbox-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.PxhcCt-uO7xCLCdi0 .content-wrapper .desc-wrapper .checkbox-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.PxhcCt-uO7xCLCdi0 .content-wrapper .checkbox-section-title {
  margin-bottom: 16px;
}
.PxhcCt-uO7xCLCdi0 .content-wrapper .text-wrapper .checkbox-text {
  display: inline-flex;
  max-width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .PxhcCt-uO7xCLCdi0 .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO7xCLCdi0 .checkbox-section-title {
  color: #ffffff;
}
.PxhcCt-uO7xCLCdi0 .checkbox-desc,
.PxhcCt-uO7xCLCdi0 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO7xCLCdi0 .checkbox-text,
.PxhcCt-uO7xCLCdi0 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO7xCLCdi0 .checkbox-section-title,
.PxhcCt-uO7xCLCdi0 .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO62YMSxD5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO62YMSxD5 blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #ffffff;
}
.PxhcCt-uO62YMSxD5 .checkbox-section-title {
  color: #000000;
  text-align: center;
}
.PxhcCt-uO62YMSxD5 .checkbox-text {
  color: #000000;
}
.PxhcCt-uO606kLpHd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.PxhcCt-uO606kLpHd .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO606kLpHd .col-12 {
  padding: 0;
}
.PxhcCt-uO606kLpHd .row {
  margin: 0;
}
.PxhcCt-uO606kLpHd .card-wrapper {
  border: 1px solid #ffffff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .PxhcCt-uO606kLpHd .card-wrapper {
    padding: 1rem;
  }
}
.PxhcCt-uO606kLpHd .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO606kLpHd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .PxhcCt-uO606kLpHd .card-company-row {
    margin-top: 0.5em;
  }
}
.PxhcCt-uO606kLpHd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.PxhcCt-uO606kLpHd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.PxhcCt-uO606kLpHd .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .PxhcCt-uO606kLpHd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO606kLpHd .image-wrapper {
    padding: 1rem;
  }
}
.PxhcCt-uO606kLpHd .checkbox-section-title {
  color: #000000;
  text-align: center;
}
.PxhcCt-uO606kLpHd .checkbox-text,
.PxhcCt-uO606kLpHd .checkbox-section-btn {
  color: #000000;
}
.PxhcCt-uO60iQpdFD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO60iQpdFD .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60iQpdFD .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60iQpdFD .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .container {
    padding: 0 16px;
  }
}
.PxhcCt-uO60iQpdFD .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .content-wrapper {
    margin-bottom: 32px;
  }
}
.PxhcCt-uO60iQpdFD .content-wrapper .checkbox-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .content-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.PxhcCt-uO60iQpdFD .content-wrapper .text-wrapper .checkbox-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .PxhcCt-uO60iQpdFD .content-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO60iQpdFD .image-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .image-wrapper {
    margin-left: 0;
  }
}
.PxhcCt-uO60iQpdFD .image-wrapper img {
  height: 660px;
  object-fit: cover;
  box-shadow: 6px 8px 0 0 #ffffff;
  border-radius: 24px !important;
}
@media (max-width: 992px) {
  .PxhcCt-uO60iQpdFD .image-wrapper img {
    height: 350px;
  }
}
.PxhcCt-uO60iQpdFD .checkbox-section-title {
  color: #ffffff;
}
.PxhcCt-uO60iQpdFD .checkbox-text {
  color: #ffffff;
}
.PxhcCt-uO60iQpdFD .checkbox-section-title,
.PxhcCt-uO60iQpdFD .checkbox-section-btn {
  text-align: center;
  color: #ffffff;
}
.PxhcCt-uO60iQpdFD .checkbox-text,
.PxhcCt-uO60iQpdFD .text-wrapper {
  text-align: center;
}
.PxhcCt-uO60pvDqHF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO60pvDqHF .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60pvDqHF .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60pvDqHF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .PxhcCt-uO60pvDqHF .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item {
    margin-bottom: 12px;
  }
  .PxhcCt-uO60pvDqHF .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: #2a2a2a;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .checkbox-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .checkbox-section-btn {
    margin-bottom: 16px;
  }
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  color: #ffffff;
}
@media (max-width: 992px) {
  .PxhcCt-uO60pvDqHF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .checkbox-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.PxhcCt-uO60pvDqHF .item-title {
  color: #050f0f;
}
.PxhcCt-uO60pvDqHF .item-text {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO60pvDqHF .icon-wrapper {
  text-align: right;
}
.PxhcCt-uO60pvDqHF .item-title,
.PxhcCt-uO60pvDqHF .icon-wrapper,
.PxhcCt-uO60pvDqHF .checkbox-section-btn {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO64pWB1Qq {
  background-color: transparent;
}
.PxhcCt-uO64pWB1Qq .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO64pWB1Qq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO64pWB1Qq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO64pWB1Qq .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pWB1Qq .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO64pWB1Qq .menu_box .navbar.opened,
  .PxhcCt-uO64pWB1Qq .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO64pWB1Qq .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO64pWB1Qq .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO64pWB1Qq .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO64pWB1Qq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO64pWB1Qq .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pWB1Qq .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO64pWB1Qq .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO64pWB1Qq .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO64pWB1Qq .nav-item .nav-link:hover,
.PxhcCt-uO64pWB1Qq .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO64pWB1Qq .nav-item .nav-link:hover::before,
.PxhcCt-uO64pWB1Qq .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO64pWB1Qq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pWB1Qq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO64pWB1Qq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pWB1Qq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO64pWB1Qq .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;
  }
  .PxhcCt-uO64pWB1Qq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO64pWB1Qq .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO64pWB1Qq .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO64pWB1Qq .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO64pWB1Qq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO64pWB1Qq .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO64pWB1Qq .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO64pWB1Qq .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO64pWB1Qq .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO64pWB1Qq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pWB1Qq .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO64pWB1Qq .dropdown-menu,
.PxhcCt-uO64pWB1Qq .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO64pWB1Qq .nav-item:focus,
.PxhcCt-uO64pWB1Qq .nav-link:focus {
  outline: none;
}
.PxhcCt-uO64pWB1Qq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pWB1Qq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO64pWB1Qq .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO64pWB1Qq .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pWB1Qq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO64pWB1Qq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO64pWB1Qq .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO64pWB1Qq .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO64pWB1Qq .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO64pWB1Qq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO64pWB1Qq .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO64pWB1Qq .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO64pWB1Qq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pWB1Qq .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO64pWB1Qq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO64pWB1Qq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO64pWB1Qq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO64pWB1Qq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO64pWB1Qq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO64pWB1Qq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO64pWB1Qq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO64pWB1Qq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO64pWB1Qq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO64pWB1Qq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO64pWB1Qq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO64pWB1Qq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO64pWB1Qq .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO64pWB1Qq .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO64pWB1Qq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO64pWB1Qq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO64pWB1Qq .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;
}
.PxhcCt-uO64pWB1Qq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO64pWB1Qq .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO64pWB1Qq .dropdown-item.active,
.PxhcCt-uO64pWB1Qq .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO64pWB1Qq .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO64pWB1Qq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO64pWB1Qq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO64pWB1Qq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO64pWB1Qq ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO64pWB1Qq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pWB1Qq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO64pWB1Qq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pWB1Qq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pWB1Qq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pWB1Qq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pWB1Qq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO64pWB1Qq .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) {
  .PxhcCt-uO64pWB1Qq .navbar {
    height: 70px;
  }
  .PxhcCt-uO64pWB1Qq .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO64pWB1Qq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO64pWB1Qq .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO64pWB1Qq .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO64pWB1Qq .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO64pWB1Qq .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pWB1Qq .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO64pWB1Qq .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO64pWB1Qq .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO64pWB1Qq .text_widget a:hover,
.PxhcCt-uO64pWB1Qq .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pWB1Qq .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO64pWB1Qq .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pWB1Qq .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO64pWB1Qq .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pWB1Qq .checkbox-section-subtitle,
.PxhcCt-uO64pWB1Qq .text_widget,
.PxhcCt-uO64pWB1Qq .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO64pWB1Qq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO64pXcATt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO64pXcATt .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO64pXcATt .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO64pXcATt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .PxhcCt-uO64pXcATt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .PxhcCt-uO64pXcATt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .PxhcCt-uO64pXcATt .card-wrapper {
    padding: 4rem;
  }
}
.PxhcCt-uO64pXcATt .checkbox-text,
.PxhcCt-uO64pXcATt .checkbox-section-btn {
  color: #000000;
  text-align: left;
}
.PxhcCt-uO64pXcATt .card-title,
.PxhcCt-uO64pXcATt .card-box {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO64pESzLf {
  background-color: transparent;
}
.PxhcCt-uO64pESzLf .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO64pESzLf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO64pESzLf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO64pESzLf .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pESzLf .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO64pESzLf .menu_box .navbar.opened,
  .PxhcCt-uO64pESzLf .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO64pESzLf .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO64pESzLf .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO64pESzLf .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO64pESzLf .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO64pESzLf .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pESzLf .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO64pESzLf .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO64pESzLf .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO64pESzLf .nav-item .nav-link:hover,
.PxhcCt-uO64pESzLf .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO64pESzLf .nav-item .nav-link:hover::before,
.PxhcCt-uO64pESzLf .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO64pESzLf .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pESzLf .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO64pESzLf .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pESzLf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO64pESzLf .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;
  }
  .PxhcCt-uO64pESzLf .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO64pESzLf .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO64pESzLf .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO64pESzLf .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO64pESzLf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO64pESzLf .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO64pESzLf .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO64pESzLf .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO64pESzLf .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO64pESzLf .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pESzLf .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO64pESzLf .dropdown-menu,
.PxhcCt-uO64pESzLf .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO64pESzLf .nav-item:focus,
.PxhcCt-uO64pESzLf .nav-link:focus {
  outline: none;
}
.PxhcCt-uO64pESzLf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pESzLf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO64pESzLf .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO64pESzLf .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pESzLf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO64pESzLf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO64pESzLf .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO64pESzLf .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO64pESzLf .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO64pESzLf .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO64pESzLf .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO64pESzLf .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO64pESzLf .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO64pESzLf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO64pESzLf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO64pESzLf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO64pESzLf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO64pESzLf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO64pESzLf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO64pESzLf .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pESzLf .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO64pESzLf .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO64pESzLf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO64pESzLf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO64pESzLf .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO64pESzLf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO64pESzLf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO64pESzLf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO64pESzLf .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO64pESzLf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO64pESzLf .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO64pESzLf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO64pESzLf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO64pESzLf .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO64pESzLf .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO64pESzLf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO64pESzLf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO64pESzLf .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;
}
.PxhcCt-uO64pESzLf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO64pESzLf .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO64pESzLf .dropdown-item.active,
.PxhcCt-uO64pESzLf .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO64pESzLf .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO64pESzLf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO64pESzLf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO64pESzLf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO64pESzLf ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO64pESzLf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO64pESzLf button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO64pESzLf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO64pESzLf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO64pESzLf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pESzLf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pESzLf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO64pESzLf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pESzLf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pESzLf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pESzLf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pESzLf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO64pESzLf .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) {
  .PxhcCt-uO64pESzLf .navbar {
    height: 70px;
  }
  .PxhcCt-uO64pESzLf .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO64pESzLf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO64pESzLf .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO64pESzLf .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO64pESzLf .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO64pESzLf .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pESzLf .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO64pESzLf .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO64pESzLf .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO64pESzLf .text_widget a:hover,
.PxhcCt-uO64pESzLf .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pESzLf .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO64pESzLf .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pESzLf .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO64pESzLf .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pESzLf .checkbox-section-subtitle,
.PxhcCt-uO64pESzLf .text_widget,
.PxhcCt-uO64pESzLf .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO64pESzLf a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO64pHgnOx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO64pHgnOx .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO64pHgnOx .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO64pHgnOx .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .PxhcCt-uO64pHgnOx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .PxhcCt-uO64pHgnOx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .PxhcCt-uO64pHgnOx .card-wrapper {
    padding: 4rem;
  }
}
.PxhcCt-uO64pHgnOx .checkbox-text,
.PxhcCt-uO64pHgnOx .checkbox-section-btn {
  color: #000000;
  text-align: left;
}
.PxhcCt-uO64pHgnOx .card-title,
.PxhcCt-uO64pHgnOx .card-box {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO64pmCFwg {
  background-color: transparent;
}
.PxhcCt-uO64pmCFwg .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO64pmCFwg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO64pmCFwg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO64pmCFwg .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pmCFwg .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO64pmCFwg .menu_box .navbar.opened,
  .PxhcCt-uO64pmCFwg .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO64pmCFwg .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO64pmCFwg .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO64pmCFwg .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO64pmCFwg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO64pmCFwg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pmCFwg .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO64pmCFwg .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO64pmCFwg .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO64pmCFwg .nav-item .nav-link:hover,
.PxhcCt-uO64pmCFwg .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO64pmCFwg .nav-item .nav-link:hover::before,
.PxhcCt-uO64pmCFwg .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO64pmCFwg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pmCFwg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO64pmCFwg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO64pmCFwg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO64pmCFwg .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;
  }
  .PxhcCt-uO64pmCFwg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO64pmCFwg .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO64pmCFwg .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO64pmCFwg .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO64pmCFwg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO64pmCFwg .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO64pmCFwg .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO64pmCFwg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO64pmCFwg .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO64pmCFwg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pmCFwg .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO64pmCFwg .dropdown-menu,
.PxhcCt-uO64pmCFwg .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO64pmCFwg .nav-item:focus,
.PxhcCt-uO64pmCFwg .nav-link:focus {
  outline: none;
}
.PxhcCt-uO64pmCFwg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pmCFwg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO64pmCFwg .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO64pmCFwg .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO64pmCFwg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO64pmCFwg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO64pmCFwg .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO64pmCFwg .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO64pmCFwg .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO64pmCFwg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO64pmCFwg .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO64pmCFwg .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO64pmCFwg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO64pmCFwg .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO64pmCFwg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO64pmCFwg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO64pmCFwg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO64pmCFwg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO64pmCFwg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO64pmCFwg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO64pmCFwg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO64pmCFwg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO64pmCFwg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO64pmCFwg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO64pmCFwg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO64pmCFwg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO64pmCFwg .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO64pmCFwg .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO64pmCFwg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO64pmCFwg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO64pmCFwg .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;
}
.PxhcCt-uO64pmCFwg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO64pmCFwg .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO64pmCFwg .dropdown-item.active,
.PxhcCt-uO64pmCFwg .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO64pmCFwg .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO64pmCFwg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO64pmCFwg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO64pmCFwg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO64pmCFwg ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO64pmCFwg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO64pmCFwg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO64pmCFwg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pmCFwg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pmCFwg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO64pmCFwg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO64pmCFwg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO64pmCFwg .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) {
  .PxhcCt-uO64pmCFwg .navbar {
    height: 70px;
  }
  .PxhcCt-uO64pmCFwg .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO64pmCFwg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO64pmCFwg .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO64pmCFwg .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO64pmCFwg .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO64pmCFwg .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pmCFwg .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO64pmCFwg .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO64pmCFwg .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO64pmCFwg .text_widget a:hover,
.PxhcCt-uO64pmCFwg .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO64pmCFwg .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO64pmCFwg .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pmCFwg .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO64pmCFwg .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO64pmCFwg .checkbox-section-subtitle,
.PxhcCt-uO64pmCFwg .text_widget,
.PxhcCt-uO64pmCFwg .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO64pmCFwg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO64pniEZ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO64pniEZ0 .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO64pniEZ0 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO64pniEZ0 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .PxhcCt-uO64pniEZ0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .PxhcCt-uO64pniEZ0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .PxhcCt-uO64pniEZ0 .card-wrapper {
    padding: 4rem;
  }
}
.PxhcCt-uO64pniEZ0 .checkbox-text,
.PxhcCt-uO64pniEZ0 .checkbox-section-btn {
  color: #000000;
  text-align: left;
}
.PxhcCt-uO64pniEZ0 .card-title,
.PxhcCt-uO64pniEZ0 .card-box {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO5ZHTkGJF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar.opened,
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO5ZHTkGJF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO5ZHTkGJF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO5ZHTkGJF .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;
  }
  .PxhcCt-uO5ZHTkGJF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO5ZHTkGJF .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO5ZHTkGJF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu,
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item:focus,
.PxhcCt-uO5ZHTkGJF .nav-link:focus {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .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;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown-item.active,
.PxhcCt-uO5ZHTkGJF .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO5ZHTkGJF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO5ZHTkGJF .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) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    height: 70px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO5ZHTkGJF .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO5ZHTkGJF .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO5ZHTkGJF .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO5ZHTkGJF .text_widget a:hover,
.PxhcCt-uO5ZHTkGJF .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO5ZHTkGJF .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle,
.PxhcCt-uO5ZHTkGJF .text_widget,
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO64kjz1mZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO64kjz1mZ .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO64kjz1mZ .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO64kjz1mZ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .PxhcCt-uO64kjz1mZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .PxhcCt-uO64kjz1mZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .PxhcCt-uO64kjz1mZ .card-wrapper {
    padding: 4rem;
  }
}
.PxhcCt-uO64kjz1mZ .checkbox-text,
.PxhcCt-uO64kjz1mZ .checkbox-section-btn {
  color: #000000;
  text-align: left;
}
.PxhcCt-uO64kjz1mZ .card-title,
.PxhcCt-uO64kjz1mZ .card-box {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO5ZHTkGJF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar.opened,
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO5ZHTkGJF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO5ZHTkGJF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO5ZHTkGJF .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;
  }
  .PxhcCt-uO5ZHTkGJF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO5ZHTkGJF .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO5ZHTkGJF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu,
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item:focus,
.PxhcCt-uO5ZHTkGJF .nav-link:focus {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .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;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown-item.active,
.PxhcCt-uO5ZHTkGJF .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO5ZHTkGJF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO5ZHTkGJF .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) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    height: 70px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO5ZHTkGJF .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO5ZHTkGJF .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO5ZHTkGJF .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO5ZHTkGJF .text_widget a:hover,
.PxhcCt-uO5ZHTkGJF .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO5ZHTkGJF .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle,
.PxhcCt-uO5ZHTkGJF .text_widget,
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO7EvLPcwU {
  background-color: #ffffff;
}
.PxhcCt-uO7EvLPcwU .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO7EvLPcwU .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO7EvLPcwU .items-wrap {
  justify-content: space-between;
}
.PxhcCt-uO7EvLPcwU .content-wrapper {
  padding: 96px;
  background-color: #2a2a2a;
  height: 100%;
}
@media (max-width: 1440px) {
  .PxhcCt-uO7EvLPcwU .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO7EvLPcwU .content-wrapper {
    padding: 26px 22px;
    margin-bottom: 12px;
    height: auto;
  }
}
.PxhcCt-uO7EvLPcwU .content-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO7EvLPcwU .content-wrapper .checkbox-section-title {
    margin-bottom: 32px;
  }
}
.PxhcCt-uO7EvLPcwU .content-wrapper .checkbox-text {
  margin-bottom: 0;
}
.PxhcCt-uO7EvLPcwU .content-wrap {
  height: 100%;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper {
  height: 100%;
  padding: 96px;
  background-color: #2a2a2a;
}
@media (max-width: 1440px) {
  .PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper {
    padding: 22px;
  }
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group {
    margin-bottom: 16px !important;
  }
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 21px 32px;
  border: 1px solid #ffffff !important;
  background-color: #ffffff;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #ffffff !important;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 150px;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .checkbox-section-btn {
  width: 100%;
}
.PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .checkbox-section-btn .btn {
  padding: 15px 12px;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO7EvLPcwU .content-wrap .form-wrapper .dragArea.row .checkbox-section-btn .btn {
    margin-left: 10px;
  }
}
.PxhcCt-uO7EvLPcwU .checkbox-section-title {
  color: #191c25;
}
.PxhcCt-uO7EvLPcwU .checkbox-text {
  color: #ffffff;
}
.PxhcCt-uO7EvLPcwU label {
  color: #191c25;
}
.PxhcCt-uO7EvLPcwU .checkbox-section-title,
.PxhcCt-uO7EvLPcwU .checkbox-section-btn {
  text-align: center;
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  background-color: #2a2a2a !important;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #2a2a2a !important;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.PxhcCt-uO5ZHTkGJF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar.opened,
  .PxhcCt-uO5ZHTkGJF .menu_box .navbar-collapse {
    background-color: #2a2a2a !important;
    transition: all 0s ease 0s;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown {
  position: relative !important;
}
.PxhcCt-uO5ZHTkGJF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .btn:hover {
  box-shadow: none;
}
.PxhcCt-uO5ZHTkGJF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .nav-item {
    margin: 0 !important;
  }
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #bee0d6;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus {
  color: #bee0d6 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before,
.PxhcCt-uO5ZHTkGJF .nav-item .nav-link:focus::before {
  width: 100%;
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .PxhcCt-uO5ZHTkGJF .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;
  }
  .PxhcCt-uO5ZHTkGJF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .PxhcCt-uO5ZHTkGJF .offcanvas_box {
    display: none;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.PxhcCt-uO5ZHTkGJF .container {
  display: flex;
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper {
  color: #bee0d6;
  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;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.PxhcCt-uO5ZHTkGJF .iconfont-wrapper:hover {
  opacity: .5;
}
.PxhcCt-uO5ZHTkGJF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav {
    margin: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .dropdown-menu,
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  background-color: false !important;
}
.PxhcCt-uO5ZHTkGJF .nav-item:focus,
.PxhcCt-uO5ZHTkGJF .nav-link:focus {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.PxhcCt-uO5ZHTkGJF .dropdown .dropdown-menu .dropdown-item .checkbox-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.opened {
  transition: all 0.3s;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed {
  justify-content: center;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.PxhcCt-uO5ZHTkGJF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item {
    padding: .5rem 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .PxhcCt-uO5ZHTkGJF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .PxhcCt-uO5ZHTkGJF .navbar .icons-menu {
    padding: 0;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short {
  min-height: 60px;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.PxhcCt-uO5ZHTkGJF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .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;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.PxhcCt-uO5ZHTkGJF .navbar-brand .navbar-logo a {
  outline: none;
}
.PxhcCt-uO5ZHTkGJF .dropdown-item.active,
.PxhcCt-uO5ZHTkGJF .dropdown-item:active {
  background-color: transparent;
}
.PxhcCt-uO5ZHTkGJF .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.PxhcCt-uO5ZHTkGJF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.PxhcCt-uO5ZHTkGJF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.PxhcCt-uO5ZHTkGJF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.PxhcCt-uO5ZHTkGJF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #2a2a2a;
  background: #2a2a2a;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.PxhcCt-uO5ZHTkGJF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.PxhcCt-uO5ZHTkGJF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.PxhcCt-uO5ZHTkGJF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.PxhcCt-uO5ZHTkGJF .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) {
  .PxhcCt-uO5ZHTkGJF .navbar {
    height: 70px;
  }
  .PxhcCt-uO5ZHTkGJF .navbar.opened {
    height: auto;
  }
  .PxhcCt-uO5ZHTkGJF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.PxhcCt-uO5ZHTkGJF .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .PxhcCt-uO5ZHTkGJF .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn-main .btn {
  margin: 8px 0 8px 8px;
  min-width: 220px;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption:hover {
  color: #dfcefd;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.PxhcCt-uO5ZHTkGJF .text_widget {
  margin-bottom: 32px;
}
.PxhcCt-uO5ZHTkGJF .text_widget a {
  transition: all 0.3s ease-out;
}
.PxhcCt-uO5ZHTkGJF .text_widget a:hover,
.PxhcCt-uO5ZHTkGJF .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .PxhcCt-uO5ZHTkGJF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
  }
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .navbar-caption {
  color: #bee0d6;
}
.PxhcCt-uO5ZHTkGJF .checkbox-text {
  color: #254b45;
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF .checkbox-section-subtitle,
.PxhcCt-uO5ZHTkGJF .text_widget,
.PxhcCt-uO5ZHTkGJF .checkbox-section-btn {
  text-align: center;
}
.PxhcCt-uO5ZHTkGJF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.PxhcCt-uO60ADcBwo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.PxhcCt-uO60ADcBwo .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60ADcBwo .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60ADcBwo .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .PxhcCt-uO60ADcBwo .card {
    margin-bottom: 2rem!important;
  }
  .PxhcCt-uO60ADcBwo .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .PxhcCt-uO60ADcBwo .link-wrap {
    align-items: center;
  }
}
.PxhcCt-uO60ADcBwo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.PxhcCt-uO60ADcBwo .card-title,
.PxhcCt-uO60ADcBwo .card-box {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO60ADcBwo .checkbox-text,
.PxhcCt-uO60ADcBwo .link-wrap,
.PxhcCt-uO60ADcBwo .checkbox-section-btn {
  text-align: left;
}
.PxhcCt-uO60x8XqLK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO60x8XqLK .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60x8XqLK .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60x8XqLK .item-wrapper {
  background-color: #ffffff;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ffffff;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.PxhcCt-uO60x8XqLK .checkbox-section-title,
.PxhcCt-uO60x8XqLK .checkbox-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .PxhcCt-uO60x8XqLK .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .PxhcCt-uO60x8XqLK .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.PxhcCt-uO60x8XqLK .checkbox-section-title {
  color: #ffffff;
}
.PxhcCt-uO60x8XqLK .card-title {
  color: #000000;
  text-align: center;
}
.PxhcCt-uO60x8XqLK .checkbox-text {
  color: #000000;
}
.PxhcCt-uO60x8XqLK .price {
  color: #000000;
}
.PxhcCt-uO60GfX9AJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO60GfX9AJ .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60GfX9AJ .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60GfX9AJ .items-wrapper {
  justify-content: flex-end;
}
.PxhcCt-uO60GfX9AJ .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .PxhcCt-uO60GfX9AJ .image-wrapper {
    margin-bottom: 32px;
  }
}
.PxhcCt-uO60GfX9AJ .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .PxhcCt-uO60GfX9AJ .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .PxhcCt-uO60GfX9AJ .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .PxhcCt-uO60GfX9AJ .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .PxhcCt-uO60GfX9AJ .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.PxhcCt-uO60GfX9AJ .content-wrapper {
  padding-left: 120px;
}
@media (max-width: 1200px) {
  .PxhcCt-uO60GfX9AJ .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO60GfX9AJ .content-wrapper {
    padding-left: 0;
  }
}
.PxhcCt-uO60GfX9AJ .content-wrapper .checkbox-desc {
  margin-bottom: 8px;
}
.PxhcCt-uO60GfX9AJ .content-wrapper .checkbox-section-title {
  margin-bottom: 24px;
}
.PxhcCt-uO60GfX9AJ .content-wrapper .checkbox-text {
  margin-bottom: 24px;
}
.PxhcCt-uO60GfX9AJ .checkbox-desc {
  color: #000000;
}
.PxhcCt-uO60GfX9AJ .checkbox-section-title {
  color: #272b2e;
}
.PxhcCt-uO60GfX9AJ .checkbox-text,
.PxhcCt-uO60GfX9AJ .text-wrapper {
  color: #272b2e;
}
.PxhcCt-uO60GfX9AJ .checkbox-section-title,
.PxhcCt-uO60GfX9AJ .checkbox-section-btn {
  text-align: center;
  color: #000000;
}
.PxhcCt-uO60GfX9AJ .checkbox-text {
  color: #000000;
}
.PxhcCt-uO60HBV0C6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO60HBV0C6 .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60HBV0C6 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60HBV0C6 .content-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .PxhcCt-uO60HBV0C6 .content-wrapper {
    margin-bottom: 40px;
  }
}
.PxhcCt-uO60HBV0C6 .content-wrapper .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60HBV0C6 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.PxhcCt-uO60HBV0C6 .content-wrapper .title-wrapper .desc-wrapper .checkbox-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.PxhcCt-uO60HBV0C6 .content-wrapper .title-wrapper .checkbox-section-title {
  margin-bottom: 0;
}
.PxhcCt-uO60HBV0C6 .content-wrapper .title-wrapper .checkbox-section-title span {
  color: #ffffff;
}
.PxhcCt-uO60HBV0C6 .content-wrapper .checkbox-text {
  margin-bottom: 0;
}
.PxhcCt-uO60HBV0C6 .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .PxhcCt-uO60HBV0C6 .image-wrapper img {
    height: 350px;
  }
}
.PxhcCt-uO60HBV0C6 .checkbox-section-title {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO60HBV0C6 .checkbox-desc {
  color: #b19a7c;
}
.PxhcCt-uO60HBV0C6 .checkbox-text {
  color: #ffffff;
}
.PxhcCt-uO60LBxhX2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.PxhcCt-uO60LBxhX2 .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO60LBxhX2 .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO60LBxhX2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .container {
    padding: 0 30px;
  }
}
.PxhcCt-uO60LBxhX2 .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .content-wrapper {
    display: block;
  }
}
.PxhcCt-uO60LBxhX2 .content-wrapper .card {
  justify-content: center;
}
.PxhcCt-uO60LBxhX2 .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #2a2a2a;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.PxhcCt-uO60LBxhX2 .content-wrapper .content-wrap .checkbox-section-title {
  margin-bottom: 35px;
}
.PxhcCt-uO60LBxhX2 .content-wrapper .content-wrap .checkbox-text {
  margin-bottom: 40px;
}
.PxhcCt-uO60LBxhX2 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.PxhcCt-uO60LBxhX2 .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .PxhcCt-uO60LBxhX2 .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.PxhcCt-uO60LBxhX2 .checkbox-section-title {
  color: #144031;
}
.PxhcCt-uO60LBxhX2 .checkbox-text {
  color: #ffffff;
}
.PxhcCt-uO60LBxhX2 .checkbox-section-title,
.PxhcCt-uO60LBxhX2 .checkbox-section-btn {
  color: #ffffff;
  text-align: center;
}
.PxhcCt-uO6fuicrFg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #2a2a2a;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image.disabled {
  display: none;
}
.PxhcCt-uO6fuicrFg .checkbox-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.PxhcCt-uO6fuicrFg .row {
  justify-content: center;
}
.PxhcCt-uO6fuicrFg .main-content {
  background-color: #2a2a2a;
  padding: 80px 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .main-content {
    padding: 30px 0;
    margin: 0 0 30px;
  }
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .checkbox-section-title {
    margin-bottom: 30px;
  }
}
.PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .PxhcCt-uO6fuicrFg .title-wrapper .text-wrapper .checkbox-text {
    width: 100%;
  }
}
.PxhcCt-uO6fuicrFg .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list .item-wrap {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:last-child {
  margin-bottom: 0;
}
.PxhcCt-uO6fuicrFg .list .item-wrap:hover,
.PxhcCt-uO6fuicrFg .list .item-wrap:focus {
  transform: translateX(14px);
}
.PxhcCt-uO6fuicrFg .checkbox-copy {
  margin: 0;
  color: #fff7ee;
  text-align: center;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .checkbox-text {
  color: #151e11;
}
.PxhcCt-uO6fuicrFg .list,
.PxhcCt-uO6fuicrFg .item-wrap {
  color: #ffffff;
}
.PxhcCt-uO6fuicrFg .checkbox-section-title,
.PxhcCt-uO6fuicrFg .checkbox-section-btn {
  color: #ffffff;
  text-align: left;
}
.PxhcCt-uO6fuicrFg .checkbox-text,
.PxhcCt-uO6fuicrFg .text-wrapper {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
@keyframes coolIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    filter: blur(5px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes coolOut {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
    filter: blur(3px);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: coolIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: coolOut 0.5s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes bounceRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

.navbar-brand {
    animation: bounceRight 1s ease-in-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 3: pulse outline */
a, button, .btn {
  position: relative;
}
a:active, button:active, .btn:active {
  animation: pulse-outline 0.3s ease-out;
}
@keyframes pulse-outline {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6); }
  50% { box-shadow: 0 0 10px 6px rgba(0, 123, 255, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}
/* endmainanimations */
