.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #72b596 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #05386b !important;
  border-color: #05386b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #72b596 !important;
  border-color: #72b596 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #48896b !important;
  border-color: #48896b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #48896b !important;
  border-color: #48896b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #05386b;
  color: #05386b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #010d18 !important;
  background-color: transparent!important;
  border-color: #010d18 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #05386b !important;
  border-color: #05386b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #72b596;
  color: #72b596;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #48896b !important;
  background-color: transparent!important;
  border-color: #48896b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #72b596 !important;
  border-color: #72b596 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #05386b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #72b596 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #00050a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #427f63 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #72b596;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c6e1d4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Inter', 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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', 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: #ffffff;
}
/* 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: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #05386b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #72b596 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 15rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/3127-2000x2000.webp");
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #72b596;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-sFANq99njx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFANq99njx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sFANq99njx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sFANq99njx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFANq99njx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFANq99njx .card-title {
  color: #05386b;
}
.cid-sFANq99njx .mbr-text,
.cid-sFANq99njx .mbr-section-btn {
  color: #05386b;
  text-align: left;
}
.cid-uMZZT15WFW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZZT15WFW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZZT15WFW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZZT15WFW .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMZZT15WFW .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMZZT15WFW .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMZZT15WFW .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMZZT15WFW .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMZZT15WFW .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMZZT15WFW .carousel-control,
.cid-uMZZT15WFW .close {
  background: #1b1b1b;
}
.cid-uMZZT15WFW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMZZT15WFW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMZZT15WFW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMZZT15WFW .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMZZT15WFW .close {
  position: fixed;
  opacity: 0.5;
  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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMZZT15WFW .close::before {
  content: '\e91a';
}
.cid-uMZZT15WFW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMZZT15WFW .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMZZT15WFW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMZZT15WFW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMZZT15WFW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMZZT15WFW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMZZT15WFW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMZZT15WFW .carousel-indicators li.active,
.cid-uMZZT15WFW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMZZT15WFW .carousel-indicators li::after,
.cid-uMZZT15WFW .carousel-indicators li::before {
  content: none;
}
.cid-uMZZT15WFW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMZZT15WFW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMZZT15WFW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMZZT15WFW .carousel-indicators {
    display: none;
  }
}
.cid-uMZZT15WFW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMZZT15WFW .carousel-inner > .active {
  display: block;
}
.cid-uMZZT15WFW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMZZT15WFW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMZZT15WFW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMZZT15WFW .carousel-control,
  .cid-uMZZT15WFW .carousel-indicators,
  .cid-uMZZT15WFW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMZZT15WFW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMZZT15WFW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMZZT15WFW .carousel-indicators .active,
.cid-uMZZT15WFW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMZZT15WFW .carousel-indicators .active {
  background: #fff;
}
.cid-uMZZT15WFW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMZZT15WFW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMZZT15WFW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMZZT15WFW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMZZT15WFW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMZZT15WFW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMZZT15WFW .carousel {
  width: 100%;
}
.cid-uMZZT15WFW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMZZT15WFW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMZZT15WFW .modal.fade .modal-dialog,
.cid-uMZZT15WFW .modal.in .modal-dialog {
  transform: none;
}
.cid-uMZZT15WFW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMZZT15WFW H6 {
  text-align: center;
}
.cid-uNPWdt8rTH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #05386b;
}
.cid-uNPWdt8rTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNPWdt8rTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNPWdt8rTH .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uNPWdt8rTH .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uNPWdt8rTH .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uNPWdt8rTH .wrapper {
  padding: 30px 0;
}
.cid-uNPWdt8rTH .mbr-section-title {
  color: #fafafa;
}
.cid-uNPWdt8rTH .mbr-text,
.cid-uNPWdt8rTH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uNQ1ZMpJUm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #72b596;
}
.cid-uNQ1ZMpJUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNQ1ZMpJUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNQ1ZMpJUm .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uNQ1ZMpJUm .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uNQ1ZMpJUm .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uNQ1ZMpJUm .wrapper {
  padding: 30px 0;
}
.cid-uNQ1ZMpJUm .mbr-section-title {
  color: #fafafa;
}
.cid-uNQ1ZMpJUm .mbr-text,
.cid-uNQ1ZMpJUm .mbr-section-btn {
  color: #05386b;
}
.cid-uNQ1ZMpJUm H3 {
  color: #ffffff;
}
.cid-uOjNOzI3Mr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjNOzI3Mr .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sFAOw5Fdod {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #05386b;
}
.cid-sFAOw5Fdod img,
.cid-sFAOw5Fdod .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sFAOw5Fdod .item:focus,
.cid-sFAOw5Fdod span:focus {
  outline: none;
}
.cid-sFAOw5Fdod .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFAOw5Fdod .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFAOw5Fdod .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sFAOw5Fdod .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFAOw5Fdod .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sFAOw5Fdod .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sFAOw5Fdod .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFAOw5Fdod .mbr-section-title {
  color: #ffffff;
}
.cid-sFAOw5Fdod .mbr-text,
.cid-sFAOw5Fdod .mbr-section-btn {
  text-align: left;
}
.cid-sFAOw5Fdod .item-title {
  text-align: left;
  color: #05386b;
}
.cid-sFAOw5Fdod .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sFAOw5Fdod .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFAOgbarYq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #72b596;
}
@media (max-width: 767px) {
  .cid-sFAOgbarYq .row {
    flex-direction: column-reverse;
  }
  .cid-sFAOgbarYq .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFAOgbarYq .google-map {
  height: 100%;
  position: relative;
}
.cid-sFAOgbarYq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAOgbarYq .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-sFAOgbarYq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAOgbarYq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFAOgbarYq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFAOgbarYq .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-sFAOgbarYq .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFAOgbarYq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffffff;
}
.cid-sFAOgbarYq .mbr-section-title {
  color: #ffffff;
}
.cid-sFAOgbarYq .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFAOgbarYq .card-title {
  color: #05386b;
}
.cid-sFAOgbarYq P {
  color: #05386b;
}
.cid-uMsXJ9ivWD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #05386b;
}
.cid-uMsXJ9ivWD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMsXJ9ivWD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMsXJ9ivWD .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uMsXJ9ivWD .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uMsXJ9ivWD .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uMsXJ9ivWD .bg-instagram:hover {
  background: #bd005c;
}
.cid-uMsXJ9ivWD .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uMsXJ9ivWD .bg-youtube:hover {
  background: #cc0000;
}
.cid-uMsXJ9ivWD .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uMsXJ9ivWD [class^="socicon-"]:before,
.cid-uMsXJ9ivWD [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uMsXJ9ivWD .mbr-section-title,
.cid-uMsXJ9ivWD .social-list {
  color: #ffffff;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMDVVXHmkr .navbar-dropdown {
  position: relative !important;
}
.cid-uMDVVXHmkr .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-uMDVVXHmkr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMDVVXHmkr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMDVVXHmkr .dropdown-item:hover,
.cid-uMDVVXHmkr .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uMDVVXHmkr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMDVVXHmkr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMDVVXHmkr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMDVVXHmkr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMDVVXHmkr .nav-link {
  position: relative;
}
.cid-uMDVVXHmkr .container {
  display: flex;
  margin: auto;
}
.cid-uMDVVXHmkr .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMDVVXHmkr .dropdown-menu,
.cid-uMDVVXHmkr .navbar.opened {
  background: #72b596 !important;
}
.cid-uMDVVXHmkr .nav-item:focus,
.cid-uMDVVXHmkr .nav-link:focus {
  outline: none;
}
.cid-uMDVVXHmkr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMDVVXHmkr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMDVVXHmkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMDVVXHmkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMDVVXHmkr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMDVVXHmkr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMDVVXHmkr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-uMDVVXHmkr .navbar.opened {
  transition: all 0.3s;
}
.cid-uMDVVXHmkr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMDVVXHmkr .navbar .navbar-logo img {
  width: auto;
}
.cid-uMDVVXHmkr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMDVVXHmkr .navbar.collapsed {
  justify-content: center;
}
.cid-uMDVVXHmkr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMDVVXHmkr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMDVVXHmkr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMDVVXHmkr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMDVVXHmkr .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-uMDVVXHmkr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMDVVXHmkr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMDVVXHmkr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMDVVXHmkr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMDVVXHmkr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMDVVXHmkr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMDVVXHmkr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMDVVXHmkr .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-uMDVVXHmkr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMDVVXHmkr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMDVVXHmkr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMDVVXHmkr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMDVVXHmkr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMDVVXHmkr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMDVVXHmkr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMDVVXHmkr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMDVVXHmkr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMDVVXHmkr .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-uMDVVXHmkr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMDVVXHmkr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMDVVXHmkr .dropdown-item.active,
.cid-uMDVVXHmkr .dropdown-item:active {
  background-color: transparent;
}
.cid-uMDVVXHmkr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMDVVXHmkr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMDVVXHmkr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMDVVXHmkr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-uMDVVXHmkr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMDVVXHmkr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMDVVXHmkr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMDVVXHmkr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMDVVXHmkr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMDVVXHmkr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMDVVXHmkr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMDVVXHmkr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMDVVXHmkr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMDVVXHmkr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMDVVXHmkr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMDVVXHmkr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMDVVXHmkr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMDVVXHmkr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMDVVXHmkr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMDVVXHmkr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMDVVXHmkr .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-uMDVVXHmkr .navbar {
    height: 70px;
  }
  .cid-uMDVVXHmkr .navbar.opened {
    height: auto;
  }
  .cid-uMDVVXHmkr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMDVVYtnjr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/papel-de-parede-geometrico-moderno-com-linhas-redondas-2000x1062.webp");
}
.cid-uMDVVYtnjr .mbr-section-title {
  color: #72b596;
  text-align: center;
}
.cid-uMDVVYtnjr .mbr-text,
.cid-uMDVVYtnjr .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-uOjPfxjVqC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjPfxjVqC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPfxjVqC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOjPfxjVqC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOjPfxjVqC .row {
  flex-direction: row-reverse;
}
.cid-uOjPfxjVqC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOjPfxjVqC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjPfxjVqC .mbr-section-title {
  color: #05386b;
}
.cid-uOjPfxjVqC .mbr-text {
  color: #05386b;
}
.cid-uOjPfxjVqC .mbr-description {
  color: #72b596;
}
.cid-uOjPgIrgyc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjPgIrgyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPgIrgyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOjPgIrgyc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOjPgIrgyc .row {
  flex-direction: row-reverse;
}
.cid-uOjPgIrgyc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOjPgIrgyc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjPgIrgyc .mbr-section-title {
  color: #05386b;
}
.cid-uOjPgIrgyc .mbr-text {
  color: #05386b;
}
.cid-uOjPgIrgyc .mbr-description {
  color: #72b596;
}
.cid-uOjPiG2ESz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjPiG2ESz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPiG2ESz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOjPiG2ESz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOjPiG2ESz .row {
  flex-direction: row-reverse;
}
.cid-uOjPiG2ESz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOjPiG2ESz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjPiG2ESz .mbr-section-title {
  color: #05386b;
}
.cid-uOjPiG2ESz .mbr-text {
  color: #05386b;
}
.cid-uOjPiG2ESz .mbr-description {
  color: #72b596;
}
.cid-uOjPi3DApj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjPi3DApj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPi3DApj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOjPi3DApj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOjPi3DApj .row {
  flex-direction: row-reverse;
}
.cid-uOjPi3DApj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOjPi3DApj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjPi3DApj .mbr-section-title {
  color: #05386b;
}
.cid-uOjPi3DApj .mbr-text {
  color: #05386b;
}
.cid-uOjPi3DApj .mbr-description {
  color: #72b596;
}
.cid-uME9X9bnfd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uME9X9bnfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uME9X9bnfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uME9X9bnfd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uME9X9bnfd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uME9X9bnfd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uMDVW3kjw4 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #72b596;
}
@media (max-width: 767px) {
  .cid-uMDVW3kjw4 .row {
    flex-direction: column-reverse;
  }
  .cid-uMDVW3kjw4 .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMDVW3kjw4 .google-map {
  height: 100%;
  position: relative;
}
.cid-uMDVW3kjw4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMDVW3kjw4 .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-uMDVW3kjw4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMDVW3kjw4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMDVW3kjw4 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMDVW3kjw4 .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-uMDVW3kjw4 .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uMDVW3kjw4 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMDVW3kjw4 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMDVW3kjw4 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffffff;
}
.cid-uMDVW3kjw4 .mbr-section-title {
  color: #ffffff;
}
.cid-uMDVW3kjw4 .mbr-section-subtitle {
  color: #05386b;
}
.cid-uMDVW3kjw4 .card-title {
  color: #05386b;
}
.cid-uMDVW3kjw4 P {
  color: #05386b;
}
.cid-uMDVW5fJRl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #05386b;
}
.cid-uMDVW5fJRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMDVW5fJRl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMDVW5fJRl .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uMDVW5fJRl .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uMDVW5fJRl .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uMDVW5fJRl .bg-instagram:hover {
  background: #bd005c;
}
.cid-uMDVW5fJRl .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uMDVW5fJRl .bg-youtube:hover {
  background: #cc0000;
}
.cid-uMDVW5fJRl .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uMDVW5fJRl [class^="socicon-"]:before,
.cid-uMDVW5fJRl [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uMDVW5fJRl .mbr-section-title,
.cid-uMDVW5fJRl .social-list {
  color: #ffffff;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMEazrGmSx .navbar-dropdown {
  position: relative !important;
}
.cid-uMEazrGmSx .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-uMEazrGmSx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMEazrGmSx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMEazrGmSx .dropdown-item:hover,
.cid-uMEazrGmSx .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uMEazrGmSx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMEazrGmSx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMEazrGmSx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMEazrGmSx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMEazrGmSx .nav-link {
  position: relative;
}
.cid-uMEazrGmSx .container {
  display: flex;
  margin: auto;
}
.cid-uMEazrGmSx .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMEazrGmSx .dropdown-menu,
.cid-uMEazrGmSx .navbar.opened {
  background: #72b596 !important;
}
.cid-uMEazrGmSx .nav-item:focus,
.cid-uMEazrGmSx .nav-link:focus {
  outline: none;
}
.cid-uMEazrGmSx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMEazrGmSx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMEazrGmSx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMEazrGmSx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMEazrGmSx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMEazrGmSx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMEazrGmSx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-uMEazrGmSx .navbar.opened {
  transition: all 0.3s;
}
.cid-uMEazrGmSx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMEazrGmSx .navbar .navbar-logo img {
  width: auto;
}
.cid-uMEazrGmSx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMEazrGmSx .navbar.collapsed {
  justify-content: center;
}
.cid-uMEazrGmSx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMEazrGmSx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMEazrGmSx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMEazrGmSx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMEazrGmSx .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-uMEazrGmSx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMEazrGmSx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMEazrGmSx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMEazrGmSx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMEazrGmSx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMEazrGmSx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMEazrGmSx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMEazrGmSx .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-uMEazrGmSx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMEazrGmSx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMEazrGmSx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMEazrGmSx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMEazrGmSx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMEazrGmSx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMEazrGmSx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMEazrGmSx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMEazrGmSx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMEazrGmSx .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-uMEazrGmSx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMEazrGmSx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMEazrGmSx .dropdown-item.active,
.cid-uMEazrGmSx .dropdown-item:active {
  background-color: transparent;
}
.cid-uMEazrGmSx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMEazrGmSx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMEazrGmSx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMEazrGmSx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-uMEazrGmSx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMEazrGmSx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMEazrGmSx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMEazrGmSx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMEazrGmSx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMEazrGmSx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMEazrGmSx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMEazrGmSx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMEazrGmSx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMEazrGmSx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMEazrGmSx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMEazrGmSx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMEazrGmSx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMEazrGmSx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMEazrGmSx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMEazrGmSx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMEazrGmSx .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-uMEazrGmSx .navbar {
    height: 70px;
  }
  .cid-uMEazrGmSx .navbar.opened {
    height: auto;
  }
  .cid-uMEazrGmSx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMEaztOSc7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMEaztOSc7 .content-wrapper {
  background: #72b596;
}
@media (max-width: 991px) {
  .cid-uMEaztOSc7 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uMEaztOSc7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMEaztOSc7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uMEaztOSc7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMEaztOSc7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uMEaztOSc7 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uMEaztOSc7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMEaztOSc7 .card-title {
  color: #ffffff;
}
.cid-uMEaztOSc7 .mbr-text,
.cid-uMEaztOSc7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uP3OZ7kQlO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP3OZ7kQlO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP3OZ7kQlO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP3OZ7kQlO .mbr-section-title {
  color: #05386b;
}
.cid-uP3OZ7kQlO .mbr-section-subtitle {
  color: #05386b;
}
.cid-uP3QphbKcv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP3QphbKcv .line {
  background-color: #72b596;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uP3QphbKcv .mbr-text {
  color: #05386b;
}
.cid-uP3OEUcYyw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP3OEUcYyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP3OEUcYyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP3OEUcYyw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uP3OEUcYyw .row {
    flex-direction: column-reverse;
  }
  .cid-uP3OEUcYyw .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uP3OEUcYyw .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uP3OEUcYyw .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uP3OEUcYyw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uP3OEUcYyw .card-title {
  color: #05386b;
}
.cid-uP3OEUcYyw .mbr-text,
.cid-uP3OEUcYyw .mbr-section-btn {
  color: #05386b;
}
.cid-uVhlehMD79 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhlehMD79 .card-box {
  padding: 0 2rem;
}
.cid-uVhlehMD79 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uVhlehMD79 .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uVhlehMD79 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-uVhlehMD79 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-uVhlehMD79 .mbr-text {
  color: #05386b;
}
.cid-uVhlehMD79 .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uVhlehMD79 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-uOjWLYJtaH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjWLYJtaH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjWLYJtaH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjWLYJtaH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOjWLYJtaH .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOjWLYJtaH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOjWLYJtaH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOjWLYJtaH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOjWLYJtaH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOjWLYJtaH .carousel-control,
.cid-uOjWLYJtaH .close {
  background: #1b1b1b;
}
.cid-uOjWLYJtaH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOjWLYJtaH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOjWLYJtaH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOjWLYJtaH .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOjWLYJtaH .close {
  position: fixed;
  opacity: 0.5;
  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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOjWLYJtaH .close::before {
  content: '\e91a';
}
.cid-uOjWLYJtaH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOjWLYJtaH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOjWLYJtaH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOjWLYJtaH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOjWLYJtaH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOjWLYJtaH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOjWLYJtaH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOjWLYJtaH .carousel-indicators li.active,
.cid-uOjWLYJtaH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOjWLYJtaH .carousel-indicators li::after,
.cid-uOjWLYJtaH .carousel-indicators li::before {
  content: none;
}
.cid-uOjWLYJtaH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOjWLYJtaH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOjWLYJtaH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOjWLYJtaH .carousel-indicators {
    display: none;
  }
}
.cid-uOjWLYJtaH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOjWLYJtaH .carousel-inner > .active {
  display: block;
}
.cid-uOjWLYJtaH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOjWLYJtaH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOjWLYJtaH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOjWLYJtaH .carousel-control,
  .cid-uOjWLYJtaH .carousel-indicators,
  .cid-uOjWLYJtaH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOjWLYJtaH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOjWLYJtaH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOjWLYJtaH .carousel-indicators .active,
.cid-uOjWLYJtaH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOjWLYJtaH .carousel-indicators .active {
  background: #fff;
}
.cid-uOjWLYJtaH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOjWLYJtaH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOjWLYJtaH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOjWLYJtaH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOjWLYJtaH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOjWLYJtaH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOjWLYJtaH .carousel {
  width: 100%;
}
.cid-uOjWLYJtaH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOjWLYJtaH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOjWLYJtaH .modal.fade .modal-dialog,
.cid-uOjWLYJtaH .modal.in .modal-dialog {
  transform: none;
}
.cid-uOjWLYJtaH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOjWLYJtaH H6 {
  text-align: center;
}
.cid-uVhkyi97lG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhkyi97lG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhkyi97lG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhkyi97lG .mbr-section-title {
  color: #ffffff;
}
.cid-uVhjlxTLCG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhjlxTLCG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uVhjlxTLCG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVhjlxTLCG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVhjlxTLCG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uVhjlxTLCG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uVhjlxTLCG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uVhjlxTLCG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uVhjlxTLCG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uVhjlxTLCG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uVhiX8kqlK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhiX8kqlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhiX8kqlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhiX8kqlK .mbr-section-title {
  color: #ffffff;
}
.cid-uVhidghVBY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhidghVBY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uVhidghVBY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVhidghVBY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVhidghVBY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uVhidghVBY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uVhidghVBY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uVhidghVBY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uVhidghVBY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uVhidghVBY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uMEazxf2VZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #05386b;
}
@media (max-width: 767px) {
  .cid-uMEazxf2VZ .row {
    flex-direction: column-reverse;
  }
  .cid-uMEazxf2VZ .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMEazxf2VZ .google-map {
  height: 100%;
  position: relative;
}
.cid-uMEazxf2VZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMEazxf2VZ .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-uMEazxf2VZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMEazxf2VZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMEazxf2VZ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMEazxf2VZ .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uMEazxf2VZ .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uMEazxf2VZ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMEazxf2VZ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMEazxf2VZ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffffff;
}
.cid-uMEazxf2VZ .mbr-section-title {
  color: #ffffff;
}
.cid-uMEazxf2VZ .mbr-section-subtitle {
  color: #05386b;
}
.cid-uMEazxf2VZ .card-title {
  color: #05386b;
}
.cid-uMEazxf2VZ P {
  color: #05386b;
}
.cid-uMEazyByEO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMEazyByEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMEazyByEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMEazyByEO .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uMEazyByEO .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uMEazyByEO .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uMEazyByEO .bg-instagram:hover {
  background: #bd005c;
}
.cid-uMEazyByEO .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uMEazyByEO .bg-youtube:hover {
  background: #cc0000;
}
.cid-uMEazyByEO .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uMEazyByEO [class^="socicon-"]:before,
.cid-uMEazyByEO [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #72b596 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMt5nUElLU {
  display: flex;
  background-image: url("../../../assets/images/fundo-hexadecimal-para-redes-2000x3333.webp");
}
.cid-uMt5nUElLU .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uMt5nUElLU .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uMt5nUElLU {
    align-items: flex-end;
  }
  .cid-uMt5nUElLU .row {
    justify-content: flex-start;
  }
  .cid-uMt5nUElLU .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMt5nUElLU .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uMt5nUElLU {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uMt5nUElLU .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uMt5nUElLU .content-wrap {
    width: 100%;
  }
}
.cid-uMt5nUElLU .mbr-section-title {
  color: #05386b;
}
.cid-uMt5nUElLU .mbr-text,
.cid-uMt5nUElLU .mbr-section-btn {
  color: #72b596;
}
.cid-uVhrWzUyW9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVhrWzUyW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhrWzUyW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhrGCPhN6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uVhrGCPhN6 .mbr-text {
  text-align: center;
}
.cid-uVhHFtMwii {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #05386b;
}
.cid-uVhHFtMwii img,
.cid-uVhHFtMwii .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uVhHFtMwii .item:focus,
.cid-uVhHFtMwii span:focus {
  outline: none;
}
.cid-uVhHFtMwii .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVhHFtMwii .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVhHFtMwii .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uVhHFtMwii .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVhHFtMwii .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uVhHFtMwii .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uVhHFtMwii .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVhHFtMwii .mbr-section-title {
  color: #ffffff;
}
.cid-uVhHFtMwii .mbr-text,
.cid-uVhHFtMwii .mbr-section-btn {
  text-align: left;
}
.cid-uVhHFtMwii .item-title {
  text-align: left;
  color: #05386b;
}
.cid-uVhHFtMwii .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uVhHFtMwii .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uMEdw6ucpD .navbar-dropdown {
  position: relative !important;
}
.cid-uMEdw6ucpD .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-uMEdw6ucpD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMEdw6ucpD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMEdw6ucpD .dropdown-item:hover,
.cid-uMEdw6ucpD .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uMEdw6ucpD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMEdw6ucpD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMEdw6ucpD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMEdw6ucpD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMEdw6ucpD .nav-link {
  position: relative;
}
.cid-uMEdw6ucpD .container {
  display: flex;
  margin: auto;
}
.cid-uMEdw6ucpD .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMEdw6ucpD .dropdown-menu,
.cid-uMEdw6ucpD .navbar.opened {
  background: #72b596 !important;
}
.cid-uMEdw6ucpD .nav-item:focus,
.cid-uMEdw6ucpD .nav-link:focus {
  outline: none;
}
.cid-uMEdw6ucpD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMEdw6ucpD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMEdw6ucpD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMEdw6ucpD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMEdw6ucpD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMEdw6ucpD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMEdw6ucpD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-uMEdw6ucpD .navbar.opened {
  transition: all 0.3s;
}
.cid-uMEdw6ucpD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMEdw6ucpD .navbar .navbar-logo img {
  width: auto;
}
.cid-uMEdw6ucpD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMEdw6ucpD .navbar.collapsed {
  justify-content: center;
}
.cid-uMEdw6ucpD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMEdw6ucpD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMEdw6ucpD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMEdw6ucpD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMEdw6ucpD .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-uMEdw6ucpD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMEdw6ucpD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMEdw6ucpD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMEdw6ucpD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMEdw6ucpD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMEdw6ucpD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMEdw6ucpD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMEdw6ucpD .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-uMEdw6ucpD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMEdw6ucpD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMEdw6ucpD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMEdw6ucpD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMEdw6ucpD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMEdw6ucpD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMEdw6ucpD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMEdw6ucpD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMEdw6ucpD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMEdw6ucpD .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-uMEdw6ucpD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMEdw6ucpD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMEdw6ucpD .dropdown-item.active,
.cid-uMEdw6ucpD .dropdown-item:active {
  background-color: transparent;
}
.cid-uMEdw6ucpD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMEdw6ucpD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMEdw6ucpD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMEdw6ucpD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-uMEdw6ucpD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMEdw6ucpD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMEdw6ucpD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMEdw6ucpD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMEdw6ucpD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMEdw6ucpD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uMEdw6ucpD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMEdw6ucpD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMEdw6ucpD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMEdw6ucpD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMEdw6ucpD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMEdw6ucpD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMEdw6ucpD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMEdw6ucpD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMEdw6ucpD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMEdw6ucpD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMEdw6ucpD .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-uMEdw6ucpD .navbar {
    height: 70px;
  }
  .cid-uMEdw6ucpD .navbar.opened {
    height: auto;
  }
  .cid-uMEdw6ucpD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMEdw788nH {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/papel-de-parede-geometrico-moderno-com-linhas-redondas-2000x1062.webp");
}
.cid-uMEdw788nH .mbr-section-title {
  color: #72b596;
  text-align: center;
}
.cid-uMEdw788nH .mbr-text,
.cid-uMEdw788nH .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-uMEdwbQS3x {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #05386b;
}
@media (max-width: 767px) {
  .cid-uMEdwbQS3x .row {
    flex-direction: column-reverse;
  }
  .cid-uMEdwbQS3x .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMEdwbQS3x .google-map {
  height: 100%;
  position: relative;
}
.cid-uMEdwbQS3x .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMEdwbQS3x .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-uMEdwbQS3x .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMEdwbQS3x .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMEdwbQS3x .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMEdwbQS3x .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uMEdwbQS3x .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uMEdwbQS3x .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMEdwbQS3x .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMEdwbQS3x .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffffff;
}
.cid-uMEdwbQS3x .mbr-section-title {
  color: #ffffff;
}
.cid-uMEdwbQS3x .mbr-section-subtitle {
  color: #05386b;
}
.cid-uMEdwbQS3x .card-title {
  color: #05386b;
}
.cid-uMEdwbQS3x P {
  color: #05386b;
}
.cid-uMEdMQlwkp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #72b596;
}
.cid-uMEdMQlwkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMEdMQlwkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMEdMQlwkp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uMEdMQlwkp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uMEdMQlwkp .embla__button--next,
.cid-uMEdMQlwkp .embla__button--prev {
  display: flex;
}
.cid-uMEdMQlwkp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMEdMQlwkp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uMEdMQlwkp .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uMEdMQlwkp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMEdMQlwkp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uMEdMQlwkp .embla__button {
    top: auto;
  }
}
.cid-uMEdMQlwkp .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uMEdMQlwkp .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uMEdMQlwkp .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uMEdMQlwkp .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uMEdMQlwkp .embla {
  position: relative;
  width: 100%;
}
.cid-uMEdMQlwkp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uMEdMQlwkp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uMEdMQlwkp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uMEdMQlwkp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uMEdMQlwkp .user_text {
  color: #ffffff;
}
.cid-uMEdMQlwkp H3 {
  color: #ffffff;
}
.cid-uMEdMQlwkp .user_name {
  color: #ffffff;
}
.cid-uMEdMQlwkp .user_desk {
  color: #ffffff;
}
.cid-uMEdwcM75d {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #05386b;
}
.cid-uMEdwcM75d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMEdwcM75d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMEdwcM75d .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uMEdwcM75d .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uMEdwcM75d .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uMEdwcM75d .bg-instagram:hover {
  background: #bd005c;
}
.cid-uMEdwcM75d .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uMEdwcM75d .bg-youtube:hover {
  background: #cc0000;
}
.cid-uMEdwcM75d .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uMEdwcM75d [class^="socicon-"]:before,
.cid-uMEdwcM75d [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uMEdwcM75d .mbr-section-title,
.cid-uMEdwcM75d .social-list {
  color: #ffffff;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #72b596 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMt65DgnkB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #72b596;
}
.cid-uMt65DgnkB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMt65DgnkB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMt65DgnkB .mbr-text,
.cid-uMt65DgnkB .mbr-section-btn {
  color: #232323;
}
.cid-uMt65DgnkB .card-title,
.cid-uMt65DgnkB .card-box {
  color: #ffffff;
}
.cid-uMt65DgnkB .mbr-text,
.cid-uMt65DgnkB .link-wrap {
  color: #ffffff;
}
.cid-uMt65DgnkB .card-box .mbr-text,
.cid-uMt65DgnkB .mbr-section-btn {
  color: #05386b;
}
.cid-uSoSItp9Z4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSoSItp9Z4 .mbr-text {
  text-align: center;
}
.cid-uSoSItp9Z4 .mbr-section-subtitle {
  text-align: center;
}
.cid-uVht4IMntM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVht4IMntM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVht4IMntM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVht4IMntM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVht4IMntM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVht4IMntM .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSoT5nl1Tg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSoT5nl1Tg .mbr-text {
  text-align: left;
}
.cid-uSoTMI3ewv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSoTMI3ewv .line {
  background-color: #05386b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSoTsGKrqs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSoTsGKrqs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSoTsGKrqs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSoTsGKrqs ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSoTsGKrqs li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSoTsGKrqs ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSp1nbznR8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSp1nbznR8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSp1nbznR8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSp1nbznR8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSp1nbznR8 .row {
    flex-direction: column-reverse;
  }
  .cid-uSp1nbznR8 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSp1nbznR8 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSp1nbznR8 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSp1nbznR8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uSoUASDmCp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uSoUASDmCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSoUASDmCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSoUASDmCp .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uSoUASDmCp .currentcost {
  color: #232323;
}
.cid-uSoUASDmCp .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uSoUASDmCp .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uSoUASDmCp .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSoUASDmCp .text-box {
    padding: 1rem;
  }
}
.cid-uSoUASDmCp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMEfx3myiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uMEfx3myiB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMEfx3myiB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMEfx3myiB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMEfx3myiB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uMEfx3myiB .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMEfx3myiB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMEfx3myiB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMEfx3myiB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMEfx3myiB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMEfx3myiB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMEfx3myiB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMEfx3myiB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uVhvfXJxdk .navbar-dropdown {
  position: relative !important;
}
.cid-uVhvfXJxdk .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-uVhvfXJxdk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVhvfXJxdk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVhvfXJxdk .dropdown-item:hover,
.cid-uVhvfXJxdk .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uVhvfXJxdk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVhvfXJxdk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVhvfXJxdk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVhvfXJxdk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVhvfXJxdk .nav-link {
  position: relative;
}
.cid-uVhvfXJxdk .container {
  display: flex;
  margin: auto;
}
.cid-uVhvfXJxdk .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVhvfXJxdk .dropdown-menu,
.cid-uVhvfXJxdk .navbar.opened {
  background: #72b596 !important;
}
.cid-uVhvfXJxdk .nav-item:focus,
.cid-uVhvfXJxdk .nav-link:focus {
  outline: none;
}
.cid-uVhvfXJxdk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVhvfXJxdk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVhvfXJxdk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVhvfXJxdk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVhvfXJxdk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVhvfXJxdk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVhvfXJxdk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-uVhvfXJxdk .navbar.opened {
  transition: all 0.3s;
}
.cid-uVhvfXJxdk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVhvfXJxdk .navbar .navbar-logo img {
  width: auto;
}
.cid-uVhvfXJxdk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVhvfXJxdk .navbar.collapsed {
  justify-content: center;
}
.cid-uVhvfXJxdk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVhvfXJxdk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uVhvfXJxdk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVhvfXJxdk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVhvfXJxdk .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-uVhvfXJxdk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVhvfXJxdk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVhvfXJxdk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVhvfXJxdk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVhvfXJxdk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVhvfXJxdk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVhvfXJxdk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVhvfXJxdk .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-uVhvfXJxdk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVhvfXJxdk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVhvfXJxdk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVhvfXJxdk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVhvfXJxdk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVhvfXJxdk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uVhvfXJxdk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVhvfXJxdk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVhvfXJxdk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVhvfXJxdk .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-uVhvfXJxdk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVhvfXJxdk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVhvfXJxdk .dropdown-item.active,
.cid-uVhvfXJxdk .dropdown-item:active {
  background-color: transparent;
}
.cid-uVhvfXJxdk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVhvfXJxdk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVhvfXJxdk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVhvfXJxdk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-uVhvfXJxdk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVhvfXJxdk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVhvfXJxdk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVhvfXJxdk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVhvfXJxdk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVhvfXJxdk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uVhvfXJxdk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVhvfXJxdk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVhvfXJxdk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVhvfXJxdk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVhvfXJxdk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVhvfXJxdk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVhvfXJxdk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVhvfXJxdk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVhvfXJxdk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uVhvfXJxdk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVhvfXJxdk .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-uVhvfXJxdk .navbar {
    height: 70px;
  }
  .cid-uVhvfXJxdk .navbar.opened {
    height: auto;
  }
  .cid-uVhvfXJxdk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVhvfYeA6e {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhvfYeA6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhvfYeA6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhvfYeA6e .mbr-text,
.cid-uVhvfYeA6e .mbr-section-btn {
  color: #232323;
}
.cid-uVhvfYeA6e .card-title,
.cid-uVhvfYeA6e .card-box {
  color: #ffffff;
}
.cid-uVhvfYeA6e .mbr-text,
.cid-uVhvfYeA6e .link-wrap {
  color: #ffffff;
}
.cid-uVhvfYeA6e .card-box .mbr-text,
.cid-uVhvfYeA6e .mbr-section-btn {
  color: #72b596;
}
.cid-uVhvfYPLc9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVhvfYPLc9 .mbr-text {
  text-align: center;
}
.cid-uVhvfYPLc9 .mbr-section-subtitle {
  text-align: center;
}
.cid-uVhvfZgR8h {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhvfZgR8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhvfZgR8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhvfZgR8h .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhvfZgR8h .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhvfZgR8h .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhvg03H2b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVhvg03H2b .mbr-text {
  text-align: left;
}
.cid-uVhx2iGVD4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVhx2iGVD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhx2iGVD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhx2iGVD4 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uVhx2iGVD4 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uVhx2iGVD4 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uVhx2iGVD4 H3 {
  color: #05386b;
}
.cid-uVhy7C9wPc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uVhvg0t1Iu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhvg0t1Iu .line {
  background-color: #05386b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uVhvg0t1Iu .mbr-text {
  color: #ffffff;
}
.cid-uVhvg0RGmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVhvg0RGmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhvg0RGmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhvg0RGmB ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uVhvg0RGmB li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uVhvg0RGmB ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uVhvg1NxYl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uVhvg1NxYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhvg1NxYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhvg1NxYl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uVhvg1NxYl .row {
    flex-direction: column-reverse;
  }
  .cid-uVhvg1NxYl .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uVhvg1NxYl .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uVhvg1NxYl .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uVhvg1NxYl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uVhvg2sD7R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uVhvg2sD7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhvg2sD7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhvg2sD7R .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uVhvg2sD7R .currentcost {
  color: #232323;
}
.cid-uVhvg2sD7R .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uVhvg2sD7R .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uVhvg2sD7R .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uVhvg2sD7R .text-box {
    padding: 1rem;
  }
}
.cid-uVhvg2sD7R .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uVhvg3iKvV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uVhvg3iKvV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uVhvg3iKvV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uVhvg3iKvV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uVhvg3iKvV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uVhvg3iKvV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uVhvg3iKvV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uVhvg3iKvV .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uVhvg3iKvV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uVhvg3iKvV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVhvg3iKvV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uVhvg3iKvV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVhvg3iKvV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVhvg3iKvV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uVhvg3iKvV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uVhBUgteM9 .navbar-dropdown {
  position: relative !important;
}
.cid-uVhBUgteM9 .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-uVhBUgteM9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVhBUgteM9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVhBUgteM9 .dropdown-item:hover,
.cid-uVhBUgteM9 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uVhBUgteM9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVhBUgteM9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVhBUgteM9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVhBUgteM9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVhBUgteM9 .nav-link {
  position: relative;
}
.cid-uVhBUgteM9 .container {
  display: flex;
  margin: auto;
}
.cid-uVhBUgteM9 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVhBUgteM9 .dropdown-menu,
.cid-uVhBUgteM9 .navbar.opened {
  background: #72b596 !important;
}
.cid-uVhBUgteM9 .nav-item:focus,
.cid-uVhBUgteM9 .nav-link:focus {
  outline: none;
}
.cid-uVhBUgteM9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVhBUgteM9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVhBUgteM9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVhBUgteM9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVhBUgteM9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVhBUgteM9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVhBUgteM9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #72b596;
}
.cid-uVhBUgteM9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uVhBUgteM9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVhBUgteM9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uVhBUgteM9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVhBUgteM9 .navbar.collapsed {
  justify-content: center;
}
.cid-uVhBUgteM9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVhBUgteM9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uVhBUgteM9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVhBUgteM9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVhBUgteM9 .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-uVhBUgteM9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVhBUgteM9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVhBUgteM9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVhBUgteM9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVhBUgteM9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVhBUgteM9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVhBUgteM9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVhBUgteM9 .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-uVhBUgteM9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVhBUgteM9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVhBUgteM9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVhBUgteM9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVhBUgteM9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVhBUgteM9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uVhBUgteM9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVhBUgteM9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVhBUgteM9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVhBUgteM9 .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-uVhBUgteM9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVhBUgteM9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVhBUgteM9 .dropdown-item.active,
.cid-uVhBUgteM9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uVhBUgteM9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVhBUgteM9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVhBUgteM9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVhBUgteM9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #72b596;
}
.cid-uVhBUgteM9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVhBUgteM9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVhBUgteM9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVhBUgteM9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVhBUgteM9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVhBUgteM9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uVhBUgteM9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVhBUgteM9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVhBUgteM9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVhBUgteM9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVhBUgteM9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVhBUgteM9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVhBUgteM9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVhBUgteM9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVhBUgteM9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uVhBUgteM9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVhBUgteM9 .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-uVhBUgteM9 .navbar {
    height: 70px;
  }
  .cid-uVhBUgteM9 .navbar.opened {
    height: auto;
  }
  .cid-uVhBUgteM9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVhBUhok6F {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhBUhok6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhBUhok6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhBUhok6F .mbr-text,
.cid-uVhBUhok6F .mbr-section-btn {
  color: #232323;
}
.cid-uVhBUhok6F .card-title,
.cid-uVhBUhok6F .card-box {
  color: #ffffff;
}
.cid-uVhBUhok6F .mbr-text,
.cid-uVhBUhok6F .link-wrap {
  color: #ffffff;
}
.cid-uVhBUhok6F .card-box .mbr-text,
.cid-uVhBUhok6F .mbr-section-btn {
  color: #72b596;
}
.cid-uVhBUiamaQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVhBUiamaQ .mbr-text {
  text-align: left;
}
.cid-uVhBUiamaQ .mbr-section-subtitle {
  text-align: center;
}
.cid-uVhBUiP8WQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhBUiP8WQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhBUiP8WQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhBUiP8WQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhBUiP8WQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhBUiP8WQ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhD2BXU9g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhD2BXU9g .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uVhD2BXU9g .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uVhD2BXU9g .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uVhD2BXU9g .mbr-figure,
  .cid-uVhD2BXU9g img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uVhDReWFPR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhDReWFPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhDReWFPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhDReWFPR .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhDReWFPR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhDReWFPR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhEIfk1cd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhEIfk1cd .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uVhEIfk1cd .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uVhEIfk1cd .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uVhEIfk1cd .mbr-figure,
  .cid-uVhEIfk1cd img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uVhEJ0DjND {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhEJ0DjND .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhEJ0DjND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhEJ0DjND .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhEJ0DjND .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhEJ0DjND .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhEJFHtD3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhEJFHtD3 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uVhEJFHtD3 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uVhEJFHtD3 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uVhEJFHtD3 .mbr-figure,
  .cid-uVhEJFHtD3 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uVhEKnMvaL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhEKnMvaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhEKnMvaL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhEKnMvaL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhEKnMvaL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhEKnMvaL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhEKYTEGP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhEKYTEGP .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uVhEKYTEGP .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uVhEKYTEGP .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uVhEKYTEGP .mbr-figure,
  .cid-uVhEKYTEGP img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uVhELzRcFK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVhELzRcFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhELzRcFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVhELzRcFK .text-wrapper {
    padding: 2rem;
  }
}
.cid-uVhELzRcFK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uVhELzRcFK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVhEMbNixV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVhEMbNixV .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uVhEMbNixV .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uVhEMbNixV .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uVhEMbNixV .mbr-figure,
  .cid-uVhEMbNixV img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uVhHf5duQM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVhBUlWTNP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #05386b;
}
.cid-uVhBUlWTNP .line {
  background-color: #05386b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uVhBUlWTNP .mbr-text {
  color: #ffffff;
}
.cid-uVhBUmp8uM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVhBUmp8uM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhBUmp8uM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhBUmp8uM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uVhBUmp8uM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uVhBUmp8uM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uVhBUnn7WP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uVhBUnn7WP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhBUnn7WP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhBUnn7WP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uVhBUnn7WP .row {
    flex-direction: column-reverse;
  }
  .cid-uVhBUnn7WP .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uVhBUnn7WP .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uVhBUnn7WP .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uVhBUnn7WP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uVhBUobFlb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uVhBUobFlb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVhBUobFlb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVhBUobFlb .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uVhBUobFlb .currentcost {
  color: #232323;
}
.cid-uVhBUobFlb .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uVhBUobFlb .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uVhBUobFlb .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uVhBUobFlb .text-box {
    padding: 1rem;
  }
}
.cid-uVhBUobFlb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uVhBUpjLuQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-uVhBUpjLuQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uVhBUpjLuQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uVhBUpjLuQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uVhBUpjLuQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uVhBUpjLuQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uVhBUpjLuQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uVhBUpjLuQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uVhBUpjLuQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uVhBUpjLuQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVhBUpjLuQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uVhBUpjLuQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVhBUpjLuQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uVhBUpjLuQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uVhBUpjLuQ .media-container-row .row-copirayt p {
  width: 100%;
}
