body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.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: 'Jost', 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: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #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: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: transparent!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: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', 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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #6592e6;
}
/* 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: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %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-t2lx4bWN1I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t2lx4bWN1I nav.navbar {
  position: fixed;
}
.cid-t2lx4bWN1I .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-t2lx4bWN1I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t2lx4bWN1I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2lx4bWN1I .dropdown-item:hover,
.cid-t2lx4bWN1I .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t2lx4bWN1I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t2lx4bWN1I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t2lx4bWN1I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t2lx4bWN1I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2lx4bWN1I .nav-link {
  position: relative;
}
.cid-t2lx4bWN1I .container {
  display: flex;
  margin: auto;
}
.cid-t2lx4bWN1I .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t2lx4bWN1I .dropdown-menu,
.cid-t2lx4bWN1I .navbar.opened {
  background: #ffffff !important;
}
.cid-t2lx4bWN1I .nav-item:focus,
.cid-t2lx4bWN1I .nav-link:focus {
  outline: none;
}
.cid-t2lx4bWN1I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2lx4bWN1I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2lx4bWN1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t2lx4bWN1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2lx4bWN1I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2lx4bWN1I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2lx4bWN1I .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t2lx4bWN1I .navbar.opened {
  transition: all .3s;
}
.cid-t2lx4bWN1I .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t2lx4bWN1I .navbar .navbar-logo img {
  width: auto;
}
.cid-t2lx4bWN1I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2lx4bWN1I .navbar.collapsed {
  justify-content: center;
}
.cid-t2lx4bWN1I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2lx4bWN1I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2lx4bWN1I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t2lx4bWN1I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2lx4bWN1I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2lx4bWN1I .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-t2lx4bWN1I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2lx4bWN1I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t2lx4bWN1I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t2lx4bWN1I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2lx4bWN1I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2lx4bWN1I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2lx4bWN1I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2lx4bWN1I .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-t2lx4bWN1I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2lx4bWN1I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2lx4bWN1I .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2lx4bWN1I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2lx4bWN1I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2lx4bWN1I .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t2lx4bWN1I .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2lx4bWN1I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2lx4bWN1I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2lx4bWN1I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2lx4bWN1I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2lx4bWN1I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2lx4bWN1I .dropdown-item.active,
.cid-t2lx4bWN1I .dropdown-item:active {
  background-color: transparent;
}
.cid-t2lx4bWN1I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2lx4bWN1I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2lx4bWN1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2lx4bWN1I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t2lx4bWN1I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2lx4bWN1I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2lx4bWN1I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2lx4bWN1I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2lx4bWN1I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t2lx4bWN1I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2lx4bWN1I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2lx4bWN1I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2lx4bWN1I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2lx4bWN1I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2lx4bWN1I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2lx4bWN1I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2lx4bWN1I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2lx4bWN1I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2lx4bWN1I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2lx4bWN1I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2lx4bWN1I .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-t2lx4bWN1I .navbar {
    height: 70px;
  }
  .cid-t2lx4bWN1I .navbar.opened {
    height: auto;
  }
  .cid-t2lx4bWN1I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2lx6fRupu {
  background-image: url("../../../assets/images/globe-1849404.jpg");
}
@media (max-width: 991px) {
  .cid-t2lx6fRupu .mbr-section-title,
  .cid-t2lx6fRupu .mbr-section-subtitle,
  .cid-t2lx6fRupu .mbr-section-btn,
  .cid-t2lx6fRupu .mbr-text {
    text-align: center;
  }
}
.cid-t2lx6fRupu .mbr-section-title {
  color: #ffffff;
}
.cid-t2lx6fRupu .mbr-text,
.cid-t2lx6fRupu .mbr-section-btn {
  color: #ffffff;
}
.cid-tTNnMrvhli {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTNnMrvhli img,
.cid-tTNnMrvhli .item-img {
  width: 100%;
}
.cid-tTNnMrvhli .item:focus,
.cid-tTNnMrvhli span:focus {
  outline: none;
}
.cid-tTNnMrvhli .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTNnMrvhli .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTNnMrvhli .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTNnMrvhli .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTNnMrvhli .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTNnMrvhli .mbr-section-title {
  color: #232323;
}
.cid-tTNnMrvhli .mbr-text,
.cid-tTNnMrvhli .mbr-section-btn {
  text-align: left;
}
.cid-tTNnMrvhli .item-title {
  text-align: left;
}
.cid-tTNnMrvhli .item-subtitle {
  text-align: center;
}
.cid-tTNv3LCFkA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTNv3LCFkA img,
.cid-tTNv3LCFkA .item-img {
  width: 100%;
}
.cid-tTNv3LCFkA .item:focus,
.cid-tTNv3LCFkA span:focus {
  outline: none;
}
.cid-tTNv3LCFkA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTNv3LCFkA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTNv3LCFkA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTNv3LCFkA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTNv3LCFkA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTNv3LCFkA .mbr-section-title {
  color: #232323;
}
.cid-tTNv3LCFkA .mbr-text,
.cid-tTNv3LCFkA .mbr-section-btn {
  text-align: left;
}
.cid-tTNv3LCFkA .item-title {
  text-align: left;
}
.cid-tTNv3LCFkA .item-subtitle {
  text-align: center;
}
.cid-t2lM27Q6ct {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #d9e0e8;
}
.cid-t2lM27Q6ct img,
.cid-t2lM27Q6ct .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t2lM27Q6ct .item:focus,
.cid-t2lM27Q6ct span:focus {
  outline: none;
}
.cid-t2lM27Q6ct .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t2lM27Q6ct .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fa6cb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t2lM27Q6ct .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t2lM27Q6ct .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2lM27Q6ct .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t2lM27Q6ct .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t2lM27Q6ct .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t2lM27Q6ct .mbr-section-title {
  color: #232323;
}
.cid-t2lM27Q6ct .mbr-text,
.cid-t2lM27Q6ct .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-t2lM27Q6ct .item-title {
  text-align: left;
  color: #000000;
}
.cid-t2lM27Q6ct .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tTJckYSNPJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tTJckYSNPJ .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tTJcnFJp1S {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-t2mx1xdzwH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t2mx1xdzwH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t2mx1xdzwH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2mx1xdzwH .list {
    margin-bottom: 0rem;
  }
}
.cid-t3dIEPbZiX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3dIEPbZiX nav.navbar {
  position: fixed;
}
.cid-t3dIEPbZiX .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-t3dIEPbZiX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3dIEPbZiX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3dIEPbZiX .dropdown-item:hover,
.cid-t3dIEPbZiX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t3dIEPbZiX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3dIEPbZiX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3dIEPbZiX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3dIEPbZiX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3dIEPbZiX .nav-link {
  position: relative;
}
.cid-t3dIEPbZiX .container {
  display: flex;
  margin: auto;
}
.cid-t3dIEPbZiX .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3dIEPbZiX .dropdown-menu,
.cid-t3dIEPbZiX .navbar.opened {
  background: #ffffff !important;
}
.cid-t3dIEPbZiX .nav-item:focus,
.cid-t3dIEPbZiX .nav-link:focus {
  outline: none;
}
.cid-t3dIEPbZiX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3dIEPbZiX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3dIEPbZiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t3dIEPbZiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3dIEPbZiX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3dIEPbZiX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3dIEPbZiX .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3dIEPbZiX .navbar.opened {
  transition: all .3s;
}
.cid-t3dIEPbZiX .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3dIEPbZiX .navbar .navbar-logo img {
  width: auto;
}
.cid-t3dIEPbZiX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3dIEPbZiX .navbar.collapsed {
  justify-content: center;
}
.cid-t3dIEPbZiX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3dIEPbZiX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3dIEPbZiX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t3dIEPbZiX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3dIEPbZiX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3dIEPbZiX .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-t3dIEPbZiX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3dIEPbZiX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3dIEPbZiX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3dIEPbZiX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3dIEPbZiX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3dIEPbZiX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3dIEPbZiX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3dIEPbZiX .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-t3dIEPbZiX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3dIEPbZiX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3dIEPbZiX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3dIEPbZiX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3dIEPbZiX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3dIEPbZiX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3dIEPbZiX .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3dIEPbZiX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3dIEPbZiX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3dIEPbZiX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3dIEPbZiX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3dIEPbZiX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3dIEPbZiX .dropdown-item.active,
.cid-t3dIEPbZiX .dropdown-item:active {
  background-color: transparent;
}
.cid-t3dIEPbZiX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3dIEPbZiX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3dIEPbZiX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3dIEPbZiX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3dIEPbZiX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3dIEPbZiX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3dIEPbZiX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3dIEPbZiX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3dIEPbZiX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3dIEPbZiX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3dIEPbZiX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3dIEPbZiX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3dIEPbZiX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3dIEPbZiX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3dIEPbZiX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3dIEPbZiX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3dIEPbZiX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3dIEPbZiX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3dIEPbZiX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3dIEPbZiX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3dIEPbZiX .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-t3dIEPbZiX .navbar {
    height: 70px;
  }
  .cid-t3dIEPbZiX .navbar.opened {
    height: auto;
  }
  .cid-t3dIEPbZiX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3dIRetgSX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/biografia-103.jpg");
}
.cid-t3dIRetgSX .mbr-section-title {
  color: #ffffff;
}
.cid-t3dIRetgSX .mbr-text,
.cid-t3dIRetgSX .mbr-section-btn {
  color: #ffffff;
}
.cid-t3Tb3KnvDA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3Tb3KnvDA .mbr-section-title {
  color: #ffffff;
}
.cid-t3TbtZTF6a {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3TbtZTF6a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3TbtZTF6a img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3TbtZTF6a .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3TbtZTF6a .mbr-text {
  text-align: left;
}
.cid-t3TbXWvfNp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efe8e8;
}
.cid-t3TbXWvfNp .mbr-text {
  text-align: left;
}
.cid-t3TiAT0LuH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3TiAT0LuH .mbr-section-title {
  color: #ffffff;
}
.cid-t3TisaW8KK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3TisaW8KK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3TisaW8KK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3TisaW8KK .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3TisaW8KK .mbr-text {
  text-align: left;
}
.cid-t3TctHrRV5 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #efe8e8;
}
.cid-t3TjcQGUOR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3TjcQGUOR .mbr-section-title {
  color: #ffffff;
}
.cid-t3Tj9rPl7d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3Tj9rPl7d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3Tj9rPl7d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3Tj9rPl7d .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3Tj9rPl7d .mbr-text {
  text-align: left;
}
.cid-t3TeBdWtzc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #efe8e8;
}
.cid-t3TI2MZUGi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3TI2MZUGi .mbr-section-title {
  color: #ffffff;
}
.cid-t3TI4cvtN1 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3TI4cvtN1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3TI4cvtN1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3TI4cvtN1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3TI4cvtN1 .mbr-text {
  text-align: left;
}
.cid-tTJi4NlR77 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-tTJi4NlR77 .mbr-section-title {
  color: #ffffff;
}
.cid-t3TCEglACn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efe8e8;
}
.cid-t3TCEglACn .video-wrapper iframe {
  width: 100%;
}
.cid-t3TCEglACn .mbr-section-title,
.cid-t3TCEglACn .mbr-section-subtitle,
.cid-t3TCEglACn .mbr-text {
  text-align: center;
}
.cid-t3TCEglACn .mbr-section-title {
  color: #000000;
}
.cid-t3TCEglACn .mbr-section-subtitle {
  color: #000000;
}
.cid-t3TzYsVYiw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efe8e8;
}
.cid-t3TzYsVYiw .video-wrapper iframe {
  width: 100%;
}
.cid-t3TzYsVYiw .mbr-section-title,
.cid-t3TzYsVYiw .mbr-section-subtitle,
.cid-t3TzYsVYiw .mbr-text {
  text-align: center;
}
.cid-t3TzYsVYiw .mbr-section-title {
  color: #000000;
}
.cid-t3TzYsVYiw .mbr-section-subtitle {
  color: #000000;
}
.cid-t3TBirnYdn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3TBirnYdn .mbr-section-title {
  color: #ffffff;
}
.cid-t3TC1TJ6j2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efe8e8;
}
.cid-t3TC1TJ6j2 .video-wrapper iframe {
  width: 100%;
}
.cid-t3TC1TJ6j2 .mbr-section-title,
.cid-t3TC1TJ6j2 .mbr-section-subtitle,
.cid-t3TC1TJ6j2 .mbr-text {
  text-align: center;
}
.cid-t3TC1TJ6j2 .mbr-section-title {
  color: #000000;
}
.cid-t3TC1TJ6j2 .mbr-section-subtitle {
  color: #000000;
}
.cid-t3Tm3SVlOj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3Tm3SVlOj .mbr-section-title {
  color: #ffffff;
}
.cid-t3Tm4QnS6g {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3Tm4QnS6g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3Tm4QnS6g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3Tm4QnS6g .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3Tm4QnS6g .mbr-text {
  text-align: left;
}
.cid-t3TEZFrYwW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efe8e8;
}
.cid-t3TEZFrYwW .video-wrapper iframe {
  width: 100%;
}
.cid-t3TEZFrYwW .mbr-section-title,
.cid-t3TEZFrYwW .mbr-section-subtitle,
.cid-t3TEZFrYwW .mbr-text {
  text-align: center;
}
.cid-t3TEZFrYwW .mbr-section-title {
  color: #000000;
}
.cid-t3TEZFrYwW .mbr-section-subtitle {
  color: #000000;
}
.cid-tTJijz50vo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-tTJijz50vo .mbr-section-title {
  color: #ffffff;
}
.cid-t3TpnjGIKX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #efe8e8;
}
@media (max-width: 991px) {
  .cid-t3TpnjGIKX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t3TpnjGIKX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t3TpnjGIKX .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3TpnjGIKX .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-t3TpnjGIKX .mbr-section-title {
  color: #000000;
}
.cid-t3e77DDa55 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3e83mLstD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #224c6c;
}
.cid-t3e83mLstD .mbr-section-title {
  color: #ffffff;
}
.cid-tTJhEdim3y {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tTJhEdim3y .video-wrapper iframe {
  width: 100%;
}
.cid-tTJhEdim3y .mbr-section-title,
.cid-tTJhEdim3y .mbr-section-subtitle,
.cid-tTJhEdim3y .mbr-text {
  text-align: center;
}
.cid-t3dIESd6kO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t3dIESd6kO .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t3dIESd6kO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3dIESd6kO .list {
    margin-bottom: 0rem;
  }
}
.cid-t3e7zwRVRB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3e7zwRVRB nav.navbar {
  position: fixed;
}
.cid-t3e7zwRVRB .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-t3e7zwRVRB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3e7zwRVRB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3e7zwRVRB .dropdown-item:hover,
.cid-t3e7zwRVRB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t3e7zwRVRB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3e7zwRVRB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3e7zwRVRB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3e7zwRVRB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3e7zwRVRB .nav-link {
  position: relative;
}
.cid-t3e7zwRVRB .container {
  display: flex;
  margin: auto;
}
.cid-t3e7zwRVRB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3e7zwRVRB .dropdown-menu,
.cid-t3e7zwRVRB .navbar.opened {
  background: #ffffff !important;
}
.cid-t3e7zwRVRB .nav-item:focus,
.cid-t3e7zwRVRB .nav-link:focus {
  outline: none;
}
.cid-t3e7zwRVRB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3e7zwRVRB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3e7zwRVRB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t3e7zwRVRB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3e7zwRVRB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3e7zwRVRB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3e7zwRVRB .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3e7zwRVRB .navbar.opened {
  transition: all .3s;
}
.cid-t3e7zwRVRB .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3e7zwRVRB .navbar .navbar-logo img {
  width: auto;
}
.cid-t3e7zwRVRB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3e7zwRVRB .navbar.collapsed {
  justify-content: center;
}
.cid-t3e7zwRVRB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3e7zwRVRB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3e7zwRVRB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t3e7zwRVRB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3e7zwRVRB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3e7zwRVRB .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-t3e7zwRVRB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3e7zwRVRB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3e7zwRVRB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3e7zwRVRB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3e7zwRVRB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3e7zwRVRB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3e7zwRVRB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3e7zwRVRB .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-t3e7zwRVRB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3e7zwRVRB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3e7zwRVRB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3e7zwRVRB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3e7zwRVRB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3e7zwRVRB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3e7zwRVRB .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3e7zwRVRB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3e7zwRVRB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3e7zwRVRB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3e7zwRVRB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3e7zwRVRB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3e7zwRVRB .dropdown-item.active,
.cid-t3e7zwRVRB .dropdown-item:active {
  background-color: transparent;
}
.cid-t3e7zwRVRB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3e7zwRVRB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3e7zwRVRB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3e7zwRVRB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3e7zwRVRB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3e7zwRVRB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3e7zwRVRB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3e7zwRVRB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3e7zwRVRB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3e7zwRVRB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3e7zwRVRB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3e7zwRVRB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3e7zwRVRB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3e7zwRVRB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3e7zwRVRB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3e7zwRVRB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3e7zwRVRB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3e7zwRVRB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3e7zwRVRB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3e7zwRVRB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3e7zwRVRB .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-t3e7zwRVRB .navbar {
    height: 70px;
  }
  .cid-t3e7zwRVRB .navbar.opened {
    height: auto;
  }
  .cid-t3e7zwRVRB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3e7zxysc9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/news-1074604.jpg");
}
.cid-t3e7zxysc9 .mbr-section-title {
  color: #ffffff;
}
.cid-t3e7zxysc9 .mbr-text,
.cid-t3e7zxysc9 .mbr-section-btn {
  color: #ffffff;
}
.cid-t3e9e5TVKN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3e9JghuiJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edf1f7;
}
.cid-t3e9JPynn6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3eauAp6Sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1e2f4d;
}
.cid-t3eauAp6Sm .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t3eauAp6Sm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t3e7zBdJiD {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #d9e0e8;
}
.cid-t3e7zBdJiD img,
.cid-t3e7zBdJiD .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t3e7zBdJiD .item:focus,
.cid-t3e7zBdJiD span:focus {
  outline: none;
}
.cid-t3e7zBdJiD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t3e7zBdJiD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t3e7zBdJiD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t3e7zBdJiD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t3e7zBdJiD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t3e7zBdJiD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t3e7zBdJiD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t3e7zBdJiD .mbr-section-title {
  color: #232323;
}
.cid-t3e7zBdJiD .mbr-text,
.cid-t3e7zBdJiD .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-t3e7zBdJiD .item-title {
  text-align: center;
  color: #000000;
}
.cid-t3e7zBdJiD .item-subtitle {
  text-align: center;
  color: #000000;
}
.cid-t3e7zC9fLn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t3e7zC9fLn .carousel-item {
  justify-content: center;
}
.cid-t3e7zC9fLn .carousel-item.active,
.cid-t3e7zC9fLn .carousel-item-next,
.cid-t3e7zC9fLn .carousel-item-prev {
  display: flex;
}
.cid-t3e7zC9fLn .carousel-controls a {
  transition: opacity .5s;
  font-size: 22px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
}
.cid-t3e7zC9fLn .carousel-control-next span {
  padding-left: 5px;
}
.cid-t3e7zC9fLn .carousel-control-prev span {
  padding-right: 5px;
}
.cid-t3e7zC9fLn .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-t3e7zC9fLn .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-t3e7zC9fLn .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-t3e7zCWePK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t3e7zCWePK .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t3e7zCWePK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3e7zCWePK .list {
    margin-bottom: 0rem;
  }
}
.cid-t3eb9zRef8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3eb9zRef8 nav.navbar {
  position: fixed;
}
.cid-t3eb9zRef8 .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-t3eb9zRef8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3eb9zRef8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3eb9zRef8 .dropdown-item:hover,
.cid-t3eb9zRef8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t3eb9zRef8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3eb9zRef8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3eb9zRef8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3eb9zRef8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3eb9zRef8 .nav-link {
  position: relative;
}
.cid-t3eb9zRef8 .container {
  display: flex;
  margin: auto;
}
.cid-t3eb9zRef8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3eb9zRef8 .dropdown-menu,
.cid-t3eb9zRef8 .navbar.opened {
  background: #ffffff !important;
}
.cid-t3eb9zRef8 .nav-item:focus,
.cid-t3eb9zRef8 .nav-link:focus {
  outline: none;
}
.cid-t3eb9zRef8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3eb9zRef8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3eb9zRef8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t3eb9zRef8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3eb9zRef8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3eb9zRef8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3eb9zRef8 .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3eb9zRef8 .navbar.opened {
  transition: all .3s;
}
.cid-t3eb9zRef8 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3eb9zRef8 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3eb9zRef8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3eb9zRef8 .navbar.collapsed {
  justify-content: center;
}
.cid-t3eb9zRef8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3eb9zRef8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3eb9zRef8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t3eb9zRef8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3eb9zRef8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3eb9zRef8 .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-t3eb9zRef8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3eb9zRef8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3eb9zRef8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3eb9zRef8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3eb9zRef8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3eb9zRef8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3eb9zRef8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3eb9zRef8 .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-t3eb9zRef8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3eb9zRef8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3eb9zRef8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3eb9zRef8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3eb9zRef8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3eb9zRef8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3eb9zRef8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3eb9zRef8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3eb9zRef8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3eb9zRef8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3eb9zRef8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3eb9zRef8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3eb9zRef8 .dropdown-item.active,
.cid-t3eb9zRef8 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3eb9zRef8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3eb9zRef8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3eb9zRef8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3eb9zRef8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3eb9zRef8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3eb9zRef8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3eb9zRef8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3eb9zRef8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3eb9zRef8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3eb9zRef8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3eb9zRef8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3eb9zRef8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3eb9zRef8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3eb9zRef8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3eb9zRef8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3eb9zRef8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3eb9zRef8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3eb9zRef8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3eb9zRef8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3eb9zRef8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3eb9zRef8 .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-t3eb9zRef8 .navbar {
    height: 70px;
  }
  .cid-t3eb9zRef8 .navbar.opened {
    height: auto;
  }
  .cid-t3eb9zRef8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3eb9AqYkS {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/polemicas-1.jpg");
}
.cid-t3eb9AqYkS .mbr-section-title {
  color: #ffffff;
}
.cid-t3eb9AqYkS .mbr-text,
.cid-t3eb9AqYkS .mbr-section-btn {
  color: #ffffff;
}
.cid-t3eb9AU5Ef {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7f1b5;
}
.cid-t3eb9BbJwG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #dbd6a4;
}
.cid-t3eb9Bswvo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7f1b5;
}
.cid-t3TPdzDWIL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #dbd6a4;
}
.cid-t3TPpxoleg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7f1b5;
}
.cid-t3U6sFJxhB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t3U6sFJxhB img,
.cid-t3U6sFJxhB .item-img {
  width: 100%;
}
.cid-t3U6sFJxhB .item:focus,
.cid-t3U6sFJxhB span:focus {
  outline: none;
}
.cid-t3U6sFJxhB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t3U6sFJxhB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t3U6sFJxhB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t3U6sFJxhB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t3U6sFJxhB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t3U6sFJxhB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t3U6sFJxhB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t3U6sFJxhB .mbr-section-title {
  color: #232323;
}
.cid-t3U6sFJxhB .mbr-text,
.cid-t3U6sFJxhB .mbr-section-btn {
  text-align: center;
}
.cid-t3U6sFJxhB .item-title {
  text-align: center;
}
.cid-t3U6sFJxhB .item-subtitle {
  text-align: center;
}
.cid-t3U6tAEea5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #475a69;
}
.cid-t3U6tAEea5 .content-wrapper {
  background: #2c87cf;
}
@media (max-width: 991px) {
  .cid-t3U6tAEea5 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t3U6tAEea5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3U6tAEea5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3U6tAEea5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3U6tAEea5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3U6tAEea5 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t3U6tAEea5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t3U6uT9wCt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f6faff;
}
.cid-t3U6uT9wCt .video-wrapper iframe {
  width: 100%;
}
.cid-t3U6uT9wCt .mbr-section-title,
.cid-t3U6uT9wCt .mbr-section-subtitle,
.cid-t3U6uT9wCt .mbr-text {
  text-align: center;
}
.cid-t3U6wbWoZh {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3U6wbWoZh .video-wrapper iframe {
  width: 100%;
}
.cid-t3U6wbWoZh .mbr-section-title,
.cid-t3U6wbWoZh .mbr-section-subtitle,
.cid-t3U6wbWoZh .mbr-text {
  text-align: center;
}
.cid-t3eb9Dc604 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t3eb9Dc604 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t3eb9Dc604 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3eb9Dc604 .list {
    margin-bottom: 0rem;
  }
}
.cid-t3UedSjCXo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3UedSjCXo nav.navbar {
  position: fixed;
}
.cid-t3UedSjCXo .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-t3UedSjCXo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3UedSjCXo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3UedSjCXo .dropdown-item:hover,
.cid-t3UedSjCXo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t3UedSjCXo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3UedSjCXo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3UedSjCXo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3UedSjCXo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3UedSjCXo .nav-link {
  position: relative;
}
.cid-t3UedSjCXo .container {
  display: flex;
  margin: auto;
}
.cid-t3UedSjCXo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3UedSjCXo .dropdown-menu,
.cid-t3UedSjCXo .navbar.opened {
  background: #ffffff !important;
}
.cid-t3UedSjCXo .nav-item:focus,
.cid-t3UedSjCXo .nav-link:focus {
  outline: none;
}
.cid-t3UedSjCXo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3UedSjCXo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3UedSjCXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t3UedSjCXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3UedSjCXo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3UedSjCXo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3UedSjCXo .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3UedSjCXo .navbar.opened {
  transition: all .3s;
}
.cid-t3UedSjCXo .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3UedSjCXo .navbar .navbar-logo img {
  width: auto;
}
.cid-t3UedSjCXo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3UedSjCXo .navbar.collapsed {
  justify-content: center;
}
.cid-t3UedSjCXo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3UedSjCXo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3UedSjCXo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t3UedSjCXo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3UedSjCXo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3UedSjCXo .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-t3UedSjCXo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3UedSjCXo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3UedSjCXo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3UedSjCXo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3UedSjCXo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3UedSjCXo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3UedSjCXo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3UedSjCXo .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-t3UedSjCXo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3UedSjCXo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3UedSjCXo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3UedSjCXo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3UedSjCXo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3UedSjCXo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3UedSjCXo .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3UedSjCXo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3UedSjCXo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3UedSjCXo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3UedSjCXo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3UedSjCXo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3UedSjCXo .dropdown-item.active,
.cid-t3UedSjCXo .dropdown-item:active {
  background-color: transparent;
}
.cid-t3UedSjCXo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3UedSjCXo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3UedSjCXo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3UedSjCXo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3UedSjCXo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3UedSjCXo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3UedSjCXo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3UedSjCXo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3UedSjCXo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3UedSjCXo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3UedSjCXo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3UedSjCXo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3UedSjCXo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3UedSjCXo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3UedSjCXo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3UedSjCXo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3UedSjCXo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3UedSjCXo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3UedSjCXo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3UedSjCXo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3UedSjCXo .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-t3UedSjCXo .navbar {
    height: 70px;
  }
  .cid-t3UedSjCXo .navbar.opened {
    height: auto;
  }
  .cid-t3UedSjCXo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3UhlTpBe5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #dbd6a4;
}
.cid-t3UhlTpBe5 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3UedX3d1U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t3UedX3d1U .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t3UedX3d1U .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3UedX3d1U .list {
    margin-bottom: 0rem;
  }
}
.cid-t4TGDMaGcO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t4TGDMaGcO nav.navbar {
  position: fixed;
}
.cid-t4TGDMaGcO .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-t4TGDMaGcO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4TGDMaGcO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t4TGDMaGcO .dropdown-item:hover,
.cid-t4TGDMaGcO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t4TGDMaGcO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t4TGDMaGcO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t4TGDMaGcO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t4TGDMaGcO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t4TGDMaGcO .nav-link {
  position: relative;
}
.cid-t4TGDMaGcO .container {
  display: flex;
  margin: auto;
}
.cid-t4TGDMaGcO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t4TGDMaGcO .dropdown-menu,
.cid-t4TGDMaGcO .navbar.opened {
  background: #ffffff !important;
}
.cid-t4TGDMaGcO .nav-item:focus,
.cid-t4TGDMaGcO .nav-link:focus {
  outline: none;
}
.cid-t4TGDMaGcO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t4TGDMaGcO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4TGDMaGcO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-t4TGDMaGcO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t4TGDMaGcO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4TGDMaGcO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4TGDMaGcO .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t4TGDMaGcO .navbar.opened {
  transition: all .3s;
}
.cid-t4TGDMaGcO .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t4TGDMaGcO .navbar .navbar-logo img {
  width: auto;
}
.cid-t4TGDMaGcO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4TGDMaGcO .navbar.collapsed {
  justify-content: center;
}
.cid-t4TGDMaGcO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4TGDMaGcO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4TGDMaGcO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-t4TGDMaGcO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4TGDMaGcO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4TGDMaGcO .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-t4TGDMaGcO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4TGDMaGcO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t4TGDMaGcO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4TGDMaGcO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4TGDMaGcO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4TGDMaGcO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4TGDMaGcO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4TGDMaGcO .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-t4TGDMaGcO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t4TGDMaGcO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4TGDMaGcO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4TGDMaGcO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t4TGDMaGcO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t4TGDMaGcO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4TGDMaGcO .navbar.navbar-short {
  min-height: 60px;
}
.cid-t4TGDMaGcO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t4TGDMaGcO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t4TGDMaGcO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4TGDMaGcO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4TGDMaGcO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4TGDMaGcO .dropdown-item.active,
.cid-t4TGDMaGcO .dropdown-item:active {
  background-color: transparent;
}
.cid-t4TGDMaGcO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4TGDMaGcO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4TGDMaGcO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4TGDMaGcO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4TGDMaGcO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4TGDMaGcO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4TGDMaGcO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t4TGDMaGcO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t4TGDMaGcO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t4TGDMaGcO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t4TGDMaGcO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4TGDMaGcO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4TGDMaGcO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4TGDMaGcO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4TGDMaGcO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4TGDMaGcO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4TGDMaGcO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4TGDMaGcO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4TGDMaGcO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t4TGDMaGcO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4TGDMaGcO .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-t4TGDMaGcO .navbar {
    height: 70px;
  }
  .cid-t4TGDMaGcO .navbar.opened {
    height: auto;
  }
  .cid-t4TGDMaGcO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4TGDMvTbW {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #dbd6a4;
}
.cid-t4TGDMvTbW blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t4TGDMHjAa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-t4TGDMHjAa .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t4TGDMHjAa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t4TGDMHjAa .list {
    margin-bottom: 0rem;
  }
}
.cid-tTJ53pVtGJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tTJ53pVtGJ nav.navbar {
  position: fixed;
}
.cid-tTJ53pVtGJ .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-tTJ53pVtGJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTJ53pVtGJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTJ53pVtGJ .dropdown-item:hover,
.cid-tTJ53pVtGJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tTJ53pVtGJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTJ53pVtGJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTJ53pVtGJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tTJ53pVtGJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTJ53pVtGJ .nav-link {
  position: relative;
}
.cid-tTJ53pVtGJ .container {
  display: flex;
  margin: auto;
}
.cid-tTJ53pVtGJ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tTJ53pVtGJ .dropdown-menu,
.cid-tTJ53pVtGJ .navbar.opened {
  background: #ffffff !important;
}
.cid-tTJ53pVtGJ .nav-item:focus,
.cid-tTJ53pVtGJ .nav-link:focus {
  outline: none;
}
.cid-tTJ53pVtGJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTJ53pVtGJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTJ53pVtGJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tTJ53pVtGJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTJ53pVtGJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTJ53pVtGJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTJ53pVtGJ .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tTJ53pVtGJ .navbar.opened {
  transition: all .3s;
}
.cid-tTJ53pVtGJ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tTJ53pVtGJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tTJ53pVtGJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTJ53pVtGJ .navbar.collapsed {
  justify-content: center;
}
.cid-tTJ53pVtGJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTJ53pVtGJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTJ53pVtGJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-tTJ53pVtGJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTJ53pVtGJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTJ53pVtGJ .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-tTJ53pVtGJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTJ53pVtGJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tTJ53pVtGJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTJ53pVtGJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTJ53pVtGJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTJ53pVtGJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTJ53pVtGJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTJ53pVtGJ .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-tTJ53pVtGJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTJ53pVtGJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTJ53pVtGJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTJ53pVtGJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTJ53pVtGJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTJ53pVtGJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTJ53pVtGJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTJ53pVtGJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTJ53pVtGJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTJ53pVtGJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTJ53pVtGJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTJ53pVtGJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTJ53pVtGJ .dropdown-item.active,
.cid-tTJ53pVtGJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tTJ53pVtGJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTJ53pVtGJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTJ53pVtGJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTJ53pVtGJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tTJ53pVtGJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTJ53pVtGJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTJ53pVtGJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTJ53pVtGJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTJ53pVtGJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tTJ53pVtGJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tTJ53pVtGJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTJ53pVtGJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTJ53pVtGJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTJ53pVtGJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTJ53pVtGJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTJ53pVtGJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTJ53pVtGJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTJ53pVtGJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTJ53pVtGJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTJ53pVtGJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTJ53pVtGJ .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-tTJ53pVtGJ .navbar {
    height: 70px;
  }
  .cid-tTJ53pVtGJ .navbar.opened {
    height: auto;
  }
  .cid-tTJ53pVtGJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTJ5EqB3gs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #224c6c;
}
.cid-tTJ5EqB3gs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTJ5EqB3gs .mbr-text {
  color: #ffffff;
}
.cid-tTJ53rb6VY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c0c0c0;
}
.cid-tTJ53rb6VY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53rb6VY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53rb6VY .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53rb6VY .mbr-section-title,
.cid-tTJ53rb6VY .mbr-section-subtitle,
.cid-tTJ53rb6VY .mbr-text {
  text-align: center;
}
.cid-tTJ53rb6VY .mbr-section-title {
  color: #000000;
}
.cid-tTJ53rb6VY .mbr-section-subtitle {
  color: #000000;
}
.cid-tTJ53rb6VY .mbr-text {
  color: #000000;
}
.cid-tTJ53rKuG5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53rKuG5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53rKuG5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53rKuG5 .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53rKuG5 .mbr-section-title,
.cid-tTJ53rKuG5 .mbr-section-subtitle,
.cid-tTJ53rKuG5 .mbr-text {
  text-align: center;
}
.cid-tTJ53rKuG5 .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53rKuG5 .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53rKuG5 .mbr-text {
  color: #000000;
}
.cid-tTJ53sj88d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53sj88d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53sj88d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53sj88d .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53sj88d .mbr-section-title,
.cid-tTJ53sj88d .mbr-section-subtitle,
.cid-tTJ53sj88d .mbr-text {
  text-align: center;
}
.cid-tTJ53sj88d .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53sj88d .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53sj88d .mbr-text {
  color: #000000;
}
.cid-tTJ53sQovY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53sQovY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53sQovY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53sQovY .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53sQovY .mbr-section-title,
.cid-tTJ53sQovY .mbr-section-subtitle,
.cid-tTJ53sQovY .mbr-text {
  text-align: center;
}
.cid-tTJ53sQovY .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53sQovY .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53sQovY .mbr-text {
  color: #000000;
}
.cid-tTJ53tqqGL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53tqqGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53tqqGL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53tqqGL .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53tqqGL .mbr-section-title,
.cid-tTJ53tqqGL .mbr-section-subtitle,
.cid-tTJ53tqqGL .mbr-text {
  text-align: center;
}
.cid-tTJ53tqqGL .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53tqqGL .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53tqqGL .mbr-text {
  color: #000000;
}
.cid-tTJ53u19Jp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53u19Jp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53u19Jp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53u19Jp .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53u19Jp .mbr-section-title,
.cid-tTJ53u19Jp .mbr-section-subtitle,
.cid-tTJ53u19Jp .mbr-text {
  text-align: center;
}
.cid-tTJ53u19Jp .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53u19Jp .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53u19Jp .mbr-text {
  color: #000000;
}
.cid-tTJ53uCVQb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53uCVQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53uCVQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53uCVQb .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53uCVQb .mbr-section-title,
.cid-tTJ53uCVQb .mbr-section-subtitle,
.cid-tTJ53uCVQb .mbr-text {
  text-align: center;
}
.cid-tTJ53uCVQb .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53uCVQb .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53uCVQb .mbr-text {
  color: #000000;
}
.cid-tTJ53vdglE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53vdglE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53vdglE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53vdglE .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53vdglE .mbr-section-title,
.cid-tTJ53vdglE .mbr-section-subtitle,
.cid-tTJ53vdglE .mbr-text {
  text-align: center;
}
.cid-tTJ53vdglE .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53vdglE .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53vdglE .mbr-text {
  color: #000000;
}
.cid-tTJ53vOsUo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53vOsUo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53vOsUo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53vOsUo .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53vOsUo .mbr-section-title,
.cid-tTJ53vOsUo .mbr-section-subtitle,
.cid-tTJ53vOsUo .mbr-text {
  text-align: center;
}
.cid-tTJ53vOsUo .mbr-section-title {
  color: #ffe161;
}
.cid-tTJ53vOsUo .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tTJ53vOsUo .mbr-text {
  color: #000000;
}
.cid-tTJ53wq6qt {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #224c6c;
}
.cid-tTJ53wq6qt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53wq6qt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53wq6qt .mbr-section-title {
  color: #ffffff;
}
.cid-tTJ53wq6qt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTJ53x4NZe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ8vYAUbz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #224c6c;
}
.cid-tTJ8vYAUbz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ8vYAUbz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ8vYAUbz .mbr-section-title {
  color: #ffffff;
}
.cid-tTJ8vYAUbz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTJ53xBlFO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c0c0c0;
}
.cid-tTJ53xBlFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53xBlFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ53xBlFO .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ53xBlFO .mbr-section-title,
.cid-tTJ53xBlFO .mbr-section-subtitle,
.cid-tTJ53xBlFO .mbr-text {
  text-align: center;
}
.cid-tTJ53xBlFO .mbr-section-title {
  color: #ffffff;
}
.cid-tTJ53xBlFO .mbr-text {
  color: #000000;
}
.cid-tTJ53yk1gc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53yk1gc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53yk1gc .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-tTJ53yk1gc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tTJ53yk1gc .row {
  flex-direction: row-reverse;
}
.cid-tTJ53yk1gc img {
  width: 100%;
}
.cid-tTJ53yk1gc .mbr-description {
  color: #000000;
}
.cid-tTJ8evUmLd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #224c6c;
}
.cid-tTJ8evUmLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ8evUmLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTJ8evUmLd .mbr-section-title {
  color: #ffffff;
}
.cid-tTJ8evUmLd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTJ53zCEbO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c0c0c0;
}
.cid-tTJ53zCEbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53zCEbO .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-tTJ53zCEbO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tTJ53zCEbO .row {
  flex-direction: row-reverse;
}
.cid-tTJ53zCEbO img {
  width: 100%;
}
.cid-tTJ53AeoX9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c0c0c0;
}
.cid-tTJ53AeoX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJ53AeoX9 .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-tTJ53AeoX9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tTJ53AeoX9 .row {
  flex-direction: row-reverse;
}
.cid-tTJ53AeoX9 img {
  width: 100%;
}
.cid-tTJ53IWdCp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-tTJ53IWdCp .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tTJ53IWdCp .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTJ53IWdCp .list {
    margin-bottom: 0rem;
  }
}
.cid-tTJ9LkSDdn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tTJ9LkSDdn nav.navbar {
  position: fixed;
}
.cid-tTJ9LkSDdn .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-tTJ9LkSDdn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTJ9LkSDdn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTJ9LkSDdn .dropdown-item:hover,
.cid-tTJ9LkSDdn .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tTJ9LkSDdn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTJ9LkSDdn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTJ9LkSDdn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tTJ9LkSDdn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTJ9LkSDdn .nav-link {
  position: relative;
}
.cid-tTJ9LkSDdn .container {
  display: flex;
  margin: auto;
}
.cid-tTJ9LkSDdn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tTJ9LkSDdn .dropdown-menu,
.cid-tTJ9LkSDdn .navbar.opened {
  background: #ffffff !important;
}
.cid-tTJ9LkSDdn .nav-item:focus,
.cid-tTJ9LkSDdn .nav-link:focus {
  outline: none;
}
.cid-tTJ9LkSDdn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTJ9LkSDdn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTJ9LkSDdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tTJ9LkSDdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTJ9LkSDdn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTJ9LkSDdn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTJ9LkSDdn .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tTJ9LkSDdn .navbar.opened {
  transition: all .3s;
}
.cid-tTJ9LkSDdn .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tTJ9LkSDdn .navbar .navbar-logo img {
  width: auto;
}
.cid-tTJ9LkSDdn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTJ9LkSDdn .navbar.collapsed {
  justify-content: center;
}
.cid-tTJ9LkSDdn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTJ9LkSDdn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTJ9LkSDdn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.5rem);
  }
}
.cid-tTJ9LkSDdn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTJ9LkSDdn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTJ9LkSDdn .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-tTJ9LkSDdn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTJ9LkSDdn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tTJ9LkSDdn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTJ9LkSDdn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTJ9LkSDdn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTJ9LkSDdn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTJ9LkSDdn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTJ9LkSDdn .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-tTJ9LkSDdn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTJ9LkSDdn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTJ9LkSDdn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTJ9LkSDdn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTJ9LkSDdn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTJ9LkSDdn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTJ9LkSDdn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTJ9LkSDdn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTJ9LkSDdn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTJ9LkSDdn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTJ9LkSDdn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTJ9LkSDdn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTJ9LkSDdn .dropdown-item.active,
.cid-tTJ9LkSDdn .dropdown-item:active {
  background-color: transparent;
}
.cid-tTJ9LkSDdn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTJ9LkSDdn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTJ9LkSDdn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTJ9LkSDdn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tTJ9LkSDdn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTJ9LkSDdn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTJ9LkSDdn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTJ9LkSDdn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTJ9LkSDdn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tTJ9LkSDdn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tTJ9LkSDdn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTJ9LkSDdn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTJ9LkSDdn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTJ9LkSDdn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTJ9LkSDdn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTJ9LkSDdn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTJ9LkSDdn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTJ9LkSDdn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTJ9LkSDdn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTJ9LkSDdn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTJ9LkSDdn .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-tTJ9LkSDdn .navbar {
    height: 70px;
  }
  .cid-tTJ9LkSDdn .navbar.opened {
    height: auto;
  }
  .cid-tTJ9LkSDdn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTJazXS4Yl {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #224c6c;
}
.cid-tTJazXS4Yl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTJazXS4Yl .mbr-text {
  color: #ffffff;
}
.cid-tTJ9LnJ0fB {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #d8d2d2;
}
.cid-tTJ9LnJ0fB img,
.cid-tTJ9LnJ0fB .item-img {
  width: 100%;
}
.cid-tTJ9LnJ0fB .item:focus,
.cid-tTJ9LnJ0fB span:focus {
  outline: none;
}
.cid-tTJ9LnJ0fB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTJ9LnJ0fB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTJ9LnJ0fB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tTJ9LnJ0fB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTJ9LnJ0fB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tTJ9LnJ0fB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tTJ9LnJ0fB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTJ9LnJ0fB .mbr-section-title {
  color: #232323;
}
.cid-tTJ9LnJ0fB .mbr-text,
.cid-tTJ9LnJ0fB .mbr-section-btn {
  text-align: center;
}
.cid-tTJ9LnJ0fB .item-title {
  text-align: center;
}
.cid-tTJ9LnJ0fB .item-subtitle {
  text-align: center;
}
.cid-tTJ9LomqQ8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d8d2d2;
}
.cid-tTJ9LomqQ8 .content-wrapper {
  background: #ffe161;
}
@media (max-width: 991px) {
  .cid-tTJ9LomqQ8 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tTJ9LomqQ8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTJ9LomqQ8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tTJ9LomqQ8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTJ9LomqQ8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tTJ9LomqQ8 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tTJ9LomqQ8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LoUp13 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d8d2d2;
}
.cid-tTJ9LoUp13 .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ9LoUp13 .mbr-section-title,
.cid-tTJ9LoUp13 .mbr-section-subtitle,
.cid-tTJ9LoUp13 .mbr-text {
  text-align: center;
}
.cid-tTJ9LprplN {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #d8d2d2;
}
.cid-tTJ9LprplN .video-wrapper iframe {
  width: 100%;
}
.cid-tTJ9LprplN .mbr-section-title,
.cid-tTJ9LprplN .mbr-section-subtitle,
.cid-tTJ9LprplN .mbr-text {
  text-align: center;
}
.cid-tTJ9LpXM2V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tTJ9LpXM2V .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTJ9LpXM2V .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LqEARg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tTJ9LqEARg .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTJ9LqEARg .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LraHhl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tTJ9LraHhl .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTJ9LraHhl .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LrJC4x {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tTJ9LrJC4x .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTJ9LrJC4x .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LsiM2n {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tTJ9LsiM2n .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTJ9LsiM2n .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTJ9LsTS0w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #011c4b;
}
.cid-tTJ9LsTS0w .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tTJ9LsTS0w .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTJ9LsTS0w .list {
    margin-bottom: 0rem;
  }
}
