body {
  font-family: Bellota Text;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #14344b !important;
}
.bg-success {
  background-color: #35b8fc !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #6c758f !important;
}
.bg-danger {
  background-color: #14344b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #14344b !important;
  border-color: #14344b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #091823 !important;
  border-color: #091823 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #091823 !important;
  border-color: #091823 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ea2396 !important;
  border-color: #ea2396 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7137b !important;
  border-color: #c7137b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c7137b !important;
  border-color: #c7137b !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #19a2e8 !important;
  border-color: #19a2e8 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #19a2e8 !important;
  border-color: #19a2e8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #35b8fc !important;
  border-color: #35b8fc !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #04a6fa !important;
  border-color: #04a6fa !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #04a6fa !important;
  border-color: #04a6fa !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #6c758f !important;
  border-color: #6c758f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #565d72 !important;
  border-color: #565d72 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #565d72 !important;
  border-color: #565d72 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #14344b !important;
  border-color: #14344b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #091823 !important;
  border-color: #091823 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #091823 !important;
  border-color: #091823 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #14344b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #020507 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #14344b !important;
  border-color: #14344b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea2396;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a61067 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ea2396 !important;
  border-color: #ea2396 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #35b8fc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #038fd7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #35b8fc !important;
  border-color: #35b8fc !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6c758f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #474d5e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #6c758f !important;
  border-color: #6c758f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #14344b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #020507 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #14344b !important;
  border-color: #14344b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #14344b !important;
}
.text-secondary {
  color: #ea2396 !important;
}
.text-success {
  color: #35b8fc !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #6c758f !important;
}
.text-danger {
  color: #14344b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #980f5e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0385c8 !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: #404555 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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):hover {
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #14344b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #6c758f;
}
.alert-danger {
  background-color: #14344b;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #14344b;
  border-color: #14344b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #14344b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6dabd8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #feffff;
}
.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: #b4b9c6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #6dabd8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #14344b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #14344b;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #14344b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #14344b;
}
.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: #14344b;
  border-bottom-color: #14344b;
}
.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: #14344b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ea2396 !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='%2314344b' %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-svGKGHe1ar {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-svGKGHe1ar .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-svGKGHe1ar .container {
    padding: 0 ;
  }
}
.cid-svGKGHe1ar .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-svGKGHe1ar .navbar.opened {
  transition: all 0.3s;
}
.cid-svGKGHe1ar .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-svGKGHe1ar .navbar .navbar-logo img {
  width: auto;
}
.cid-svGKGHe1ar .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-svGKGHe1ar .navbar.collapsed {
  justify-content: center;
}
.cid-svGKGHe1ar .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svGKGHe1ar .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svGKGHe1ar .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-svGKGHe1ar .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svGKGHe1ar .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-svGKGHe1ar .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-svGKGHe1ar .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svGKGHe1ar .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-svGKGHe1ar .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-svGKGHe1ar .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGKGHe1ar .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGKGHe1ar .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGKGHe1ar .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGKGHe1ar .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-svGKGHe1ar .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-svGKGHe1ar .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGKGHe1ar .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGKGHe1ar .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-svGKGHe1ar .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-svGKGHe1ar .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-svGKGHe1ar .navbar.navbar-short {
  min-height: 110px;
}
.cid-svGKGHe1ar .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-svGKGHe1ar .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-svGKGHe1ar .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-svGKGHe1ar nav.navbar {
  position: fixed;
}
.cid-svGKGHe1ar .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-svGKGHe1ar .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-svGKGHe1ar .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-svGKGHe1ar .dropdown-item:hover,
.cid-svGKGHe1ar .dropdown-item:focus {
  background: #14344b !important;
  color: white !important;
}
.cid-svGKGHe1ar .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-svGKGHe1ar .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-svGKGHe1ar .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-svGKGHe1ar .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-svGKGHe1ar .iconfont-wrapper {
  color: #14344b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-svGKGHe1ar .dropdown-menu,
.cid-svGKGHe1ar .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-svGKGHe1ar .nav-item:focus,
.cid-svGKGHe1ar .nav-link:focus {
  outline: none;
}
.cid-svGKGHe1ar .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-svGKGHe1ar .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGKGHe1ar .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-svGKGHe1ar .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-svGKGHe1ar .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svGKGHe1ar .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svGKGHe1ar .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-svGKGHe1ar .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGKGHe1ar .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGKGHe1ar .dropdown-item.active,
.cid-svGKGHe1ar .dropdown-item:active {
  background-color: transparent;
}
.cid-svGKGHe1ar .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGKGHe1ar .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGKGHe1ar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGKGHe1ar .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-svGKGHe1ar .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGKGHe1ar .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGKGHe1ar ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-svGKGHe1ar .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-svGKGHe1ar button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-svGKGHe1ar button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #14344b;
}
.cid-svGKGHe1ar button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGKGHe1ar button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGKGHe1ar button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGKGHe1ar button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGKGHe1ar nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGKGHe1ar nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGKGHe1ar nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGKGHe1ar nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGKGHe1ar .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-svGKGHe1ar a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svGKGHe1ar .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-svGKGHe1ar .navbar {
    height: 70px;
  }
  .cid-svGKGHe1ar .navbar.opened {
    height: auto;
  }
  .cid-svGKGHe1ar .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svGKGHe1ar .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-svGKGHe1ar .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-svGKGwmqjv {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #14344b;
}
.cid-svGKGwmqjv .mbr-section-title {
  color: #ffffff;
}
.cid-svGKGwmqjv .mbr-section-subtitle {
  color: #0196e3;
}
.cid-svGKGwmqjv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-svGKGwmqjv .title-col {
  border-right: 2px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-svGKGwmqjv .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-svGKGwmqjv .text-col {
  align-items: center;
  display: flex;
}
.cid-svGKGwmqjv .mbr-section-subtitle,
.cid-svGKGwmqjv .title-col {
  width: 100%;
  color: #ffffff;
}
.cid-vjgM7UPYsl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-vjgM7UPYsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgM7UPYsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjgM7UPYsl .content-wrapper {
  justify-content: center;
}
.cid-vjgM7UPYsl .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjgM7UPYsl .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vjgM7UPYsl .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vjgM7UPYsl .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjgM7UPYsl .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjgM7UPYsl .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin: 60px 0 30px;
}
@media (max-width: 992px) {
  .cid-vjgM7UPYsl .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 48px 0 18px;
  }
}
.cid-vjgM7UPYsl .mbr-section-btn {
  margin-top: 20px;
}
.cid-vjgM7UPYsl .mbr-figure {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.cid-vjgM7UPYsl .mbr-figure:hover,
.cid-vjgM7UPYsl .mbr-figure:focus {
  background-color: #f2f3f7;
  border: 2px solid #f2f3f7;
}
.cid-vjgM7UPYsl .mbr-section-title {
  color: #ffffff;
}
.cid-vjgM7UPYsl .mbr-text,
.cid-vjgM7UPYsl .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vjgM7UPYsl .mbr-desc,
.cid-vjgM7UPYsl .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-vjgM7UPYsl .mbr-section-title,
.cid-vjgM7UPYsl .mbr-section-btn {
  text-align: center;
}
.cid-svGLbesvPt {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-svGLbesvPt .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #14344b;
  margin-bottom: 1.5rem;
}
.cid-svGLbesvPt .col-lg-6 {
  padding: 0 2rem;
}
.cid-svGLbesvPt .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-svGLbesvPt .card-wrapper {
  padding: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-svGLbesvPt .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-svGLbesvPt .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-svGLbesvPt .card-title,
.cid-svGLbesvPt .iconfont-wrapper {
  color: #14344b;
}
.cid-svGLbesvPt .card-text {
  color: #14344b;
}
.cid-svGLbesvPt .mbr-section-subtitle {
  color: #36187d;
}
.cid-svGLbesvPt .mbr-section-title {
  color: #14344b;
}
.cid-vjhczh80mv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-vjhczh80mv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjhczh80mv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjhczh80mv .card {
  justify-content: center;
}
.cid-vjhczh80mv .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjhczh80mv .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-vjhczh80mv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 150px;
  max-width: 150px;
}
@media (max-width: 768px) {
  .cid-vjhczh80mv .embla__slide {
    min-width: 50%;
    max-width: 50%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 425px) {
  .cid-vjhczh80mv .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vjhczh80mv .embla__slide .slide-content {
  width: 100%;
}
.cid-vjhczh80mv .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-vjhczh80mv .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vjhczh80mv .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-vjhczh80mv .embla__button--next,
.cid-vjhczh80mv .embla__button--prev {
  display: flex;
}
.cid-vjhczh80mv .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vjhczh80mv .embla__button:hover {
  background-color: #caf31d !important;
  color: #000000 !important;
}
.cid-vjhczh80mv .embla__button:disabled {
  opacity: .5 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-vjhczh80mv .embla__button.embla__button--prev {
  left: 0;
}
.cid-vjhczh80mv .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-vjhczh80mv .embla__button.embla__button--next {
  right: 0;
}
.cid-vjhczh80mv .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-vjhczh80mv .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vjhczh80mv .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vjhczh80mv .embla__viewport {
    padding: 0;
  }
}
.cid-vjhczh80mv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjhczh80mv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjhczh80mv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjhczh80mv .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vjhczh80mv .mbr-section-title {
  color: #000000;
}
.cid-vjhczh80mv .mbr-section-title,
.cid-vjhczh80mv .title-wrapper {
  color: #14344b;
}
.cid-vjhlbJEcfA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-vjhlbJEcfA img,
.cid-vjhlbJEcfA .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjhlbJEcfA .item:focus,
.cid-vjhlbJEcfA span:focus {
  outline: none;
}
.cid-vjhlbJEcfA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vjhlbJEcfA .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjhlbJEcfA .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-vjhlbJEcfA .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-vjhlbJEcfA .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-vjhlbJEcfA .item-content {
    padding: 1rem 0;
  }
}
.cid-vjhlbJEcfA .mbr-section-title {
  color: #14344b;
}
.cid-vjhlbJEcfA .item-title {
  color: #14344b;
}
.cid-vjhlbJEcfA .item-subtitle {
  color: #bec2cf;
}
.cid-vjhlbJEcfA .mbr-text,
.cid-vjhlbJEcfA .mbr-section-btn {
  color: #6c758f;
}
.cid-vjhlbJEcfA .mbr-link {
  color: #14344b;
  display: block;
}
.cid-vjgQyG4BPi {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}
.cid-vjgQyG4BPi .title {
  padding: 0 2rem;
  color: #14344b;
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.cid-vjgQyG4BPi .card-title {
  color: #14344b;
  text-align: center;
}
.cid-vjgQyG4BPi .card-wrapper {
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  border-radius: 3rem;
  cursor: pointer;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  transition: all 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjgQyG4BPi .card-wrapper {
    flex-direction: row;
    padding: 1rem 2rem;
  }
}
.cid-vjgQyG4BPi .card-wrapper:hover {
  background: #0196e3;
  box-shadow: 0em 0em 3em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjgQyG4BPi .card-box {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjgQyG4BPi .card-box {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-vjgQyG4BPi .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-vjgQyG4BPi .card-text {
  text-align: center;
}
.cid-vjgQyG4BPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgQyG4BPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-svGLwCOwdH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
@media (max-width: 767px) {
  .cid-svGLwCOwdH .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svGLwCOwdH .mbr-text {
  color: #767676;
}
.cid-svGLwCOwdH .links {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-svGLwCOwdH .links {
    text-align: center !important;
  }
}
.cid-svGLwCOwdH .links a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-svGLwCOwdH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svGLwCOwdH .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-svGLwCOwdH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-svGLwCOwdH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #14344b;
}
.cid-svGLwCOwdH .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svGLwCOwdH .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svGLwCOwdH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svGLwCOwdH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svGLwCOwdH .copyright > p {
  color: #6c758f;
}
.cid-vjgN8K7W4i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vjgN8K7W4i .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjgN8K7W4i .container {
    padding: 0 ;
  }
}
.cid-vjgN8K7W4i .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-vjgN8K7W4i .navbar.opened {
  transition: all 0.3s;
}
.cid-vjgN8K7W4i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjgN8K7W4i .navbar .navbar-logo img {
  width: auto;
}
.cid-vjgN8K7W4i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjgN8K7W4i .navbar.collapsed {
  justify-content: center;
}
.cid-vjgN8K7W4i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjgN8K7W4i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjgN8K7W4i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vjgN8K7W4i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjgN8K7W4i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjgN8K7W4i .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-vjgN8K7W4i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjgN8K7W4i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjgN8K7W4i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjgN8K7W4i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjgN8K7W4i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjgN8K7W4i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjgN8K7W4i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjgN8K7W4i .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-vjgN8K7W4i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjgN8K7W4i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjgN8K7W4i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjgN8K7W4i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjgN8K7W4i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjgN8K7W4i .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-vjgN8K7W4i .navbar.navbar-short {
  min-height: 110px;
}
.cid-vjgN8K7W4i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjgN8K7W4i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjgN8K7W4i .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-vjgN8K7W4i nav.navbar {
  position: fixed;
}
.cid-vjgN8K7W4i .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-vjgN8K7W4i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-vjgN8K7W4i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjgN8K7W4i .dropdown-item:hover,
.cid-vjgN8K7W4i .dropdown-item:focus {
  background: #14344b !important;
  color: white !important;
}
.cid-vjgN8K7W4i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjgN8K7W4i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjgN8K7W4i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjgN8K7W4i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjgN8K7W4i .iconfont-wrapper {
  color: #14344b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjgN8K7W4i .dropdown-menu,
.cid-vjgN8K7W4i .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-vjgN8K7W4i .nav-item:focus,
.cid-vjgN8K7W4i .nav-link:focus {
  outline: none;
}
.cid-vjgN8K7W4i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjgN8K7W4i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjgN8K7W4i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjgN8K7W4i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjgN8K7W4i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjgN8K7W4i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjgN8K7W4i .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-vjgN8K7W4i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjgN8K7W4i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjgN8K7W4i .dropdown-item.active,
.cid-vjgN8K7W4i .dropdown-item:active {
  background-color: transparent;
}
.cid-vjgN8K7W4i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjgN8K7W4i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjgN8K7W4i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjgN8K7W4i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-vjgN8K7W4i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjgN8K7W4i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjgN8K7W4i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjgN8K7W4i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjgN8K7W4i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjgN8K7W4i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #14344b;
}
.cid-vjgN8K7W4i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjgN8K7W4i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjgN8K7W4i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjgN8K7W4i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjgN8K7W4i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjgN8K7W4i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjgN8K7W4i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjgN8K7W4i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjgN8K7W4i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjgN8K7W4i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjgN8K7W4i .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-vjgN8K7W4i .navbar {
    height: 70px;
  }
  .cid-vjgN8K7W4i .navbar.opened {
    height: auto;
  }
  .cid-vjgN8K7W4i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjgN8K7W4i .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjgN8K7W4i .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-vjgN8KVisQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #14344b;
}
.cid-vjgN8KVisQ .mbr-section-title {
  color: #ffffff;
}
.cid-vjgN8KVisQ .mbr-section-subtitle {
  color: #0196e3;
}
.cid-vjgN8KVisQ .mbr-text {
  color: #ffffff;
}
.cid-vjgN8KVisQ .title-col {
  border-right: 2px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjgN8KVisQ .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-vjgN8KVisQ .text-col {
  align-items: center;
  display: flex;
}
.cid-vjgN8KVisQ .mbr-section-subtitle,
.cid-vjgN8KVisQ .title-col {
  width: 100%;
  color: #ffffff;
}
.cid-vjgN8LxjWz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-vjgN8LxjWz .mbr-media {
  position: relative;
}
.cid-vjgN8LxjWz .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjgN8LxjWz .box {
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
.cid-vjgN8LxjWz .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-vjgN8LxjWz .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2rem;
  border-radius: 50%;
  transition: all 0.3s;
  background: #dae2ec;
}
.cid-vjgN8LxjWz .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vjgN8LxjWz .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-vjgN8LxjWz .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-vjgN8LxjWz a {
  text-decoration: none!important;
}
.cid-vjgN8LxjWz .close {
  position: fixed;
  opacity: 1;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vjgN8LxjWz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vjgN8LxjWz .mbr-section-title {
  color: #36187d;
}
.cid-vjgN8MbBoa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #14344b;
}
.cid-vjgN8MbBoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgN8MbBoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjgN8MbBoa .content-wrapper {
  justify-content: center;
}
.cid-vjgN8MbBoa .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjgN8MbBoa .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vjgN8MbBoa .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vjgN8MbBoa .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjgN8MbBoa .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjgN8MbBoa .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin: 60px 0 30px;
}
@media (max-width: 992px) {
  .cid-vjgN8MbBoa .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 48px 0 18px;
  }
}
.cid-vjgN8MbBoa .mbr-section-btn {
  margin-top: 20px;
}
.cid-vjgN8MbBoa .mbr-figure {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.cid-vjgN8MbBoa .mbr-figure:hover,
.cid-vjgN8MbBoa .mbr-figure:focus {
  background-color: #078efb;
  border: 2px solid #078efb;
}
.cid-vjgN8MbBoa .mbr-section-title {
  color: #ffffff;
}
.cid-vjgN8MbBoa .mbr-text,
.cid-vjgN8MbBoa .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vjgN8MbBoa .mbr-desc,
.cid-vjgN8MbBoa .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-vjgN8MbBoa .mbr-section-title,
.cid-vjgN8MbBoa .mbr-section-btn {
  text-align: center;
}
.cid-vjgN8MPbqI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-vjgN8MPbqI .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-vjgN8MPbqI .col-lg-6 {
  padding: 0 2rem;
}
.cid-vjgN8MPbqI .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-vjgN8MPbqI .card-wrapper {
  padding: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-vjgN8MPbqI .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjgN8MPbqI .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-vjgN8MPbqI .card-title,
.cid-vjgN8MPbqI .iconfont-wrapper {
  color: #14344b;
}
.cid-vjgN8MPbqI .card-text {
  color: #14344b;
}
.cid-vjgN8MPbqI .mbr-section-subtitle {
  color: #36187d;
}
.cid-vjgN8MPbqI .mbr-section-title {
  color: #14344b;
}
.cid-vjgN8NsC6a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
  overflow: hidden;
}
.cid-vjgN8NsC6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgN8NsC6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjgN8NsC6a .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vjgN8NsC6a .content-wrapper .items-wrapper {
  padding: 0;
}
.cid-vjgN8NsC6a .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #f2f3f7;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vjgN8NsC6a .content-wrapper .border_1 {
  left: 0;
}
.cid-vjgN8NsC6a .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vjgN8NsC6a .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vjgN8NsC6a .content-wrapper .border_3 {
  left: 50%;
}
.cid-vjgN8NsC6a .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vjgN8NsC6a .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vjgN8NsC6a .content-wrapper .border_5 {
  left: 100%;
}
.cid-vjgN8NsC6a .slider-wrap {
  margin-top: 8px;
  margin-right: -1px;
}
.cid-vjgN8NsC6a .slider-wrap .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vjgN8NsC6a .slider-wrap .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vjgN8NsC6a .slider-wrap .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vjgN8NsC6a .slider-wrap .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vjgN8NsC6a .slider-wrap .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vjgN8NsC6a .slider-wrap .embla {
  padding: 1px 24px 24px;
  background-color: #ffffff;
  will-change: transform;
}
.cid-vjgN8NsC6a .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 120px;
  max-width: 120px;
}
@media (max-width: 768px) {
  .cid-vjgN8NsC6a .embla__slide {
    min-width: 50%;
    max-width: 50%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 425px) {
  .cid-vjgN8NsC6a .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vjgN8NsC6a .embla__slide .slide-content {
  width: 100%;
}
.cid-vjgN8NsC6a .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-vjgN8NsC6a .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vjgN8NsC6a .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  object-fit: cover;
  height: 40px;
  max-height: 100px;
}
.cid-vjgN8NsC6a .embla__button--next,
.cid-vjgN8NsC6a .embla__button--prev {
  display: flex;
}
.cid-vjgN8NsC6a .embla__button {
  bottom: 12px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-color: transparent !important;
  color: #080a10 !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .5 !important;
  display: none;
}
.cid-vjgN8NsC6a .embla__button:hover {
  opacity: 1 !important;
}
.cid-vjgN8NsC6a .embla__button:disabled {
  opacity: .2 !important;
}
.cid-vjgN8NsC6a .embla__button.embla__button--prev {
  right: 56px;
}
.cid-vjgN8NsC6a .embla__button.embla__button--next {
  right: 24px;
}
.cid-vjgN8NsC6a .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vjgN8NsC6a .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vjgN8NsC6a .embla__viewport {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-vjgN8NsC6a .embla__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cid-vjgN8NsC6a .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjgN8NsC6a .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjgN8NsC6a .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjgN8NsC6a .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vjgN8Ohb12 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-vjgN8Ohb12 img,
.cid-vjgN8Ohb12 .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vjgN8Ohb12 .item:focus,
.cid-vjgN8Ohb12 span:focus {
  outline: none;
}
.cid-vjgN8Ohb12 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vjgN8Ohb12 .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjgN8Ohb12 .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-vjgN8Ohb12 .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-vjgN8Ohb12 .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-vjgN8Ohb12 .item-content {
    padding: 1rem 0;
  }
}
.cid-vjgN8Ohb12 .mbr-section-title {
  color: #36187d;
}
.cid-vjgN8Ohb12 .item-title {
  color: #36187d;
}
.cid-vjgN8Ohb12 .item-subtitle {
  color: #bec2cf;
}
.cid-vjgN8Ohb12 .mbr-text,
.cid-vjgN8Ohb12 .mbr-section-btn {
  color: #6c758f;
}
.cid-vjgN8Ohb12 .mbr-link {
  color: #0196e3;
  display: block;
}
.cid-vjgN8OSDO2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjgN8OSDO2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjgN8OSDO2 .row {
    flex-direction: column-reverse;
  }
  .cid-vjgN8OSDO2 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjgN8OSDO2 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjgN8OSDO2 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjgN8OSDO2 .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjgN8OSDO2 .card-title {
  color: #36187d;
}
.cid-vjgN8OSDO2 .mbr-text,
.cid-vjgN8OSDO2 .mbr-section-btn {
  color: #6c758f;
}
.cid-vjgN8PrcXz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f2f3f7;
}
.cid-vjgN8PrcXz .progress {
  width: 100%;
}
.cid-vjgN8PrcXz .col-lg-6,
.cid-vjgN8PrcXz .col-12 {
  padding: 0 2rem;
}
.cid-vjgN8PrcXz .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-vjgN8PrcXz p {
  margin-bottom: 0.4rem;
}
.cid-vjgN8PrcXz .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-vjgN8PrcXz img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
.cid-vjgN8PrcXz progress {
  height: 10px;
}
.cid-vjgN8PrcXz .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-vjgN8PrcXz .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-vjgN8PrcXz .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-vjgN8PrcXz .progress_value {
  position: relative;
}
.cid-vjgN8PrcXz .progress1 .progressbar-number:before,
.cid-vjgN8PrcXz .progress2 .progressbar-number:before,
.cid-vjgN8PrcXz .progress3 .progressbar-number:before,
.cid-vjgN8PrcXz .progress4 .progressbar-number:before,
.cid-vjgN8PrcXz .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-vjgN8PrcXz progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-vjgN8PrcXz progress::-webkit-progress-value {
  background: #36187d;
}
.cid-vjgN8PrcXz progress[value]::-moz-progress-bar {
  background: #36187d;
}
.cid-vjgN8PrcXz progress::-ms-fill {
  background: #36187d;
}
.cid-vjgN8PrcXz .progress1 .progressbar-number:before {
  content: '92';
}
.cid-vjgN8PrcXz .progress2 .progressbar-number:before {
  content: '71';
}
.cid-vjgN8PrcXz .progress3 .progressbar-number:before {
  content: '53';
}
.cid-vjgN8PrcXz .progress4 .progressbar-number:before {
  content: '70';
}
.cid-vjgN8PrcXz .progress5 .progressbar-number:before {
  content: '60';
}
.cid-vjgN8PrcXz .section-content-text {
  color: #6c758f;
}
.cid-vjgN8PrcXz .progressbar-title p,
.cid-vjgN8PrcXz .progress_value {
  color: #6c758f;
}
.cid-vjgN8PrcXz .mbr-section-subtitle {
  color: #6c758f;
}
.cid-vjgN8PrcXz .section-content-title {
  color: #36187d;
}
.cid-vjgN8Q0Itu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f2f3f7;
}
.cid-vjgN8Q0Itu .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-vjgN8Q0Itu .plan-body {
  padding-bottom: 3rem;
}
.cid-vjgN8Q0Itu .plan-header {
  padding-top: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vjgN8Q0Itu .price {
  color: #14344b;
}
.cid-vjgN8Q0Itu .plan {
  word-break: break-word;
  background-color: #ffffff;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
  background: #f2f3f7;
}
.cid-vjgN8Q0Itu .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-vjgN8Q0Itu .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.05);
}
.cid-vjgN8Q0Itu .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-vjgN8Q0Itu .plan {
    margin-bottom: 2rem;
  }
}
.cid-vjgN8Q0Itu .price-term {
  color: #6c758f;
}
.cid-vjgN8Q0Itu UL {
  color: #6c758f;
}
.cid-vjgN8Q0Itu .plan-title {
  color: #6c758f;
}
.cid-vjgN8Q0Itu .title {
  text-align: center;
  color: #36187d;
}
.cid-vjgN8QIVs8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-vjgN8QIVs8 .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-vjgN8QIVs8 .item:last-child .icon-box:before {
  display: none;
}
.cid-vjgN8QIVs8 .item::before {
  content: "";
  width: 2px;
  height: 100%;
  left: 40px;
  position: absolute;
  top: 0;
  background: #dae2ec;
  transform: translate(-50%, 0);
}
.cid-vjgN8QIVs8 .last:before {
  display: none;
}
.cid-vjgN8QIVs8 .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f2f3f7;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-vjgN8QIVs8 .icon-box {
    margin-right: 1rem;
  }
}
.cid-vjgN8QIVs8 span {
  font-size: 2rem;
}
@media (max-width: 991px) {
  .cid-vjgN8QIVs8 span .card {
    margin-bottom: 2rem;
  }
  .cid-vjgN8QIVs8 span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjgN8QIVs8 span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-vjgN8QIVs8 .icon-box::before {
    top: 114%;
  }
}
.cid-vjgN8QIVs8 SPAN {
  color: #0196e3;
}
.cid-vjgN8QIVs8 .icon-text {
  color: #6c758f;
}
.cid-vjgN8QIVs8 .icon-title {
  color: #36187d;
}
.cid-vjgN8QIVs8 .icon-subtitle {
  color: #36187d;
}
.cid-vjgN8QIVs8 .main-title {
  color: #36187d;
}
.cid-vjgN8RCS2L {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-vjgN8RCS2L .title {
  padding: 0 2rem;
  color: #36187d;
}
.cid-vjgN8RCS2L .card-wrapper {
  overflow: visible;
  padding: 4rem 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vjgN8RCS2L .card-wrapper {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
.cid-vjgN8RCS2L img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-vjgN8RCS2L .card-box {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjgN8RCS2L .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjgN8RCS2L .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-vjgN8RCS2L .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-vjgN8RCS2L .card-title {
  color: #36187d;
  text-align: center;
}
.cid-vjgN8ShTkH {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjgN8ShTkH .title {
  padding: 0 2rem;
  color: #36187d;
}
.cid-vjgN8ShTkH .card-title {
  max-width: 600px;
  color: #36187d;
}
.cid-vjgN8ShTkH .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem 4rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vjgN8ShTkH .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-vjgN8ShTkH .mbr-iconfont {
  font-size: 2.5rem;
  color: #0196e3;
  padding: 2rem;
  padding-top: 2.2rem;
  cursor: pointer;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjgN8ShTkH .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-vjgN8ShTkH img {
  width: 150px;
  background: white;
  height: 150px;
  border-radius: 50%;
  padding: 1rem;
  object-fit: contain;
  margin: auto;
}
.cid-vjgN8ShTkH .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-vjgN8ShTkH .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjgN8ShTkH .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-vjgN8SXPyP {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-vjgN8SXPyP .carousel-item {
  justify-content: center;
}
.cid-vjgN8SXPyP .carousel-item.active,
.cid-vjgN8SXPyP .carousel-item-next,
.cid-vjgN8SXPyP .carousel-item-prev {
  display: flex;
}
.cid-vjgN8SXPyP .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-vjgN8SXPyP .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-vjgN8SXPyP .mbr-iconfont {
  color: #14344b;
}
.cid-vjgN8SXPyP .carousel-control-next span {
  padding-left: 5px;
}
.cid-vjgN8SXPyP .carousel-control-prev span {
  padding-right: 5px;
}
.cid-vjgN8SXPyP .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin: 0 auto 2rem auto;
}
.cid-vjgN8SXPyP .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-vjgN8SXPyP .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-vjgN8SXPyP .user_text {
  color: #6c758f;
}
.cid-vjgN8SXPyP H3 {
  color: #36187d;
}
.cid-vjgN8SXPyP .user_name {
  color: #36187d;
}
.cid-vjgN8TEy96 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-vjgN8TEy96 .col-lg-6 {
  padding: 0 2rem;
}
.cid-vjgN8TEy96 .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-vjgN8TEy96 .card-wrapper {
  overflow: visible;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-vjgN8TEy96 .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjgN8TEy96 .card-wrapper {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
.cid-vjgN8TEy96 .mbr-iconfont {
  font-size: 1.5rem;
  color: #0196e3;
  padding: 1rem;
  width: fit-content;
  transition: all 0.3s;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  margin: 0 0.5rem;
  margin-bottom: 2rem;
  display: block;
}
.cid-vjgN8TEy96 .mbr-iconfont:hover {
  background: #ffffff;
}
.cid-vjgN8TEy96 .card-box {
  max-width: 340px;
}
@media (max-width: 767px) {
  .cid-vjgN8TEy96 .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjgN8TEy96 .mt-5 {
    margin-top: 0.5rem!important;
  }
}
@media (max-width: 767px) {
  .cid-vjgN8TEy96 .icon-wrapper {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
  }
}
.cid-vjgN8TEy96 .card-text {
  color: #6c758f;
}
.cid-vjgN8TEy96 .card-title {
  color: #36187d;
}
.cid-vjgN8TEy96 .card-phone {
  color: #0196e3;
}
.cid-vjgN8UizkF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f2f3f7;
}
.cid-vjgN8UizkF .google-map {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.cid-vjgN8UizkF .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjgN8UizkF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vjgN8UizkF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vjgN8UizkF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vjgN8UR0B1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f3f7;
}
.cid-vjgN8UR0B1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vjgN8UR0B1 .btn {
  padding: 1rem 3rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-vjgN8UR0B1 .col-auto {
    margin: auto;
  }
}
.cid-vjgN8UR0B1 textarea {
  min-height: 200px;
}
.cid-vjgN8UR0B1 .form-control,
.cid-vjgN8UR0B1 .field-input {
  padding: 1.5rem 2rem;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  background-color: #edeff3;
  border-radius: 3rem;
  border: 0!important;
  color: #000000;
  transition: 0.4s;
  outline: none;
}
.cid-vjgN8UR0B1 .form-control::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .form-control::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input::-webkit-input-placeholder {
  color: #36187d;
}
.cid-vjgN8UR0B1 .form-control:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:-moz-placeholder,
.cid-vjgN8UR0B1 .form-control:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:-moz-placeholder {
  color: #36187d;
}
.cid-vjgN8UR0B1 .form-control:hover,
.cid-vjgN8UR0B1 .field-input:hover,
.cid-vjgN8UR0B1 .form-control:focus,
.cid-vjgN8UR0B1 .field-input:focus {
  background-color: #edeff3;
  color: #232323;
  border: 0!important;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  outline: none;
}
.cid-vjgN8UR0B1 .form-control:hover::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input:hover::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .form-control:focus::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input:focus::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .form-control:hover::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input:hover::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .form-control:focus::-webkit-input-placeholder,
.cid-vjgN8UR0B1 .field-input:focus::-webkit-input-placeholder {
  color: #36187d;
}
.cid-vjgN8UR0B1 .form-control:hover:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:hover:-moz-placeholder,
.cid-vjgN8UR0B1 .form-control:focus:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:focus:-moz-placeholder,
.cid-vjgN8UR0B1 .form-control:hover:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:hover:-moz-placeholder,
.cid-vjgN8UR0B1 .form-control:focus:-moz-placeholder,
.cid-vjgN8UR0B1 .field-input:focus:-moz-placeholder {
  color: #36187d;
}
.cid-vjgN8UR0B1 .jq-number__spin:hover,
.cid-vjgN8UR0B1 .jq-number__spin:focus {
  background-color: #edeff3;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vjgN8UR0B1 .jq-number__spin {
  background-color: #edeff3;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vjgN8UR0B1 .jq-selectbox li,
.cid-vjgN8UR0B1 .jq-selectbox li {
  background-color: #edeff3;
  color: #000000;
}
.cid-vjgN8UR0B1 .jq-selectbox li:hover,
.cid-vjgN8UR0B1 .jq-selectbox li.selected {
  background-color: #edeff3;
  color: #000000;
}
.cid-vjgN8UR0B1 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vjgN8UR0B1 .jq-number__spin.minus:hover:after,
.cid-vjgN8UR0B1 .jq-number__spin.plus:hover:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-vjgN8UR0B1 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vjgN8UR0B1 .jq-number__spin.minus:after,
.cid-vjgN8UR0B1 .jq-number__spin.plus:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-vjgN8UR0B1 input::-webkit-clear-button {
  display: none;
}
.cid-vjgN8UR0B1 input::-webkit-inner-spin-button {
  display: none;
}
.cid-vjgN8UR0B1 input::-webkit-outer-spin-button {
  display: none;
}
.cid-vjgN8UR0B1 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vjgN8UR0B1 H4 {
  color: #36187d;
}
.cid-vjgN8Vv1vh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
@media (max-width: 767px) {
  .cid-vjgN8Vv1vh .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjgN8Vv1vh .mbr-text {
  color: #767676;
}
.cid-vjgN8Vv1vh .links {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-vjgN8Vv1vh .links {
    text-align: center !important;
  }
}
.cid-vjgN8Vv1vh .links a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-vjgN8Vv1vh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjgN8Vv1vh .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-vjgN8Vv1vh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vjgN8Vv1vh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #14344b;
}
.cid-vjgN8Vv1vh .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-vjgN8Vv1vh .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-vjgN8Vv1vh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vjgN8Vv1vh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vjgN8Vv1vh .copyright > p {
  color: #6c758f;
}
.cid-vjgWwiPfWy {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-vjgWwiPfWy .mbr-section-title {
  color: #36187d;
}
.cid-vjgWwiPfWy .mbr-section-subtitle {
  color: #0196e3;
}
.cid-vjgWwiPfWy .mbr-text {
  color: #14344b;
}
.cid-vjgWwiPfWy .title-col {
  border-right: 3px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjgWwiPfWy .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-vjgWwiPfWy .text-col {
  align-items: center;
  display: flex;
}
.cid-vjgWwiPfWy .mbr-section-subtitle,
.cid-vjgWwiPfWy .title-col {
  width: 100%;
  color: #14344b;
}
.cid-vjgX8K5ofx {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjgX8K5ofx .col-lg-6 {
  padding: 0 2rem;
}
.cid-vjgX8K5ofx .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-vjgX8K5ofx .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem;
  transition: all 0.3s;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 991px) {
  .cid-vjgX8K5ofx .card-wrapper {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vjgX8K5ofx .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-vjgX8K5ofx .card-wrapper:hover {
  background: #f8f9fb;
}
.cid-vjgX8K5ofx .mbr-iconfont {
  font-size: 3rem;
  color: #0196e3;
  padding: 2.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
}
.cid-vjgX8K5ofx .card-box {
  margin: auto;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .cid-vjgX8K5ofx .card-box {
    padding-left: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vjgX8K5ofx .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-vjgX8K5ofx .card-text {
  color: #6c758f;
}
.cid-vjgX8K5ofx .card-title {
  color: #14344b;
}
.cid-vjgX8K5ofx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgX8K5ofx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjgX8K5ofx .card-text DIV {
  text-align: left;
}
.cid-vjgVonJFfW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vjgVonJFfW .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjgVonJFfW .container {
    padding: 0 ;
  }
}
.cid-vjgVonJFfW .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-vjgVonJFfW .navbar.opened {
  transition: all 0.3s;
}
.cid-vjgVonJFfW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjgVonJFfW .navbar .navbar-logo img {
  width: auto;
}
.cid-vjgVonJFfW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjgVonJFfW .navbar.collapsed {
  justify-content: center;
}
.cid-vjgVonJFfW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjgVonJFfW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjgVonJFfW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vjgVonJFfW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjgVonJFfW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjgVonJFfW .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-vjgVonJFfW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjgVonJFfW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjgVonJFfW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjgVonJFfW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjgVonJFfW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjgVonJFfW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjgVonJFfW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjgVonJFfW .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-vjgVonJFfW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjgVonJFfW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjgVonJFfW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjgVonJFfW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjgVonJFfW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjgVonJFfW .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-vjgVonJFfW .navbar.navbar-short {
  min-height: 110px;
}
.cid-vjgVonJFfW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjgVonJFfW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjgVonJFfW .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-vjgVonJFfW nav.navbar {
  position: fixed;
}
.cid-vjgVonJFfW .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-vjgVonJFfW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-vjgVonJFfW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjgVonJFfW .dropdown-item:hover,
.cid-vjgVonJFfW .dropdown-item:focus {
  background: #14344b !important;
  color: white !important;
}
.cid-vjgVonJFfW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjgVonJFfW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjgVonJFfW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjgVonJFfW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjgVonJFfW .iconfont-wrapper {
  color: #14344b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjgVonJFfW .dropdown-menu,
.cid-vjgVonJFfW .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-vjgVonJFfW .nav-item:focus,
.cid-vjgVonJFfW .nav-link:focus {
  outline: none;
}
.cid-vjgVonJFfW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjgVonJFfW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjgVonJFfW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjgVonJFfW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjgVonJFfW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjgVonJFfW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjgVonJFfW .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-vjgVonJFfW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjgVonJFfW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjgVonJFfW .dropdown-item.active,
.cid-vjgVonJFfW .dropdown-item:active {
  background-color: transparent;
}
.cid-vjgVonJFfW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjgVonJFfW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjgVonJFfW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjgVonJFfW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-vjgVonJFfW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjgVonJFfW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjgVonJFfW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjgVonJFfW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjgVonJFfW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjgVonJFfW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #14344b;
}
.cid-vjgVonJFfW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjgVonJFfW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjgVonJFfW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjgVonJFfW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjgVonJFfW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjgVonJFfW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjgVonJFfW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjgVonJFfW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjgVonJFfW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjgVonJFfW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjgVonJFfW .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-vjgVonJFfW .navbar {
    height: 70px;
  }
  .cid-vjgVonJFfW .navbar.opened {
    height: auto;
  }
  .cid-vjgVonJFfW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjgVonJFfW .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjgVonJFfW .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-vjgZPaD1Ql {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjgZPaD1Ql .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjgZPaD1Ql .row {
    flex-direction: column-reverse;
  }
  .cid-vjgZPaD1Ql .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjgZPaD1Ql .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjgZPaD1Ql .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjgZPaD1Ql .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjgZPaD1Ql .card-title {
  color: #14344b;
}
.cid-vjgZPaD1Ql .mbr-text,
.cid-vjgZPaD1Ql .mbr-section-btn {
  color: #6c758f;
}
.cid-vjgZPaD1Ql .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjgZPaD1Ql .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjh2eOPdv6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-vjh2eOPdv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjh2eOPdv6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjh2eOPdv6 .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vjh2eOPdv6 .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vjh2eOPdv6 .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vjh2eOPdv6 .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vjh2eOPdv6 .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vjh2eOPdv6 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vjh2eOPdv6 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-vjh2eOPdv6 .items-wrapper {
  margin: 0 -6px;
}
.cid-vjh2eOPdv6 .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-vjh2eOPdv6 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  padding: 32px 12px 32px 20px;
}
@media (max-width: 1440px) {
  .cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 20px;
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .card-box .item-label {
  margin-bottom: 9px;
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-vjh2eOPdv6 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vjh2eOPdv6 .mbr-label {
  color: #707070;
}
.cid-vjh2eOPdv6 .mbr-section-title {
  color: #000000;
}
.cid-vjh2eOPdv6 .mbr-section-subtitle {
  color: #707070;
}
.cid-vjh2eOPdv6 .item-label {
  color: #0196e3;
}
.cid-vjh2eOPdv6 .item-title {
  color: #000000;
}
.cid-vjh2eOPdv6 .item-text {
  color: #707070;
}
.cid-vjh2eOPdv6 .mbr-section-title,
.cid-vjh2eOPdv6 .title-wrap {
  color: #14344b;
}
.cid-vjh2eOPdv6 .item-title,
.cid-vjh2eOPdv6 .iconfont-wrapper,
.cid-vjh2eOPdv6 .mbr-section-btn {
  color: #0196e3;
}
.cid-vjhayKqP1z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-vjhayKqP1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjhayKqP1z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjhayKqP1z .card {
  justify-content: center;
}
.cid-vjhayKqP1z .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjhayKqP1z .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-vjhayKqP1z .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 150px;
  max-width: 150px;
}
@media (max-width: 768px) {
  .cid-vjhayKqP1z .embla__slide {
    min-width: 50%;
    max-width: 50%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 425px) {
  .cid-vjhayKqP1z .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vjhayKqP1z .embla__slide .slide-content {
  width: 100%;
}
.cid-vjhayKqP1z .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-vjhayKqP1z .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vjhayKqP1z .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-vjhayKqP1z .embla__button--next,
.cid-vjhayKqP1z .embla__button--prev {
  display: flex;
}
.cid-vjhayKqP1z .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vjhayKqP1z .embla__button:hover {
  background-color: #caf31d !important;
  color: #000000 !important;
}
.cid-vjhayKqP1z .embla__button:disabled {
  opacity: .5 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-vjhayKqP1z .embla__button.embla__button--prev {
  left: 0;
}
.cid-vjhayKqP1z .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-vjhayKqP1z .embla__button.embla__button--next {
  right: 0;
}
.cid-vjhayKqP1z .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-vjhayKqP1z .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vjhayKqP1z .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vjhayKqP1z .embla__viewport {
    padding: 0;
  }
}
.cid-vjhayKqP1z .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjhayKqP1z .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjhayKqP1z .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjhayKqP1z .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vjhayKqP1z .mbr-section-title {
  color: #000000;
}
.cid-vjhayKqP1z .mbr-section-title,
.cid-vjhayKqP1z .title-wrapper {
  color: #14344b;
}
.cid-vjgVowVvNg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
@media (max-width: 767px) {
  .cid-vjgVowVvNg .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjgVowVvNg .mbr-text {
  color: #767676;
}
.cid-vjgVowVvNg .links {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-vjgVowVvNg .links {
    text-align: center !important;
  }
}
.cid-vjgVowVvNg .links a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-vjgVowVvNg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjgVowVvNg .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-vjgVowVvNg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vjgVowVvNg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #14344b;
}
.cid-vjgVowVvNg .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-vjgVowVvNg .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-vjgVowVvNg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vjgVowVvNg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vjgVowVvNg .copyright > p {
  color: #6c758f;
}
.cid-vjhdHlPXEK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vjhdHlPXEK .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjhdHlPXEK .container {
    padding: 0 ;
  }
}
.cid-vjhdHlPXEK .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-vjhdHlPXEK .navbar.opened {
  transition: all 0.3s;
}
.cid-vjhdHlPXEK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjhdHlPXEK .navbar .navbar-logo img {
  width: auto;
}
.cid-vjhdHlPXEK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjhdHlPXEK .navbar.collapsed {
  justify-content: center;
}
.cid-vjhdHlPXEK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjhdHlPXEK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjhdHlPXEK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vjhdHlPXEK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjhdHlPXEK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjhdHlPXEK .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-vjhdHlPXEK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjhdHlPXEK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjhdHlPXEK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjhdHlPXEK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjhdHlPXEK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjhdHlPXEK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjhdHlPXEK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjhdHlPXEK .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-vjhdHlPXEK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjhdHlPXEK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjhdHlPXEK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjhdHlPXEK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjhdHlPXEK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjhdHlPXEK .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-vjhdHlPXEK .navbar.navbar-short {
  min-height: 110px;
}
.cid-vjhdHlPXEK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjhdHlPXEK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjhdHlPXEK .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-vjhdHlPXEK nav.navbar {
  position: fixed;
}
.cid-vjhdHlPXEK .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-vjhdHlPXEK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-vjhdHlPXEK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjhdHlPXEK .dropdown-item:hover,
.cid-vjhdHlPXEK .dropdown-item:focus {
  background: #14344b !important;
  color: white !important;
}
.cid-vjhdHlPXEK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjhdHlPXEK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjhdHlPXEK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjhdHlPXEK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjhdHlPXEK .iconfont-wrapper {
  color: #14344b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjhdHlPXEK .dropdown-menu,
.cid-vjhdHlPXEK .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-vjhdHlPXEK .nav-item:focus,
.cid-vjhdHlPXEK .nav-link:focus {
  outline: none;
}
.cid-vjhdHlPXEK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjhdHlPXEK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjhdHlPXEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjhdHlPXEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjhdHlPXEK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjhdHlPXEK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjhdHlPXEK .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-vjhdHlPXEK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjhdHlPXEK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjhdHlPXEK .dropdown-item.active,
.cid-vjhdHlPXEK .dropdown-item:active {
  background-color: transparent;
}
.cid-vjhdHlPXEK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjhdHlPXEK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjhdHlPXEK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjhdHlPXEK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-vjhdHlPXEK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjhdHlPXEK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjhdHlPXEK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjhdHlPXEK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjhdHlPXEK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjhdHlPXEK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #14344b;
}
.cid-vjhdHlPXEK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjhdHlPXEK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhdHlPXEK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhdHlPXEK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjhdHlPXEK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhdHlPXEK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjhdHlPXEK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjhdHlPXEK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhdHlPXEK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjhdHlPXEK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjhdHlPXEK .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-vjhdHlPXEK .navbar {
    height: 70px;
  }
  .cid-vjhdHlPXEK .navbar.opened {
    height: auto;
  }
  .cid-vjhdHlPXEK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjhdHlPXEK .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjhdHlPXEK .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-vjhdHmvUuS {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-vjhdHmvUuS .mbr-section-title {
  color: #ffffff;
}
.cid-vjhdHmvUuS .mbr-section-subtitle {
  color: #0196e3;
}
.cid-vjhdHmvUuS .mbr-text {
  color: #14344b;
}
.cid-vjhdHmvUuS .title-col {
  border-right: 2px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjhdHmvUuS .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-vjhdHmvUuS .text-col {
  align-items: center;
  display: flex;
}
.cid-vjhdHmvUuS .mbr-section-subtitle,
.cid-vjhdHmvUuS .title-col {
  width: 100%;
  color: #14344b;
}
.cid-vjhdHq8ycI {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjhdHq8ycI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjhdHq8ycI .row {
    flex-direction: column-reverse;
  }
  .cid-vjhdHq8ycI .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjhdHq8ycI .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjhdHq8ycI .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjhdHq8ycI .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjhdHq8ycI .card-title {
  color: #14344b;
}
.cid-vjhdHq8ycI .mbr-text,
.cid-vjhdHq8ycI .mbr-section-btn {
  color: #6c758f;
}
.cid-vjhfK84fxC {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjhfK84fxC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjhfK84fxC .row {
    flex-direction: column-reverse;
  }
  .cid-vjhfK84fxC .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjhfK84fxC .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjhfK84fxC .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjhfK84fxC .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjhfK84fxC .card-title {
  color: #14344b;
}
.cid-vjhfK84fxC .mbr-text,
.cid-vjhfK84fxC .mbr-section-btn {
  color: #6c758f;
}
.cid-vjhfKAhvEr {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjhfKAhvEr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjhfKAhvEr .row {
    flex-direction: column-reverse;
  }
  .cid-vjhfKAhvEr .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjhfKAhvEr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjhfKAhvEr .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjhfKAhvEr .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjhfKAhvEr .card-title {
  color: #14344b;
}
.cid-vjhfKAhvEr .mbr-text,
.cid-vjhfKAhvEr .mbr-section-btn {
  color: #6c758f;
}
.cid-vjhfKUE2eQ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-vjhfKUE2eQ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vjhfKUE2eQ .row {
    flex-direction: column-reverse;
  }
  .cid-vjhfKUE2eQ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vjhfKUE2eQ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vjhfKUE2eQ .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-vjhfKUE2eQ .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-vjhfKUE2eQ .card-title {
  color: #14344b;
}
.cid-vjhfKUE2eQ .mbr-text,
.cid-vjhfKUE2eQ .mbr-section-btn {
  color: #6c758f;
}
.cid-vjhk9olK3b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-vjhk9olK3b .mbr-section-title,
.cid-vjhk9olK3b .mbr-section-subtitle {
  text-align: center;
}
.cid-vjhk9olK3b .cost {
  word-break: normal;
}
.cid-vjhk9olK3b .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #f2f3f7;
}
.cid-vjhk9olK3b .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-vjhk9olK3b .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vjhk9olK3b .card-wrapper {
    padding: 1rem;
  }
}
.cid-vjhk9olK3b .card-title {
  color: #14344b;
}
.cid-vjhk9olK3b P {
  color: #6c758f;
}
.cid-vjhk9olK3b .mbr-section-title {
  color: #14344b;
}
.cid-vjhk9olK3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjhk9olK3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjhlpjA6vj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}
.cid-vjhlpjA6vj .title {
  padding: 0 2rem;
  color: #14344b;
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.cid-vjhlpjA6vj .card-title {
  color: #14344b;
  text-align: center;
}
.cid-vjhlpjA6vj .card-wrapper {
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  border-radius: 3rem;
  cursor: pointer;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  transition: all 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhlpjA6vj .card-wrapper {
    flex-direction: row;
    padding: 1rem 2rem;
  }
}
.cid-vjhlpjA6vj .card-wrapper:hover {
  background: #0196e3;
  box-shadow: 0em 0em 3em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjhlpjA6vj .card-box {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjhlpjA6vj .card-box {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-vjhlpjA6vj .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-vjhlpjA6vj .card-text {
  text-align: center;
}
.cid-vjhlpjA6vj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjhlpjA6vj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjhdHy3sdg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
@media (max-width: 767px) {
  .cid-vjhdHy3sdg .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjhdHy3sdg .mbr-text {
  color: #767676;
}
.cid-vjhdHy3sdg .links {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-vjhdHy3sdg .links {
    text-align: center !important;
  }
}
.cid-vjhdHy3sdg .links a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-vjhdHy3sdg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjhdHy3sdg .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-vjhdHy3sdg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vjhdHy3sdg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #14344b;
}
.cid-vjhdHy3sdg .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-vjhdHy3sdg .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-vjhdHy3sdg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vjhdHy3sdg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vjhdHy3sdg .copyright > p {
  color: #6c758f;
}
.cid-vjhl2Uij74 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vjhl2Uij74 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-vjhl2Uij74 .container {
    padding: 0 ;
  }
}
.cid-vjhl2Uij74 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-vjhl2Uij74 .navbar.opened {
  transition: all 0.3s;
}
.cid-vjhl2Uij74 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vjhl2Uij74 .navbar .navbar-logo img {
  width: auto;
}
.cid-vjhl2Uij74 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjhl2Uij74 .navbar.collapsed {
  justify-content: center;
}
.cid-vjhl2Uij74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vjhl2Uij74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vjhl2Uij74 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vjhl2Uij74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjhl2Uij74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjhl2Uij74 .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-vjhl2Uij74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjhl2Uij74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vjhl2Uij74 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vjhl2Uij74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vjhl2Uij74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjhl2Uij74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjhl2Uij74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjhl2Uij74 .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-vjhl2Uij74 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vjhl2Uij74 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjhl2Uij74 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjhl2Uij74 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vjhl2Uij74 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjhl2Uij74 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-vjhl2Uij74 .navbar.navbar-short {
  min-height: 110px;
}
.cid-vjhl2Uij74 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vjhl2Uij74 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vjhl2Uij74 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-vjhl2Uij74 nav.navbar {
  position: fixed;
}
.cid-vjhl2Uij74 .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-vjhl2Uij74 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-vjhl2Uij74 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vjhl2Uij74 .dropdown-item:hover,
.cid-vjhl2Uij74 .dropdown-item:focus {
  background: #14344b !important;
  color: white !important;
}
.cid-vjhl2Uij74 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vjhl2Uij74 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vjhl2Uij74 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vjhl2Uij74 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vjhl2Uij74 .iconfont-wrapper {
  color: #14344b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjhl2Uij74 .dropdown-menu,
.cid-vjhl2Uij74 .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-vjhl2Uij74 .nav-item:focus,
.cid-vjhl2Uij74 .nav-link:focus {
  outline: none;
}
.cid-vjhl2Uij74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vjhl2Uij74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjhl2Uij74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vjhl2Uij74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjhl2Uij74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjhl2Uij74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjhl2Uij74 .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-vjhl2Uij74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjhl2Uij74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjhl2Uij74 .dropdown-item.active,
.cid-vjhl2Uij74 .dropdown-item:active {
  background-color: transparent;
}
.cid-vjhl2Uij74 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjhl2Uij74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjhl2Uij74 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjhl2Uij74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-vjhl2Uij74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjhl2Uij74 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjhl2Uij74 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjhl2Uij74 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vjhl2Uij74 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vjhl2Uij74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #14344b;
}
.cid-vjhl2Uij74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjhl2Uij74 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhl2Uij74 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjhl2Uij74 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjhl2Uij74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhl2Uij74 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjhl2Uij74 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjhl2Uij74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjhl2Uij74 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vjhl2Uij74 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vjhl2Uij74 .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-vjhl2Uij74 .navbar {
    height: 70px;
  }
  .cid-vjhl2Uij74 .navbar.opened {
    height: auto;
  }
  .cid-vjhl2Uij74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vjhl2Uij74 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vjhl2Uij74 .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-vjhl2V5N5T {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #14344b;
}
.cid-vjhl2V5N5T .mbr-section-title {
  color: #ffffff;
}
.cid-vjhl2V5N5T .mbr-section-subtitle {
  color: #0196e3;
}
.cid-vjhl2V5N5T .mbr-text {
  color: #ffffff;
}
.cid-vjhl2V5N5T .title-col {
  border-right: 2px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjhl2V5N5T .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-vjhl2V5N5T .text-col {
  align-items: center;
  display: flex;
}
.cid-vjhl2V5N5T .mbr-section-subtitle,
.cid-vjhl2V5N5T .title-col {
  width: 100%;
  color: #ffffff;
}
.cid-vjhl35UqRY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f3f7;
}
.cid-vjhl35UqRY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vjhl35UqRY .btn {
  padding: 1rem 3rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-vjhl35UqRY .col-auto {
    margin: auto;
  }
}
.cid-vjhl35UqRY textarea {
  min-height: 200px;
}
.cid-vjhl35UqRY .form-control,
.cid-vjhl35UqRY .field-input {
  padding: 1.5rem 2rem;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  background-color: #edeff3;
  border-radius: 3rem;
  border: 0!important;
  color: #000000;
  transition: 0.4s;
  outline: none;
}
.cid-vjhl35UqRY .form-control::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input::-webkit-input-placeholder,
.cid-vjhl35UqRY .form-control::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input::-webkit-input-placeholder {
  color: #36187d;
}
.cid-vjhl35UqRY .form-control:-moz-placeholder,
.cid-vjhl35UqRY .field-input:-moz-placeholder,
.cid-vjhl35UqRY .form-control:-moz-placeholder,
.cid-vjhl35UqRY .field-input:-moz-placeholder {
  color: #36187d;
}
.cid-vjhl35UqRY .form-control:hover,
.cid-vjhl35UqRY .field-input:hover,
.cid-vjhl35UqRY .form-control:focus,
.cid-vjhl35UqRY .field-input:focus {
  background-color: #edeff3;
  color: #232323;
  border: 0!important;
  box-shadow: inset 1px 1px 2px 0 #d2dce9;
  outline: none;
}
.cid-vjhl35UqRY .form-control:hover::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input:hover::-webkit-input-placeholder,
.cid-vjhl35UqRY .form-control:focus::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input:focus::-webkit-input-placeholder,
.cid-vjhl35UqRY .form-control:hover::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input:hover::-webkit-input-placeholder,
.cid-vjhl35UqRY .form-control:focus::-webkit-input-placeholder,
.cid-vjhl35UqRY .field-input:focus::-webkit-input-placeholder {
  color: #36187d;
}
.cid-vjhl35UqRY .form-control:hover:-moz-placeholder,
.cid-vjhl35UqRY .field-input:hover:-moz-placeholder,
.cid-vjhl35UqRY .form-control:focus:-moz-placeholder,
.cid-vjhl35UqRY .field-input:focus:-moz-placeholder,
.cid-vjhl35UqRY .form-control:hover:-moz-placeholder,
.cid-vjhl35UqRY .field-input:hover:-moz-placeholder,
.cid-vjhl35UqRY .form-control:focus:-moz-placeholder,
.cid-vjhl35UqRY .field-input:focus:-moz-placeholder {
  color: #36187d;
}
.cid-vjhl35UqRY .jq-number__spin:hover,
.cid-vjhl35UqRY .jq-number__spin:focus {
  background-color: #edeff3;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vjhl35UqRY .jq-number__spin {
  background-color: #edeff3;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vjhl35UqRY .jq-selectbox li,
.cid-vjhl35UqRY .jq-selectbox li {
  background-color: #edeff3;
  color: #000000;
}
.cid-vjhl35UqRY .jq-selectbox li:hover,
.cid-vjhl35UqRY .jq-selectbox li.selected {
  background-color: #edeff3;
  color: #000000;
}
.cid-vjhl35UqRY .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vjhl35UqRY .jq-number__spin.minus:hover:after,
.cid-vjhl35UqRY .jq-number__spin.plus:hover:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-vjhl35UqRY .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vjhl35UqRY .jq-number__spin.minus:after,
.cid-vjhl35UqRY .jq-number__spin.plus:after {
  border-top-color: #edeff3;
  border-bottom-color: #edeff3;
}
.cid-vjhl35UqRY input::-webkit-clear-button {
  display: none;
}
.cid-vjhl35UqRY input::-webkit-inner-spin-button {
  display: none;
}
.cid-vjhl35UqRY input::-webkit-outer-spin-button {
  display: none;
}
.cid-vjhl35UqRY input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vjhl35UqRY H4 {
  color: #14344b;
}
.cid-vjhl35iZNo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f2f3f7;
}
.cid-vjhl35iZNo .google-map {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.cid-vjhl35iZNo .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-vjhl35iZNo .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vjhl35iZNo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vjhl35iZNo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vjhl36r9Ko {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
@media (max-width: 767px) {
  .cid-vjhl36r9Ko .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjhl36r9Ko .mbr-text {
  color: #767676;
}
.cid-vjhl36r9Ko .links {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-vjhl36r9Ko .links {
    text-align: center !important;
  }
}
.cid-vjhl36r9Ko .links a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-vjhl36r9Ko .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vjhl36r9Ko .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-vjhl36r9Ko .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vjhl36r9Ko .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #14344b;
}
.cid-vjhl36r9Ko .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-vjhl36r9Ko .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-vjhl36r9Ko .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vjhl36r9Ko .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vjhl36r9Ko .copyright > p {
  color: #6c758f;
}
