body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.6rem;
  line-height: 0.9;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((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.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #009e6e !important;
}
.bg-success {
  background-color: #40b0bf !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: #009e6e !important;
  border-color: #009e6e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #004732 !important;
  border-color: #004732 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #004732 !important;
  border-color: #004732 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #9b9ba5 !important;
  border-color: #9b9ba5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #6f6f7b !important;
  border-color: #6f6f7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6f6f7b !important;
  border-color: #6f6f7b !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  border-color: #009e6e;
  color: #009e6e;
}
.btn-secondary-outline {
  border-color: #9b9ba5;
  color: #9b9ba5;
}
.btn-info-outline {
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-success-outline {
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-warning-outline {
  border-color: #ffe161;
  color: #ffe161;
}
.btn-danger-outline {
  border-color: #ff9966;
  color: #ff9966;
}
.btn-black-outline {
  border-color: #17171a;
  color: #17171a;
}
.btn-white-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.text-primary {
  color: #009e6e !important;
}
.text-secondary {
  color: #9b9ba5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #17171A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #003827 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #676773 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #009e6e;
}
.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;
}
.mbr-gallery-filter li.active .btn {
  background-color: #009e6e;
  border-color: #009e6e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #009e6e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1fffbb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #009e6e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #009e6e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #009e6e;
}
.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: #009e6e;
  border-bottom-color: #009e6e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #009e6e !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: #9b9ba5 !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='%23009e6e' %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;
}
.cid-tNEHLu6Wiu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNEHLu6Wiu nav.navbar {
  position: fixed;
}
.cid-tNEHLu6Wiu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNEHLu6Wiu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNEHLu6Wiu .dropdown-item:hover,
.cid-tNEHLu6Wiu .dropdown-item:focus {
  background: #009e6e !important;
  color: white !important;
}
.cid-tNEHLu6Wiu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNEHLu6Wiu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNEHLu6Wiu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNEHLu6Wiu .nav-link {
  position: relative;
}
.cid-tNEHLu6Wiu .container {
  display: flex;
  margin: auto;
}
.cid-tNEHLu6Wiu .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown-menu,
.cid-tNEHLu6Wiu .navbar.opened {
  background: #ffffff !important;
}
.cid-tNEHLu6Wiu .nav-item:focus,
.cid-tNEHLu6Wiu .nav-link:focus {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNEHLu6Wiu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNEHLu6Wiu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.opened {
  transition: all 0.3s;
}
.cid-tNEHLu6Wiu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNEHLu6Wiu .navbar .navbar-logo img {
  width: auto;
}
.cid-tNEHLu6Wiu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNEHLu6Wiu .navbar.collapsed {
  justify-content: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNEHLu6Wiu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNEHLu6Wiu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNEHLu6Wiu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNEHLu6Wiu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNEHLu6Wiu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNEHLu6Wiu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNEHLu6Wiu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNEHLu6Wiu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNEHLu6Wiu .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;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown-item.active,
.cid-tNEHLu6Wiu .dropdown-item:active {
  background-color: transparent;
}
.cid-tNEHLu6Wiu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNEHLu6Wiu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNEHLu6Wiu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNEHLu6Wiu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNEHLu6Wiu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNEHLu6Wiu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNEHLu6Wiu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNEHLu6Wiu .navbar {
    height: 70px;
  }
  .cid-tNEHLu6Wiu .navbar.opened {
    height: auto;
  }
  .cid-tNEHLu6Wiu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNEHQenHTV {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNEHQenHTV .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tNEHQenHTV .image-wrapper {
    width: 49%;
  }
}
.cid-tNEHQenHTV .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tNEHQenHTV .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-tNEHQenHTV .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-tNEHQenHTV .text-wrapper p {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNEHQenHTV .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-tNEHQenHTV .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
    width: 100%;
  }
  .cid-tNEHQenHTV .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
    width: 100%;
  }
}
.cid-tNEHQenHTV .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
}
.cid-tNEHQenHTV .item-btn:hover {
  opacity: 0.8;
}
.cid-tNEHQenHTV .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-tNEHQenHTV .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-tNEHQenHTV .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
  }
  .cid-tNEHQenHTV .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-tNEHQenHTV .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-tNEHQenHTV .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-tNEHQenHTV .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-tNEHQenHTV .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-tNEHQenHTV .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tNEHQenHTV .mbr-section-title a {
  color: #9b9ba5;
}
.cid-tNEHQenHTV P {
  color: #17171a;
}
.cid-tNEHQenHTV .mbr-section-subtitle {
  color: #17171a;
}
.cid-tNEHQenHTV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEHQenHTV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNEPeF4gRX {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNEPeF4gRX .card-wrap {
  width: 29.6rem;
  height: 29.6rem;
  position: relative;
}
.cid-tNEPeF4gRX .card {
  border: 2px solid #17171A;
  border-radius: 0;
  width: 14.8rem;
  height: 14.8rem;
}
.cid-tNEPeF4gRX .right {
  position: absolute;
  top: 1px;
  right: 2px;
}
.cid-tNEPeF4gRX .left {
  position: absolute;
  bottom: 1px;
  left: 0;
}
.cid-tNEPeF4gRX .item-btn {
  width: 10.6rem;
  height: 10.6rem;
}
.cid-tNEPeF4gRX .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
@media (min-width: 1000px) {
  .cid-tNEPeF4gRX .content-wrap {
    flex-wrap: nowrap;
  }
  .cid-tNEPeF4gRX .main-content {
    width: 75%;
    padding-left: 3rem;
  }
}
@media (max-width: 999px) {
  .cid-tNEPeF4gRX .content-wrap {
    flex-wrap: wrap;
  }
  .cid-tNEPeF4gRX .main-content {
    width: 75%;
    padding-left: 1rem;
  }
  .cid-tNEPeF4gRX .main-content p {
    width: 70%;
  }
  .cid-tNEPeF4gRX .card-wrap {
    width: 20.8rem;
    height: 20.8rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
  }
  .cid-tNEPeF4gRX .card {
    width: 10.4rem;
    height: 10.4rem;
  }
  .cid-tNEPeF4gRX .item-btn {
    width: 8rem;
    height: 8rem;
    margin-left: 5rem;
    margin-top: -1.2rem;
  }
}
@media (max-width: 769px) {
  .cid-tNEPeF4gRX .main-content {
    width: 100%;
    text-align: center;
  }
  .cid-tNEPeF4gRX .main-content p {
    width: 100%;
  }
  .cid-tNEPeF4gRX .add-content {
    display: none;
  }
  .cid-tNEPeF4gRX .item-btn {
    width: 6.9rem;
    height: 6.9rem;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-tNEPeF4gRX .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tNEPeF4gRX .mbr-section-title a {
  color: #9b9ba5;
}
.cid-tNEPeF4gRX .mbr-text {
  color: #17171a;
}
.cid-tNEWWjKzDp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/3-1920x1080.jpg");
}
.cid-tNEWWjKzDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEWWjKzDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNEWWjKzDp .content-container {
  display: flex;
  width: 100%;
}
.cid-tNEWWjKzDp .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-tNEWWjKzDp .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-tNEWWjKzDp .mbr-section-title {
  color: #ffffff;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-tNEWWjKzDp .mbr-text {
  color: #e8e8e8;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-tNEWWjKzDp .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-tNEWWjKzDp .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-tNEWWjKzDp .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-tNEQR0s5gI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNEQR0s5gI img,
.cid-tNEQR0s5gI .item-img {
  width: 100%;
}
.cid-tNEQR0s5gI .item:focus,
.cid-tNEQR0s5gI span:focus {
  outline: none;
}
.cid-tNEQR0s5gI .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tNEQR0s5gI .item-wrapper {
  position: relative;
  background: #f8f8f8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNEQR0s5gI .item-wrapper .item-content {
    padding: 2rem 4rem 0;
  }
  .cid-tNEQR0s5gI .item-wrapper .mbr-text {
    margin-bottom: 3rem;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-footer {
    padding: 0 4rem 2rem;
    position: absolute;
    right: -2rem;
    top: 8rem;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin: 0;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn span {
    transform: rotate(45deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
    transition: all 0.8s;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn:hover > span {
    transform: rotate(90deg);
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (max-width: 1399px) {
  .cid-tNEQR0s5gI .item-wrapper .item-footer {
    top: 11.6rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .cid-tNEQR0s5gI .item-wrapper .item-footer {
    top: 15.2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNEQR0s5gI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNEQR0s5gI .item-wrapper .mbr-text {
    margin-bottom: 2rem;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
    position: absolute;
    right: -0.4rem;
    top: 7.9rem;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn span {
    transform: rotate(45deg) scale(0.6);
    margin-top: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.8s;
  }
  .cid-tNEQR0s5gI .item-wrapper .item-btn:hover > span {
    transform: scale(0.6) rotate(90deg);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNEQR0s5gI .item-wrapper .item-footer {
    position: static;
    margin-top: -2rem;
  }
}
@media (max-width: 600px) {
  .cid-tNEQR0s5gI .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tNEQR0s5gI .mbr-text,
.cid-tNEQR0s5gI .mbr-section-btn {
  color: #17171a;
}
.cid-v4DgXFyvKe {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}
.cid-v4DgXFyvKe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v4DgXFyvKe .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v4DgXFyvKe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v4DgXFyvKe .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
.cid-v4DgXFyvKe .mbr-overlay {
  z-index: 1;
}
.cid-v4DgXFyvKe .carousel,
.cid-v4DgXFyvKe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v4DgXFyvKe .item-wrapper {
  width: 100%;
}
.cid-v4DgXFyvKe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v4DgXFyvKe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-v4DgXFyvKe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v4DgXFyvKe .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-v4DgXFyvKe .carousel-control span {
  color: #101019;
}
.cid-v4DgXFyvKe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .cid-v4DgXFyvKe .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-v4DgXFyvKe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-v4DgXFyvKe .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4DgXFyvKe .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-v4DgXFyvKe .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-v4DgXFyvKe .carousel-indicators li.active,
.cid-v4DgXFyvKe .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-v4DgXFyvKe .carousel-indicators li::after,
.cid-v4DgXFyvKe .carousel-indicators li::before {
  content: none;
}
.cid-v4DgXFyvKe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v4DgXFyvKe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .cid-v4DgXFyvKe .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-v4DgXFyvKe .mbr-text,
.cid-v4DgXFyvKe .mbr-section-btn {
  color: #9b9ba5;
}
.cid-v4DgXFyvKe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4DgXFyvKe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNFiPA62kh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNFiPA62kh .content {
  border-top: 2px solid #17171A;
  padding-top: 2.2rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
.cid-tNFiPA62kh .content .row {
  border-bottom: 2px solid #17171A;
}
@media (max-width: 767px) {
  .cid-tNFiPA62kh .content .row p {
    margin-top: 0.2rem;
    margin-bottom: 2.2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNFiPA62kh .content {
    padding-top: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-tNFiPA62kh .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tNFiPA62kh .mbr-text {
  color: #17171a;
}
.cid-tNFiPA62kh .mbr-section-title {
  color: #101019;
}
.cid-tNFgCiVLwo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNFgCiVLwo img,
.cid-tNFgCiVLwo .item-img {
  width: 100%;
}
.cid-tNFgCiVLwo .item:focus,
.cid-tNFgCiVLwo span:focus {
  outline: none;
}
.cid-tNFgCiVLwo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tNFgCiVLwo .item-wrapper {
  position: relative;
  background: #f8f8f8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNFgCiVLwo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNFgCiVLwo .item-wrapper .item-content {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tNFgCiVLwo .item-wrapper .item-btn {
    margin: 0;
    margin-left: 0.5rem;
    padding-top: 0.5rem;
  }
}
@media (max-width: 600px) {
  .cid-tNFgCiVLwo .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-v4Dh0AKscN {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-v4Dh0AKscN .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-v4Dh0AKscN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v4Dh0AKscN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v4Dh0AKscN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v4Dh0AKscN .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-v4Dh0AKscN .section-head {
  margin-left: 3rem;
}
.cid-v4Dh0AKscN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .image-wrapper img {
    margin-bottom: 2rem;
  }
}
.cid-v4Dh0AKscN .card {
  border-top: 2px solid #17171a;
  border-radius: 0;
  margin: 0 3rem;
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .card {
    padding-top: 2rem;
    padding-bottom: 0;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cid-v4Dh0AKscN .text-wrapper {
    position: relative;
  }
}
@media (min-width: 992px) {
  .cid-v4Dh0AKscN .text-wrapper p {
    padding-right: 7rem;
  }
}
@media (max-width: 991px) {
  .cid-v4Dh0AKscN .text-wrapper p {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .text-wrapper p {
    margin: 2rem 0;
  }
}
@media (min-width: 992px) {
  .cid-v4Dh0AKscN .card-btn {
    width: 10.6rem;
    height: 10.6rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin: 0;
  }
  .cid-v4Dh0AKscN .card-btn .rotate {
    transform: scale(1.3) rotate(45deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
  }
  .cid-v4Dh0AKscN .card-btn span {
    transition: all 0.8s;
  }
  .cid-v4Dh0AKscN .card-btn:hover > span {
    transform: scale(1.3) rotate(90deg);
  }
}
@media (max-width: 991px) {
  .cid-v4Dh0AKscN .card-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    position: absolute;
    right: 0;
    top: 1.5rem;
  }
  .cid-v4Dh0AKscN .card-btn .rotate {
    transform: rotate(45deg) scale(0.6);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-v4Dh0AKscN .card-btn span {
    transition: all 0.8s;
  }
  .cid-v4Dh0AKscN .card-btn:hover > span {
    transform: scale(0.6) rotate(90deg);
  }
}
.cid-v4Dh0AKscN .footer-btn {
  width: 10.6rem;
  height: 10.6rem;
  border-radius: 50%;
  padding-left: -0.5rem;
  padding-top: 0.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-v4Dh0AKscN .footer-btn {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .footer-btn {
    width: 5rem;
    height: 5rem;
  }
}
.cid-v4Dh0AKscN .section-footer {
  border-top: 2px solid #17171a;
  border-bottom: 2px solid #17171a;
  padding: 1rem 0;
  margin: 0 3rem;
}
@media (max-width: 767px) {
  .cid-v4Dh0AKscN .section-footer {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .cid-v4Dh0AKscN .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tNF3vlf0rM {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tNF3vlf0rM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNF3vlf0rM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNF3vlf0rM .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tNF3vlf0rM .mbr-section-title {
  color: #24262b;
}
.cid-tNF3vlf0rM .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-tNF3vlf0rM .cards-row {
  row-gap: 32px;
}
.cid-tNF3vlf0rM .card {
  border-radius: 0;
}
.cid-tNF3vlf0rM .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-tNF3vlf0rM .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tNF3vlf0rM .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-tNF3vlf0rM .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tNF3vlf0rM .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #b79b6c;
}
.cid-tNF3vlf0rM .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-tNF3vlf0rM .card-subtitle {
  color: #24262b;
}
.cid-tNF3vlf0rM .card-bottom-wrap {
  margin-top: 24px;
}
.cid-tNF3vlf0rM .card-name {
  color: #24262b;
}
.cid-tNF3vlf0rM .card-text {
  color: #24262b;
}
.cid-tNF0CihZ1I {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNF0CihZ1I .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tNF0CihZ1I form .mbr-section-btn {
  text-align: center;
}
.cid-tNF0CihZ1I form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
  border-radius: .25rem;
}
.cid-tNF0CihZ1I .mbr-section-title {
  color: #28282c;
}
.cid-tNF0CihZ1I form .row [class*=col] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tNEYHaPoS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009e6e;
}
.cid-tNEYHaPoS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEYHaPoS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .container {
    padding: 0 16px;
  }
}
.cid-tNEYHaPoS6 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNEYHaPoS6 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-tNEYHaPoS6 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tNEYHaPoS6 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-tNEYHaPoS6 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .copyright {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .mbr-card-title {
  color: #101019;
}
.cid-tNEYHaPoS6 .list {
  color: #ffffff;
}
.cid-tNEHLu6Wiu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNEHLu6Wiu nav.navbar {
  position: fixed;
}
.cid-tNEHLu6Wiu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNEHLu6Wiu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNEHLu6Wiu .dropdown-item:hover,
.cid-tNEHLu6Wiu .dropdown-item:focus {
  background: #009e6e !important;
  color: white !important;
}
.cid-tNEHLu6Wiu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNEHLu6Wiu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNEHLu6Wiu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNEHLu6Wiu .nav-link {
  position: relative;
}
.cid-tNEHLu6Wiu .container {
  display: flex;
  margin: auto;
}
.cid-tNEHLu6Wiu .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown-menu,
.cid-tNEHLu6Wiu .navbar.opened {
  background: #ffffff !important;
}
.cid-tNEHLu6Wiu .nav-item:focus,
.cid-tNEHLu6Wiu .nav-link:focus {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNEHLu6Wiu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNEHLu6Wiu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.opened {
  transition: all 0.3s;
}
.cid-tNEHLu6Wiu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNEHLu6Wiu .navbar .navbar-logo img {
  width: auto;
}
.cid-tNEHLu6Wiu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNEHLu6Wiu .navbar.collapsed {
  justify-content: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNEHLu6Wiu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNEHLu6Wiu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNEHLu6Wiu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNEHLu6Wiu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNEHLu6Wiu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNEHLu6Wiu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNEHLu6Wiu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNEHLu6Wiu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNEHLu6Wiu .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;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown-item.active,
.cid-tNEHLu6Wiu .dropdown-item:active {
  background-color: transparent;
}
.cid-tNEHLu6Wiu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNEHLu6Wiu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNEHLu6Wiu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNEHLu6Wiu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNEHLu6Wiu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNEHLu6Wiu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNEHLu6Wiu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNEHLu6Wiu .navbar {
    height: 70px;
  }
  .cid-tNEHLu6Wiu .navbar.opened {
    height: auto;
  }
  .cid-tNEHLu6Wiu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNQXAiYkGF {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tNQXAiYkGF .wrap-block {
  padding-right: 30px;
}
.cid-tNQXAiYkGF .cards {
  padding-left: 30px;
}
.cid-tNQXAiYkGF .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tNQXAiYkGF .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-subtitle {
  color: #9b9ba5;
  margin-bottom: 14px;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-section-title {
  margin-bottom: 5px;
  color: #009e6e;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-text {
  margin-top: 17px;
}
.cid-tNQXAiYkGF .wrap-block .contents h3 {
  color: #47b5ed;
}
.cid-tNQXAiYkGF .wrap-block .contents h4 {
  color: #47b5ed;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tNQXAiYkGF .cards-wrap {
  flex-direction: column;
}
.cid-tNQXAiYkGF .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
}
.cid-tNQXAiYkGF .wrapper .img {
  margin-bottom: 20px;
}
.cid-tNQXAiYkGF .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #9b9ba5;
  border-radius: 50%;
}
.cid-tNQXAiYkGF .wrapper .mbr-card-title {
  color: #009e6e;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-tNQXAiYkGF .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #47b5ed;
}
@media (max-width: 767px) {
  .cid-tNQXAiYkGF * {
    text-align: left;
  }
}
.cid-tNQXAiYkGF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQXAiYkGF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNQXAiYkGF .wrapper .mbr-text,
.cid-tNQXAiYkGF .img {
  color: #17171a;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-section-title,
.cid-tNQXAiYkGF .menu-content-right {
  color: #17171a;
}
.cid-tNQXAiYkGF .wrap-block .contents h4,
.cid-tNQXAiYkGF .menu-content-right,
.cid-tNQXAiYkGF .mbr-section-btn {
  color: #17171a;
}
.cid-tNQXAiYkGF .wrap-block .contents .mbr-subtitle,
.cid-tNQXAiYkGF .menu-content-right {
  color: #17171a;
}
.cid-tNR77Y7LbJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNR77Y7LbJ .mbr-section-title {
  margin-bottom: 1em;
  color: #272727;
}
.cid-tNR77Y7LbJ .mbr-section-subtitle {
  margin-bottom: 1.5625em;
  color: #272727;
  opacity: 0.4;
}
.cid-tNR77Y7LbJ .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 1199px) {
  .cid-tNR77Y7LbJ .item-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tNR77Y7LbJ .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tNR77Y7LbJ .item {
  padding: 0;
}
.cid-tNR77Y7LbJ .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: .3s all;
  border: 2px solid transparent;
}
.cid-tNR77Y7LbJ .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: #224ac7;
}
.cid-tNR77Y7LbJ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 175px;
}
.cid-tNR77Y7LbJ .item-img img {
  width: 80%;
  object-fit: cover;
  height: 80%;
}
.cid-tNR77Y7LbJ .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 20px 5% 6%;
  flex-grow: 1;
  background-color: #ffffff;
}
.cid-tNR77Y7LbJ .item-text-wrap {
  width: 100%;
  margin-bottom: 5.3em;
}
@media (max-width: 1199px) {
  .cid-tNR77Y7LbJ .item-text-wrap {
    margin-bottom: 4em;
  }
}
@media (max-width: 767px) {
  .cid-tNR77Y7LbJ .item-text-wrap {
    margin-bottom: 2em;
    max-width: 340px;
    margin-right: auto;
  }
}
.cid-tNR77Y7LbJ .item-title {
  color: #272727;
  margin-bottom: 0.52em;
}
.cid-tNR77Y7LbJ .item-subtitle {
  color: #272727;
  opacity: 0.4;
}
.cid-tNR77Y7LbJ .card-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: auto;
}
.cid-tNR77Y7LbJ .item-name-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tNR77Y7LbJ .image-wrapper {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 300px;
  overflow: hidden;
}
.cid-tNR77Y7LbJ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tNR77Y7LbJ .mbr-text {
  flex-grow: 1;
  color: #272727;
  text-align: center;
}
.cid-tNR77Y7LbJ .mbr-section-btn {
  display: flex;
  margin-top: 20px;
  width: auto !important;
}
.cid-tNR77Y7LbJ .mbr-section-btn .btn {
  width: 100%;
  min-width: auto !important;
}
.cid-tNR8wDurb1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNR8wDurb1 .mbr-section-title {
  margin-bottom: 1em;
  color: #272727;
}
.cid-tNR8wDurb1 .mbr-section-subtitle {
  margin-bottom: 1.5625em;
  color: #272727;
  opacity: 0.4;
}
.cid-tNR8wDurb1 .item-row {
  display: grid;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 1199px) {
  .cid-tNR8wDurb1 .item-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tNR8wDurb1 .item-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tNR8wDurb1 .item {
  padding: 0;
}
.cid-tNR8wDurb1 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: .3s all;
  border: 2px solid transparent;
}
.cid-tNR8wDurb1 .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: #224ac7;
}
.cid-tNR8wDurb1 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 175px;
}
.cid-tNR8wDurb1 .item-img img {
  width: 80%;
  object-fit: cover;
  height: 80%;
}
.cid-tNR8wDurb1 .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 20px 5% 6%;
  flex-grow: 1;
  background-color: #ffffff;
}
.cid-tNR8wDurb1 .item-text-wrap {
  width: 100%;
  margin-bottom: 5.3em;
}
@media (max-width: 1199px) {
  .cid-tNR8wDurb1 .item-text-wrap {
    margin-bottom: 4em;
  }
}
@media (max-width: 767px) {
  .cid-tNR8wDurb1 .item-text-wrap {
    margin-bottom: 2em;
    max-width: 340px;
    margin-right: auto;
  }
}
.cid-tNR8wDurb1 .item-title {
  color: #272727;
  margin-bottom: 0.52em;
}
.cid-tNR8wDurb1 .item-subtitle {
  color: #272727;
  opacity: 0.4;
}
.cid-tNR8wDurb1 .card-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: auto;
}
.cid-tNR8wDurb1 .item-name-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tNR8wDurb1 .image-wrapper {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 300px;
  overflow: hidden;
}
.cid-tNR8wDurb1 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tNR8wDurb1 .mbr-text {
  flex-grow: 1;
  color: #272727;
  text-align: center;
}
.cid-tNR8wDurb1 .mbr-section-btn {
  display: flex;
  margin-top: 20px;
  width: auto !important;
}
.cid-tNR8wDurb1 .mbr-section-btn .btn {
  width: 100%;
  min-width: auto !important;
}
.cid-tNR4ZuRGwg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNR4ZuRGwg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNR4ZuRGwg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNR4ZuRGwg .col-title {
  margin-bottom: 2.5rem;
}
.cid-tNR4ZuRGwg .mbr-section-title {
  color: #17171a;
}
.cid-tNR4ZuRGwg .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-tNR4ZuRGwg .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 639px) {
  .cid-tNR4ZuRGwg .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tNR4ZuRGwg .card-box {
  width: 100%;
}
.cid-tNR4ZuRGwg .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tNR4ZuRGwg .image-wrapper {
    justify-content: center;
  }
}
.cid-tNR4ZuRGwg .image-wrapper img {
  width: 100%;
  max-width: 192px;
  aspect-ratio: 1;
  object-fit: contain;
}
.cid-tNR4ZuRGwg .card-container {
  width: 100%;
  padding: 0 32px;
}
.cid-tNR4ZuRGwg .card-title {
  color: #224ac7;
  margin-bottom: 0;
}
.cid-tNR4ZuRGwg .card-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.cid-tNR4ZuRGwg .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-tNR4ZuRGwg .card-text,
.cid-tNR4ZuRGwg .mbr-section-btn {
  text-align: left;
}
.cid-tNRkMdobC6 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRkMdobC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRkMdobC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRkMdobC6 .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 9.3% 11% 10% 11%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tNRkMdobC6 .text-wrap {
    height: auto;
    margin-top: 7%;
  }
}
@media (max-width: 767px) {
  .cid-tNRkMdobC6 .text-wrap {
    padding: 35px 25px 35px 25px;
  }
}
@media (max-width: 575px) {
  .cid-tNRkMdobC6 .text-wrap {
    padding: 35px 16px 35px 16px;
  }
}
.cid-tNRkMdobC6 .mbr-section-title {
  color: #303030;
  margin-bottom: 0;
}
.cid-tNRkMdobC6 .mbr-text {
  color: #303030;
  margin-top: 20px;
}
.cid-tNRkMdobC6 .items-wrap {
  display: flex;
  align-items: flex-start;
  column-gap: 25px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .cid-tNRkMdobC6 .items-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
@media (max-width: 575px) {
  .cid-tNRkMdobC6 .items-wrap {
    padding-top: 50px;
  }
}
.cid-tNRkMdobC6 .item-wrap {
  width: max-content;
}
@media (max-width: 767px) {
  .cid-tNRkMdobC6 .item-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tNRkMdobC6 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  color: #303030;
}
.cid-tNRkMdobC6 .list li {
  position: relative;
  padding-left: 32px;
}
.cid-tNRkMdobC6 .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../../../assets/images/icon.png");
  background-size: 100% 100%;
}
.cid-tNRkMdobC6 .list li:not(:first-child) {
  margin-top: 12px;
}
.cid-tNRkMdobC6 .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tNRkMdobC6 .img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tNRpV7UI8t {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRpV7UI8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRpV7UI8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRpV7UI8t .mbr-iconfont {
  color: #224ac7;
  font-size: 5rem;
  width: 5rem;
}
.cid-tNRpV7UI8t .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNRgId4J6l {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tNRgId4J6l .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRgId4J6l .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgId4J6l .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRgId4J6l .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgId4J6l .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRgId4J6l .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgId4J6l .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRgId4J6l .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRgId4J6l .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRgId4J6l .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRgId4J6l .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRgId4J6l .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRgId4J6l .mbr-text {
  color: #000000;
}
.cid-tNRizszH19 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRizszH19 img {
  object-fit: cover;
}
.cid-tNRgC7gdEt {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRgC7gdEt .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRgC7gdEt .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgC7gdEt .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRgC7gdEt .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgC7gdEt .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRgC7gdEt .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRgC7gdEt .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRgC7gdEt .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRgC7gdEt .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRgC7gdEt .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRgC7gdEt .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRgC7gdEt .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRgC7gdEt .mbr-text {
  color: #17171a;
}
.cid-tNRmsP5NYj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRmsP5NYj img {
  object-fit: cover;
}
.cid-tNRn3wh07D {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tNRn3wh07D .item {
  border-bottom: 1px solid #efefef;
  margin-bottom: 4rem;
}
.cid-tNRn3wh07D img {
  width: 80%;
  height: auto;
}
@media (max-width: 992px) {
  .cid-tNRn3wh07D img {
    width: 100%;
  }
}
.cid-tNRpq562ey {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRpq562ey .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRpq562ey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRpq562ey .mbr-iconfont {
  color: #224ac7;
  font-size: 5rem;
  width: 5rem;
}
.cid-tNRpq562ey .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNRogoNp30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNRogoNp30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRogoNp30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .container {
    padding: 0 20px;
  }
}
.cid-tNRogoNp30 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .card {
    margin-bottom: 50px;
  }
}
.cid-tNRogoNp30 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tNRogoNp30 .contacts-wrap {
  padding-bottom: 32px;
}
.cid-tNRogoNp30 .contacts-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tNRogoNp30 .contacts-wrap a {
  display: block;
}
.cid-tNRogoNp30 .contacts-wrap a:hover .mbr-link {
  opacity: .7;
}
.cid-tNRogoNp30 .contacts-wrap a .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-tNRogoNp30 .contacts-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tNRogoNp30 .contacts-address {
  padding-top: 32px;
  padding-bottom: 0;
}
.cid-tNRogoNp30 .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tNRogoNp30 .dragArea.row {
  margin: 0 100px;
  padding: 64px;
  border: 1px solid #224ac7;
}
@media (max-width: 1200px) {
  .cid-tNRogoNp30 .dragArea.row {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .dragArea.row {
    margin: 0;
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .cid-tNRogoNp30 .dragArea.row {
    margin: 0;
    padding: 20px;
  }
}
.cid-tNRogoNp30 .dragArea.row .mbr-section-title {
  margin-bottom: 64px !important;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .dragArea.row .mbr-section-title {
    margin-bottom: 50px !important;
  }
}
.cid-tNRogoNp30 .dragArea.row .mbr-text {
  margin-bottom: 64px !important;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .dragArea.row .mbr-text {
    margin-bottom: 50px !important;
  }
}
.cid-tNRogoNp30 .dragArea.row .form-group {
  margin-bottom: 32px !important;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-control {
  border: none !important;
  border-bottom: 1px solid #224ac7 !important;
  border-radius: 0;
  padding: 16px 0;
  box-shadow: none;
  background-color: transparent;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-control::placeholder {
  color: #224ac7;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-control:hover,
.cid-tNRogoNp30 .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-control-label {
  margin-bottom: 8px !important;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-check {
  margin-bottom: 8px;
}
.cid-tNRogoNp30 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #224ac7;
  border-color: #224ac7;
}
.cid-tNRogoNp30 .dragArea.row .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tNRogoNp30 .dragArea.row .mbr-section-btn {
    margin-top: 18px;
  }
}
.cid-tNRogoNp30 .dragArea.row .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-tNRogoNp30 .mbr-section-title {
  color: #1d1d1d;
}
.cid-tNRogoNp30 .mbr-desc {
  color: #17171a;
}
.cid-tNRogoNp30 .mbr-text {
  color: #1d1d1d;
}
.cid-tNRogoNp30 label {
  color: #1d1d1d;
}
.cid-tNEYHaPoS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009e6e;
}
.cid-tNEYHaPoS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEYHaPoS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .container {
    padding: 0 16px;
  }
}
.cid-tNEYHaPoS6 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNEYHaPoS6 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-tNEYHaPoS6 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tNEYHaPoS6 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-tNEYHaPoS6 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .copyright {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .mbr-card-title {
  color: #101019;
}
.cid-tNEYHaPoS6 .list {
  color: #ffffff;
}
.cid-tNEHLu6Wiu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNEHLu6Wiu nav.navbar {
  position: fixed;
}
.cid-tNEHLu6Wiu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNEHLu6Wiu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNEHLu6Wiu .dropdown-item:hover,
.cid-tNEHLu6Wiu .dropdown-item:focus {
  background: #009e6e !important;
  color: white !important;
}
.cid-tNEHLu6Wiu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNEHLu6Wiu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNEHLu6Wiu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNEHLu6Wiu .nav-link {
  position: relative;
}
.cid-tNEHLu6Wiu .container {
  display: flex;
  margin: auto;
}
.cid-tNEHLu6Wiu .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown-menu,
.cid-tNEHLu6Wiu .navbar.opened {
  background: #ffffff !important;
}
.cid-tNEHLu6Wiu .nav-item:focus,
.cid-tNEHLu6Wiu .nav-link:focus {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNEHLu6Wiu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNEHLu6Wiu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.opened {
  transition: all 0.3s;
}
.cid-tNEHLu6Wiu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNEHLu6Wiu .navbar .navbar-logo img {
  width: auto;
}
.cid-tNEHLu6Wiu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNEHLu6Wiu .navbar.collapsed {
  justify-content: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNEHLu6Wiu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNEHLu6Wiu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNEHLu6Wiu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNEHLu6Wiu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNEHLu6Wiu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNEHLu6Wiu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNEHLu6Wiu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNEHLu6Wiu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNEHLu6Wiu .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;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown-item.active,
.cid-tNEHLu6Wiu .dropdown-item:active {
  background-color: transparent;
}
.cid-tNEHLu6Wiu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNEHLu6Wiu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNEHLu6Wiu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNEHLu6Wiu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNEHLu6Wiu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNEHLu6Wiu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNEHLu6Wiu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNEHLu6Wiu .navbar {
    height: 70px;
  }
  .cid-tNEHLu6Wiu .navbar.opened {
    height: auto;
  }
  .cid-tNEHLu6Wiu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNRrfZLihy {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tNRrfZLihy .wrap-block {
  padding-right: 30px;
}
.cid-tNRrfZLihy .cards {
  padding-left: 30px;
}
.cid-tNRrfZLihy .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tNRrfZLihy .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-subtitle {
  color: #9b9ba5;
  margin-bottom: 14px;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-section-title {
  margin-bottom: 5px;
  color: #009e6e;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-text {
  margin-top: 17px;
}
.cid-tNRrfZLihy .wrap-block .contents h3 {
  color: #47b5ed;
}
.cid-tNRrfZLihy .wrap-block .contents h4 {
  color: #47b5ed;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tNRrfZLihy .cards-wrap {
  flex-direction: column;
}
.cid-tNRrfZLihy .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
}
.cid-tNRrfZLihy .wrapper .img {
  margin-bottom: 20px;
}
.cid-tNRrfZLihy .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #9b9ba5;
  border-radius: 50%;
}
.cid-tNRrfZLihy .wrapper .mbr-card-title {
  color: #009e6e;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-tNRrfZLihy .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #47b5ed;
}
@media (max-width: 767px) {
  .cid-tNRrfZLihy * {
    text-align: left;
  }
}
.cid-tNRrfZLihy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRrfZLihy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRrfZLihy .wrapper .mbr-text,
.cid-tNRrfZLihy .img {
  color: #17171a;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-section-title,
.cid-tNRrfZLihy .menu-content-right {
  color: #17171a;
}
.cid-tNRrfZLihy .wrap-block .contents h4,
.cid-tNRrfZLihy .menu-content-right,
.cid-tNRrfZLihy .mbr-section-btn {
  color: #17171a;
}
.cid-tNRrfZLihy .wrap-block .contents .mbr-subtitle,
.cid-tNRrfZLihy .menu-content-right {
  color: #17171a;
}
.cid-tNRt5LemBt {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNRt5LemBt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRt5LemBt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRt5LemBt .col-title {
  margin-bottom: 2.5rem;
}
.cid-tNRt5LemBt .mbr-section-title {
  color: #17171a;
}
.cid-tNRt5LemBt .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-tNRt5LemBt .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 639px) {
  .cid-tNRt5LemBt .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tNRt5LemBt .card-box {
  width: 100%;
}
.cid-tNRt5LemBt .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tNRt5LemBt .image-wrapper {
    justify-content: center;
  }
}
.cid-tNRt5LemBt .image-wrapper img {
  width: 100%;
  max-width: 192px;
  aspect-ratio: 1;
  object-fit: contain;
}
.cid-tNRt5LemBt .card-container {
  width: 100%;
  padding: 0 32px;
}
.cid-tNRt5LemBt .card-title {
  color: #224ac7;
  margin-bottom: 0;
}
.cid-tNRt5LemBt .card-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.cid-tNRt5LemBt .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-tNRt5LemBt .card-text,
.cid-tNRt5LemBt .mbr-section-btn {
  text-align: left;
}
.cid-tNRuTaoVJ0 {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRuTaoVJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRuTaoVJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRuTaoVJ0 .mbr-iconfont {
  color: #224ac7;
  font-size: 5rem;
  width: 5rem;
}
.cid-tNRuTaoVJ0 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNRraZb0cK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tNRraZb0cK .panel-text {
  margin: 0;
  line-height: 1.7;
}
.cid-tNRraZb0cK .icon {
  background: #ffffff;
  width: 50px;
  height: 50px;
  border: 1px dashed #224ac7;
  border-radius: 100%;
  color: #224ac7 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  transition: 0.4s;
}
.cid-tNRraZb0cK .icon:before {
  font-weight: 900;
}
.cid-tNRraZb0cK .accordion-content {
  flex-basis: 100%;
}
.cid-tNRraZb0cK .panel-group {
  width: 100%;
}
.cid-tNRraZb0cK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tNRraZb0cK .card .card-header a.panel-title {
  margin-top: 0;
  border-radius: 0;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tNRraZb0cK .card .card-header a.panel-title:hover .icon {
  background-color: #224ac7;
  color: #ffffff !important;
}
.cid-tNRraZb0cK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tNRraZb0cK .header-text {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
  color: #12265a;
}
.cid-tNRraZb0cK .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-tNRraZb0cK .btn {
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tNRraZb0cK svg {
  position: relative;
  left: 0;
  top: 0;
}
.cid-tNRraZb0cK .btn:hover .inner-dashed-border {
  animation-play-state: running;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-tNRraZb0cK .svg1 {
  position: absolute;
  padding: 2px;
}
.cid-tNRraZb0cK .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.cid-tNRraZb0cK .mbr-text {
  margin-top: 1.4rem;
  margin-bottom: 2.3rem;
}
.cid-tNRraZb0cK .card .panel-body {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .cid-tNRraZb0cK {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cid-tNRraZb0cK .mbr-text {
    margin-left: 1px;
  }
  .cid-tNRraZb0cK .mbr-section-title {
    text-align: center;
  }
  .cid-tNRraZb0cK .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tNRraZb0cK .left-wrapper {
    padding-right: 5rem;
  }
  .cid-tNRraZb0cK .accordion-section {
    padding-left: 1.5rem;
  }
}
.cid-tNRraZb0cK .card-header {
  background: none !important;
}
.cid-tNRraZb0cK .header-text,
.cid-tNRraZb0cK .sign {
  color: #17171a;
}
.cid-tNRvwI2j2i {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRvwI2j2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRvwI2j2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRvwI2j2i .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 9.3% 11% 10% 11%;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-tNRvwI2j2i .text-wrap {
    height: auto;
    margin-top: 7%;
  }
}
@media (max-width: 767px) {
  .cid-tNRvwI2j2i .text-wrap {
    padding: 35px 25px 35px 25px;
  }
}
@media (max-width: 575px) {
  .cid-tNRvwI2j2i .text-wrap {
    padding: 35px 16px 35px 16px;
  }
}
.cid-tNRvwI2j2i .mbr-section-title {
  color: #303030;
  margin-bottom: 0;
}
.cid-tNRvwI2j2i .mbr-text {
  color: #303030;
  margin-top: 20px;
}
.cid-tNRvwI2j2i .items-wrap {
  display: flex;
  align-items: flex-start;
  column-gap: 25px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .cid-tNRvwI2j2i .items-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
@media (max-width: 575px) {
  .cid-tNRvwI2j2i .items-wrap {
    padding-top: 50px;
  }
}
.cid-tNRvwI2j2i .item-wrap {
  width: max-content;
}
@media (max-width: 767px) {
  .cid-tNRvwI2j2i .item-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tNRvwI2j2i .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  color: #303030;
}
.cid-tNRvwI2j2i .list li {
  position: relative;
  padding-left: 32px;
}
.cid-tNRvwI2j2i .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("../../../assets/images/icon.png");
  background-size: 100% 100%;
}
.cid-tNRvwI2j2i .list li:not(:first-child) {
  margin-top: 12px;
}
.cid-tNRvwI2j2i .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tNRvwI2j2i .img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tNRvZLUTrM {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tNRvZLUTrM .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRvZLUTrM .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRvZLUTrM .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRvZLUTrM .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRvZLUTrM .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRvZLUTrM .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRvZLUTrM .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRvZLUTrM .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRvZLUTrM .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRvZLUTrM .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRvZLUTrM .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRvZLUTrM .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRvZLUTrM .mbr-text {
  color: #000000;
}
.cid-tNRw0newaq {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRw0newaq .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRw0newaq .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRw0newaq .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRw0newaq .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRw0newaq .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRw0newaq .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRw0newaq .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRw0newaq .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRw0newaq .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRw0newaq .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRw0newaq .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRw0newaq .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRw0newaq .mbr-text {
  color: #17171a;
}
.cid-tNRwxOiGY1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNRwxOiGY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRwxOiGY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRwxOiGY1 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tNRwxOiGY1 .mbr-section-title {
  color: #24262b;
}
.cid-tNRwxOiGY1 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-tNRwxOiGY1 .cards-row {
  row-gap: 32px;
}
.cid-tNRwxOiGY1 .card {
  border-radius: 0;
}
.cid-tNRwxOiGY1 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 32px 32px 24px;
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tNRwxOiGY1 .card-wrapper {
    padding: 32px 16px 24px;
  }
}
.cid-tNRwxOiGY1 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-right: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.cid-tNRwxOiGY1 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tNRwxOiGY1 .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-tNRwxOiGY1 .card-subtitle {
  color: #24262b;
}
.cid-tNRwxOiGY1 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-tNRwxOiGY1 .card-name {
  color: #24262b;
}
.cid-tNRwxOiGY1 .card-text {
  color: #24262b;
}
.cid-tNRx5xXFEa {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tNRx5xXFEa .item {
  border-bottom: 1px solid #efefef;
  margin-bottom: 4rem;
}
.cid-tNRx5xXFEa img {
  width: 80%;
  height: auto;
}
@media (max-width: 992px) {
  .cid-tNRx5xXFEa img {
    width: 100%;
  }
}
.cid-tNRxSGOZlr {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRxSGOZlr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRxSGOZlr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRxSGOZlr .mbr-iconfont {
  color: #224ac7;
  font-size: 5rem;
  width: 5rem;
}
.cid-tNRxSGOZlr .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNRybotiex {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRybotiex .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRybotiex .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRybotiex .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRybotiex .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRybotiex .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRybotiex .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRybotiex .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRybotiex .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRybotiex .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRybotiex .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRybotiex .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRybotiex .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRybotiex .mbr-text {
  color: #17171a;
}
.cid-tNRyx6IWH5 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNRyx6IWH5 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tNRyx6IWH5 .mbr-section-title {
  color: #17171a;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRyx6IWH5 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRyx6IWH5 .mbr-section-subtitle {
  color: #17171a;
  margin-bottom: 1.736vw;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tNRyx6IWH5 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tNRyx6IWH5 .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tNRyx6IWH5 .items-container {
    padding-left: 6.66vw;
  }
}
.cid-tNRyx6IWH5 .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-tNRyx6IWH5 .item {
    margin-bottom: 3.2vw;
  }
}
.cid-tNRyx6IWH5 .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tNRyx6IWH5 .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-tNRyx6IWH5 .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-tNRyx6IWH5 .mbr-text {
  color: #17171a;
}
.cid-tNRzchmnNR {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tNRzchmnNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRzchmnNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNRzchmnNR .mbr-iconfont {
  color: #224ac7;
  font-size: 5rem;
  width: 5rem;
}
.cid-tNRzchmnNR .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNRyQk9kDd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNRyQk9kDd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNRyQk9kDd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .container {
    padding: 0 20px;
  }
}
.cid-tNRyQk9kDd .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .card {
    margin-bottom: 50px;
  }
}
.cid-tNRyQk9kDd .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tNRyQk9kDd .contacts-wrap {
  padding-bottom: 32px;
}
.cid-tNRyQk9kDd .contacts-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tNRyQk9kDd .contacts-wrap a {
  display: block;
}
.cid-tNRyQk9kDd .contacts-wrap a:hover .mbr-link {
  opacity: .7;
}
.cid-tNRyQk9kDd .contacts-wrap a .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-tNRyQk9kDd .contacts-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tNRyQk9kDd .contacts-address {
  padding-top: 32px;
  padding-bottom: 0;
}
.cid-tNRyQk9kDd .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .mbr-section-btn {
    margin-top: 50px;
  }
}
.cid-tNRyQk9kDd .dragArea.row {
  margin: 0 100px;
  padding: 64px;
  border: 1px solid #224ac7;
}
@media (max-width: 1200px) {
  .cid-tNRyQk9kDd .dragArea.row {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .dragArea.row {
    margin: 0;
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .cid-tNRyQk9kDd .dragArea.row {
    margin: 0;
    padding: 20px;
  }
}
.cid-tNRyQk9kDd .dragArea.row .mbr-section-title {
  margin-bottom: 64px !important;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .dragArea.row .mbr-section-title {
    margin-bottom: 50px !important;
  }
}
.cid-tNRyQk9kDd .dragArea.row .mbr-text {
  margin-bottom: 64px !important;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .dragArea.row .mbr-text {
    margin-bottom: 50px !important;
  }
}
.cid-tNRyQk9kDd .dragArea.row .form-group {
  margin-bottom: 32px !important;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-control {
  border: none !important;
  border-bottom: 1px solid #224ac7 !important;
  border-radius: 0;
  padding: 16px 0;
  box-shadow: none;
  background-color: transparent;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-control::placeholder {
  color: #224ac7;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-control:hover,
.cid-tNRyQk9kDd .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-control-label {
  margin-bottom: 8px !important;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-check {
  margin-bottom: 8px;
}
.cid-tNRyQk9kDd .dragArea.row .form-group .form-check .form-check-input {
  background-color: #224ac7;
  border-color: #224ac7;
}
.cid-tNRyQk9kDd .dragArea.row .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tNRyQk9kDd .dragArea.row .mbr-section-btn {
    margin-top: 18px;
  }
}
.cid-tNRyQk9kDd .dragArea.row .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-tNRyQk9kDd .mbr-section-title {
  color: #1d1d1d;
}
.cid-tNRyQk9kDd .mbr-desc {
  color: #17171a;
}
.cid-tNRyQk9kDd .mbr-text {
  color: #1d1d1d;
}
.cid-tNRyQk9kDd label {
  color: #1d1d1d;
}
.cid-tNEYHaPoS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009e6e;
}
.cid-tNEYHaPoS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEYHaPoS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .container {
    padding: 0 16px;
  }
}
.cid-tNEYHaPoS6 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNEYHaPoS6 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-tNEYHaPoS6 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tNEYHaPoS6 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-tNEYHaPoS6 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .copyright {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .mbr-card-title {
  color: #101019;
}
.cid-tNEYHaPoS6 .list {
  color: #ffffff;
}
.cid-tNEHLu6Wiu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNEHLu6Wiu nav.navbar {
  position: fixed;
}
.cid-tNEHLu6Wiu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNEHLu6Wiu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNEHLu6Wiu .dropdown-item:hover,
.cid-tNEHLu6Wiu .dropdown-item:focus {
  background: #009e6e !important;
  color: white !important;
}
.cid-tNEHLu6Wiu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNEHLu6Wiu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNEHLu6Wiu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNEHLu6Wiu .nav-link {
  position: relative;
}
.cid-tNEHLu6Wiu .container {
  display: flex;
  margin: auto;
}
.cid-tNEHLu6Wiu .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown-menu,
.cid-tNEHLu6Wiu .navbar.opened {
  background: #ffffff !important;
}
.cid-tNEHLu6Wiu .nav-item:focus,
.cid-tNEHLu6Wiu .nav-link:focus {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNEHLu6Wiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNEHLu6Wiu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNEHLu6Wiu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNEHLu6Wiu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.opened {
  transition: all 0.3s;
}
.cid-tNEHLu6Wiu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNEHLu6Wiu .navbar .navbar-logo img {
  width: auto;
}
.cid-tNEHLu6Wiu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNEHLu6Wiu .navbar.collapsed {
  justify-content: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNEHLu6Wiu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNEHLu6Wiu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tNEHLu6Wiu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNEHLu6Wiu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNEHLu6Wiu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNEHLu6Wiu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNEHLu6Wiu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNEHLu6Wiu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNEHLu6Wiu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNEHLu6Wiu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNEHLu6Wiu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNEHLu6Wiu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNEHLu6Wiu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNEHLu6Wiu .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;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNEHLu6Wiu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNEHLu6Wiu .dropdown-item.active,
.cid-tNEHLu6Wiu .dropdown-item:active {
  background-color: transparent;
}
.cid-tNEHLu6Wiu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNEHLu6Wiu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tNEHLu6Wiu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNEHLu6Wiu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNEHLu6Wiu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNEHLu6Wiu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNEHLu6Wiu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNEHLu6Wiu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNEHLu6Wiu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNEHLu6Wiu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNEHLu6Wiu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNEHLu6Wiu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNEHLu6Wiu .navbar {
    height: 70px;
  }
  .cid-tNEHLu6Wiu .navbar.opened {
    height: auto;
  }
  .cid-tNEHLu6Wiu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4DcsZhk54 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #f8f8f8;
}
.cid-v4DcsZhk54 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v4DcsZhk54 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-v4DcsZhk54 .text-wrapper {
    margin-left: 5rem;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-v4DcsZhk54 .text-wrapper {
    margin-left: 0;
    padding: 0 2rem;
  }
}
.cid-v4DcsZhk54 blockquote {
  padding: 30px 150px 0 0;
  border: none;
  line-height: 1;
}
@media (max-width: 1199px) {
  .cid-v4DcsZhk54 blockquote {
    padding-right: 100px;
  }
}
.cid-v4DcsZhk54 .occupation {
  font-size: 1rem;
  margin-top: -0.5rem;
}
.cid-v4DcsZhk54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4DcsZhk54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4DckPp7vP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v4DckPp7vP img,
.cid-v4DckPp7vP .item-img {
  width: 100%;
}
.cid-v4DckPp7vP .item:focus,
.cid-v4DckPp7vP span:focus {
  outline: none;
}
.cid-v4DckPp7vP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4DckPp7vP .item-wrapper {
  position: relative;
  background: #f8f8f8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4DckPp7vP .item-wrapper .item-content {
    padding: 2rem 4rem 0;
  }
  .cid-v4DckPp7vP .item-wrapper .mbr-text {
    margin-bottom: 2rem;
  }
  .cid-v4DckPp7vP .item-wrapper .item-footer {
    padding: 0 4rem 2rem;
    right: -2rem;
    top: 11.6rem;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn {
    width: 6.3rem;
    height: 6.3rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin: 0;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn span {
    transform: rotate(45deg) scale(0.8);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
    transition: all 0.8s;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn:hover > span {
    transform: scale(0.8) rotate(90deg);
  }
}
@media (max-width: 991px) {
  .cid-v4DckPp7vP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4DckPp7vP .item-wrapper .mbr-text {
    margin-bottom: 1rem;
  }
  .cid-v4DckPp7vP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-top: 0;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn span {
    transform: rotate(45deg) scale(0.7);
    margin-top: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.8s;
  }
  .cid-v4DckPp7vP .item-wrapper .item-btn:hover > span {
    transform: scale(0.7) rotate(90deg);
  }
}
@media (max-width: 767px) {
  .cid-v4DckPp7vP .item-wrapper .item-btn {
    margin: 0;
    margin-left: 0.5rem;
    padding-top: 0.5rem;
  }
}
@media (max-width: 600px) {
  .cid-v4DckPp7vP .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-v4DcpdxDRE {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #28282c;
}
.cid-v4DcpdxDRE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v4DcpdxDRE form .mbr-section-btn {
  text-align: center;
}
.cid-v4DcpdxDRE .mbr-section-subtitle {
  color: #ebeff2;
}
.cid-v4DcpdxDRE .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding-left: 0;
  font-size: small;
  color: rgba(225, 225, 225, 0.3);
}
.cid-v4DcpdxDRE .form-control:focus {
  background: none;
}
.cid-v4DcpdxDRE .form-control:focus::placeholder {
  color: transparent;
}
.cid-v4DcpdxDRE .btn:hover {
  color: #ebeff2;
}
@media (max-width: 600px) {
  .cid-v4DcpdxDRE .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-v4DcpdxDRE .mbr-section-title {
  color: #ffffff;
}
.cid-tNEYHaPoS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #009e6e;
}
.cid-tNEYHaPoS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNEYHaPoS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .container {
    padding: 0 16px;
  }
}
.cid-tNEYHaPoS6 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-tNEYHaPoS6 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tNEYHaPoS6 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-tNEYHaPoS6 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-tNEYHaPoS6 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-tNEYHaPoS6 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-tNEYHaPoS6 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tNEYHaPoS6 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-tNEYHaPoS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .copyright {
  color: #ffffff;
}
.cid-tNEYHaPoS6 .mbr-card-title {
  color: #101019;
}
.cid-tNEYHaPoS6 .list {
  color: #ffffff;
}
