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: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: #0000ff !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: #0000ff !important;
  border-color: #0000ff !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: #0000a8 !important;
  border-color: #0000a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0000a8 !important;
  border-color: #0000a8 !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: #0000ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0000a8 !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: #0000ff !important;
  border-color: #0000ff !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: #0000ff !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: #000099 !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: #0000ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0000ff;
  border-color: #0000ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0000ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ccccff;
}
.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: #0000ff !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: #0000ff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0000ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0000ff;
}
.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: #0000ff;
  border-bottom-color: #0000ff;
}
.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: #0000ff !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='%230000ff' %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-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-s48udlf8KU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: center;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: center;
}
.cid-s48upRUlSD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-s48upRUlSD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-s48upRUlSD .row {
  flex-direction: row-reverse;
}
.cid-s48upRUlSD img {
  width: 100%;
}
.cid-tl3QkJmt0v {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl3QkJmt0v .container {
    max-width: 1400px;
  }
}
.cid-tl3QkJmt0v .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl3QkJmt0v .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl3QkJmt0v .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl3QkJmt0v .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl3QkJmt0v .card-wrapper {
  margin-top: 3rem;
}
.cid-tl3QkJmt0v .row {
  justify-content: center;
}
.cid-tl3QkJmt0v .mbr-section-title {
  color: #1a449a;
}
.cid-tl3QkJmt0v .card-title,
.cid-tl3QkJmt0v .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl3QkJmt0v .card-text {
  color: #1a449a;
}
.cid-tl3QkJmt0v .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sQcQfEsroA {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQcQfEsroA .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-sQcQfEsroA .mbr-text,
.cid-sQcQfEsroA .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sQcQfEsroA .mbr-section-title,
  .cid-sQcQfEsroA .mbr-section-btn,
  .cid-sQcQfEsroA .mbr-text {
    text-align: center;
  }
}
.cid-sQcQfHwMYC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-sQcQfHwMYC .mbr-section-title {
  text-align: center;
}
.cid-sQcQfHwMYC .mbr-section-subtitle {
  text-align: left;
}
.cid-sR9FMsAJv2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sR9FMsAJv2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sR9FMsAJv2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sR9FMsAJv2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQd5HBfB00 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sQd5HBfB00 img,
.cid-sQd5HBfB00 .item-img {
  width: 100%;
}
.cid-sQd5HBfB00 .item:focus,
.cid-sQd5HBfB00 span:focus {
  outline: none;
}
.cid-sQd5HBfB00 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQd5HBfB00 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ececec;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sQd5HBfB00 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sQd5HBfB00 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sQd5HBfB00 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQd5HBfB00 .mbr-section-title {
  color: #232323;
}
.cid-sQd5HBfB00 .mbr-text,
.cid-sQd5HBfB00 .mbr-section-btn {
  text-align: center;
}
.cid-sQd5HBfB00 .item-title {
  text-align: center;
}
.cid-sQd5HBfB00 .item-subtitle {
  text-align: left;
}
.cid-sQcQfKe4FK {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sQcQfKe4FK .mbr-section-title {
  text-align: center;
}
.cid-sQcQfKe4FK .mbr-section-subtitle {
  text-align: center;
}
.cid-sQcQfKe4FK .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sQk7RkvcVn {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-sQk7RkvcVn .container {
    max-width: 1400px;
  }
}
.cid-sQk7RkvcVn .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-sQk7RkvcVn .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sQk7RkvcVn .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQk7RkvcVn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-sQk7RkvcVn .card-wrapper {
  margin-top: 3rem;
}
.cid-sQk7RkvcVn .row {
  justify-content: center;
}
.cid-sQk7RkvcVn .mbr-section-title {
  color: #1a449a;
}
.cid-sQk7RkvcVn .card-title,
.cid-sQk7RkvcVn .iconfont-wrapper {
  color: #1a449a;
}
.cid-sQk7RkvcVn .card-text {
  color: #1a449a;
}
.cid-sQk7RkvcVn .mbr-section-subtitle {
  color: #1a449a;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sQTau3jwVr {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTau3jwVr .mbr-section-title {
  text-align: center;
}
.cid-sQTau3jwVr .mbr-text,
.cid-sQTau3jwVr .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQTau3jwVr .mbr-section-title,
  .cid-sQTau3jwVr .mbr-section-btn,
  .cid-sQTau3jwVr .mbr-text {
    text-align: center;
  }
}
.cid-tl40H9HhXL {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl40H9HhXL .container {
    max-width: 1400px;
  }
}
.cid-tl40H9HhXL .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl40H9HhXL .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl40H9HhXL .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl40H9HhXL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl40H9HhXL .card-wrapper {
  margin-top: 3rem;
}
.cid-tl40H9HhXL .row {
  justify-content: center;
}
.cid-tl40H9HhXL .mbr-section-title {
  color: #1a449a;
}
.cid-tl40H9HhXL .card-title,
.cid-tl40H9HhXL .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl40H9HhXL .card-text {
  color: #1a449a;
}
.cid-tl40H9HhXL .mbr-section-subtitle {
  color: #1a449a;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl41bl2Tsj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl41bl2Tsj .container-fluid {
  padding: 0;
}
.cid-tl41bl2Tsj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl41bl2Tsj .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl41bl2Tsj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl41bl2Tsj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl41bl2Tsj .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl41bl2Tsj .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl41bl2Tsj .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl41bl2Tsj .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl41bl2Tsj .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl41bl2Tsj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl41bl2Tsj .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl41bl2Tsj .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl41bl2Tsj .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl41bl2Tsj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl41bl2Tsj .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl41bl2Tsj .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl41bl2Tsj .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl41bl2Tsj .copyright .mbr-text {
  margin: 0;
}
.cid-tl41bl2Tsj .mbr-section-title,
.cid-tl41bl2Tsj .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl41bl2Tsj .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl41bl2Tsj .foot-menu {
  text-align: center;
}
.cid-sQTaS1rZiq {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTaS1rZiq .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sQTaS1rZiq .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sQTaS1rZiq p {
  line-height: 1.6;
}
.cid-sQTaS1rZiq .rev,
.cid-sQTaS1rZiq .mbr-iconfont {
  display: inline-block;
}
.cid-sQTaS1rZiq .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sQTaS1rZiq .card-box {
  padding: 1.5rem;
}
.cid-sQTaS1rZiq .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sQTaS1rZiq .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sQTaS1rZiq .mbr-section-title,
.cid-sQTaS1rZiq .line-wrap {
  text-align: center;
  color: #0087ab;
}
.cid-sQTaS1rZiq .rev {
  color: #0a1c44;
}
.cid-sQTaS1rZiq .card-text,
.cid-sQTaS1rZiq .mbr-section-btn,
.cid-sQTaS1rZiq .ico-line {
  color: #767676;
}
.cid-sRl5feQDsb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRl5feQDsb .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRl5feQDsb .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRl5feQDsb .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRl5feQDsb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRl5feQDsb .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRl5feQDsb .row {
  justify-content: center;
}
.cid-sRl5feQDsb .card-text {
  color: #000000;
}
.cid-sRl5feQDsb .card-title,
.cid-sRl5feQDsb .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRl5feQDsb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRl5feQDsb .mbr-section-title {
  color: #ffffff;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl426G8MR7 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl426G8MR7 .container {
    max-width: 1400px;
  }
}
.cid-tl426G8MR7 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl426G8MR7 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl426G8MR7 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl426G8MR7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl426G8MR7 .card-wrapper {
  margin-top: 3rem;
}
.cid-tl426G8MR7 .row {
  justify-content: center;
}
.cid-tl426G8MR7 .mbr-section-title {
  color: #1a449a;
}
.cid-tl426G8MR7 .card-title,
.cid-tl426G8MR7 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl426G8MR7 .card-text {
  color: #1a449a;
}
.cid-tl426G8MR7 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sQTb64EpyE {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTb64EpyE .mbr-section-title {
  text-align: center;
}
.cid-sQTb64EpyE .mbr-text,
.cid-sQTb64EpyE .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sQTb64EpyE .mbr-section-title,
  .cid-sQTb64EpyE .mbr-section-btn,
  .cid-sQTb64EpyE .mbr-text {
    text-align: center;
  }
}
.cid-sT9Vl8yHol {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-sT9Vl8yHol .mbr-section-title {
  text-align: center;
}
.cid-sT9Vl8yHol .mbr-section-subtitle {
  text-align: center;
}
.cid-sT49myiGjS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sT49myiGjS .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sT49myiGjS img,
.cid-sT49myiGjS .item-img {
  width: 100%;
}
.cid-sT49myiGjS .item:focus,
.cid-sT49myiGjS span:focus {
  outline: none;
}
.cid-sT49myiGjS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sT49myiGjS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sT49myiGjS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sT49myiGjS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sT49myiGjS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sT49myiGjS .mbr-section-title {
  color: #232323;
}
.cid-sT49myiGjS .mbr-text,
.cid-sT49myiGjS .mbr-section-btn {
  text-align: center;
}
.cid-sT49myiGjS .item-title {
  text-align: left;
}
.cid-sT49myiGjS .item-subtitle {
  text-align: left;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl41YPA8hy {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl41YPA8hy .container {
    max-width: 1400px;
  }
}
.cid-tl41YPA8hy .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl41YPA8hy .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl41YPA8hy .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl41YPA8hy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl41YPA8hy .card-wrapper {
  margin-top: 3rem;
}
.cid-tl41YPA8hy .row {
  justify-content: center;
}
.cid-tl41YPA8hy .mbr-section-title {
  color: #1a449a;
}
.cid-tl41YPA8hy .card-title,
.cid-tl41YPA8hy .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl41YPA8hy .card-text {
  color: #1a449a;
}
.cid-tl41YPA8hy .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sQ3fFbdnT3 {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQ3fFbdnT3 .mbr-section-title {
  text-align: center;
  color: #0087ab;
}
.cid-sQ3fFbdnT3 .mbr-text,
.cid-sQ3fFbdnT3 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sQ3fFbdnT3 .mbr-section-title,
  .cid-sQ3fFbdnT3 .mbr-section-btn,
  .cid-sQ3fFbdnT3 .mbr-text {
    text-align: left;
  }
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl42GluCwi {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl42GluCwi .container {
    max-width: 1400px;
  }
}
.cid-tl42GluCwi .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl42GluCwi .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl42GluCwi .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl42GluCwi .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl42GluCwi .card-wrapper {
  margin-top: 3rem;
}
.cid-tl42GluCwi .row {
  justify-content: center;
}
.cid-tl42GluCwi .mbr-section-title {
  color: #1a449a;
}
.cid-tl42GluCwi .card-title,
.cid-tl42GluCwi .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl42GluCwi .card-text {
  color: #1a449a;
}
.cid-tl42GluCwi .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sT1HZDZ6JR {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sT1HZDZ6JR .mbr-section-title {
  text-align: center;
}
.cid-sT1HZDZ6JR .mbr-text,
.cid-sT1HZDZ6JR .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sT1HZDZ6JR .mbr-section-title,
  .cid-sT1HZDZ6JR .mbr-section-btn,
  .cid-sT1HZDZ6JR .mbr-text {
    text-align: center;
  }
}
.cid-sWlqsaKaxg {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sWlqsaKaxg .mbr-section-title {
  text-align: center;
}
.cid-sWlqsaKaxg .mbr-text,
.cid-sWlqsaKaxg .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sWlqsaKaxg .mbr-section-title,
  .cid-sWlqsaKaxg .mbr-section-btn,
  .cid-sWlqsaKaxg .mbr-text {
    text-align: center;
  }
}
.cid-sWlrK2DcfV {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sWlrK2DcfV .mbr-section-title {
  text-align: center;
}
.cid-sWlrK2DcfV .mbr-text,
.cid-sWlrK2DcfV .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sWlrK2DcfV .mbr-section-title,
  .cid-sWlrK2DcfV .mbr-section-btn,
  .cid-sWlrK2DcfV .mbr-text {
    text-align: center;
  }
}
.cid-sWlseeey6w {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-sWlseeey6w .mbr-section-title {
  text-align: center;
}
.cid-sWlseeey6w .mbr-text,
.cid-sWlseeey6w .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sWlseeey6w .mbr-section-title,
  .cid-sWlseeey6w .mbr-section-btn,
  .cid-sWlseeey6w .mbr-text {
    text-align: center;
  }
}
.cid-sT1HZPwKDv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sT1HZPwKDv nav.navbar {
  position: fixed;
}
.cid-sT1HZPwKDv .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sT1HZPwKDv .wrapper {
    padding: 0;
  }
}
.cid-sT1HZPwKDv .btn {
  border-radius: 30px;
}
.cid-sT1HZPwKDv .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-sT1HZPwKDv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sT1HZPwKDv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sT1HZPwKDv .dropdown-item:hover,
.cid-sT1HZPwKDv .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sT1HZPwKDv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sT1HZPwKDv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sT1HZPwKDv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sT1HZPwKDv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sT1HZPwKDv .nav-link {
  position: relative;
}
.cid-sT1HZPwKDv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sT1HZPwKDv .dropdown-menu,
.cid-sT1HZPwKDv .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sT1HZPwKDv .nav-item:focus,
.cid-sT1HZPwKDv .nav-link:focus {
  outline: none;
}
.cid-sT1HZPwKDv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sT1HZPwKDv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sT1HZPwKDv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sT1HZPwKDv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sT1HZPwKDv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sT1HZPwKDv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sT1HZPwKDv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sT1HZPwKDv .navbar.opened {
  transition: all 0.3s;
}
.cid-sT1HZPwKDv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sT1HZPwKDv .navbar .navbar-logo img {
  width: auto;
}
.cid-sT1HZPwKDv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sT1HZPwKDv .navbar.collapsed {
  justify-content: center;
}
.cid-sT1HZPwKDv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sT1HZPwKDv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sT1HZPwKDv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sT1HZPwKDv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sT1HZPwKDv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sT1HZPwKDv .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-sT1HZPwKDv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sT1HZPwKDv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sT1HZPwKDv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sT1HZPwKDv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sT1HZPwKDv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sT1HZPwKDv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sT1HZPwKDv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sT1HZPwKDv .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-sT1HZPwKDv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sT1HZPwKDv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sT1HZPwKDv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sT1HZPwKDv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sT1HZPwKDv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sT1HZPwKDv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sT1HZPwKDv .navbar.navbar-short {
  min-height: 60px;
}
.cid-sT1HZPwKDv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sT1HZPwKDv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sT1HZPwKDv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sT1HZPwKDv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sT1HZPwKDv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sT1HZPwKDv .dropdown-item.active,
.cid-sT1HZPwKDv .dropdown-item:active {
  background-color: transparent;
}
.cid-sT1HZPwKDv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sT1HZPwKDv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sT1HZPwKDv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sT1HZPwKDv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sT1HZPwKDv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sT1HZPwKDv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sT1HZPwKDv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sT1HZPwKDv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sT1HZPwKDv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sT1HZPwKDv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sT1HZPwKDv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sT1HZPwKDv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sT1HZPwKDv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sT1HZPwKDv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sT1HZPwKDv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sT1HZPwKDv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sT1HZPwKDv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sT1HZPwKDv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sT1HZPwKDv .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sT1HZPwKDv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sT1HZPwKDv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sT1HZPwKDv .navbar {
    height: 70px;
  }
  .cid-sT1HZPwKDv .navbar.opened {
    height: auto;
  }
  .cid-sT1HZPwKDv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl41QCKmkI {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl41QCKmkI .container {
    max-width: 1400px;
  }
}
.cid-tl41QCKmkI .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl41QCKmkI .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl41QCKmkI .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl41QCKmkI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl41QCKmkI .card-wrapper {
  margin-top: 3rem;
}
.cid-tl41QCKmkI .row {
  justify-content: center;
}
.cid-tl41QCKmkI .mbr-section-title {
  color: #1a449a;
}
.cid-tl41QCKmkI .card-title,
.cid-tl41QCKmkI .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl41QCKmkI .card-text {
  color: #1a449a;
}
.cid-tl41QCKmkI .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sWBcHBcXV7 {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sWBcHBcXV7 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-sWBcHBcXV7 .mbr-text,
.cid-sWBcHBcXV7 .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sWBcHBcXV7 .mbr-section-title,
  .cid-sWBcHBcXV7 .mbr-section-btn,
  .cid-sWBcHBcXV7 .mbr-text {
    text-align: center;
  }
}
.cid-sWBcHJ8pNF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sWBcHJ8pNF nav.navbar {
  position: fixed;
}
.cid-sWBcHJ8pNF .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sWBcHJ8pNF .wrapper {
    padding: 0;
  }
}
.cid-sWBcHJ8pNF .btn {
  border-radius: 30px;
}
.cid-sWBcHJ8pNF .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-sWBcHJ8pNF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sWBcHJ8pNF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sWBcHJ8pNF .dropdown-item:hover,
.cid-sWBcHJ8pNF .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sWBcHJ8pNF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sWBcHJ8pNF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sWBcHJ8pNF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sWBcHJ8pNF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sWBcHJ8pNF .nav-link {
  position: relative;
}
.cid-sWBcHJ8pNF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sWBcHJ8pNF .dropdown-menu,
.cid-sWBcHJ8pNF .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sWBcHJ8pNF .nav-item:focus,
.cid-sWBcHJ8pNF .nav-link:focus {
  outline: none;
}
.cid-sWBcHJ8pNF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sWBcHJ8pNF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sWBcHJ8pNF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sWBcHJ8pNF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sWBcHJ8pNF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sWBcHJ8pNF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sWBcHJ8pNF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sWBcHJ8pNF .navbar.opened {
  transition: all 0.3s;
}
.cid-sWBcHJ8pNF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sWBcHJ8pNF .navbar .navbar-logo img {
  width: auto;
}
.cid-sWBcHJ8pNF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sWBcHJ8pNF .navbar.collapsed {
  justify-content: center;
}
.cid-sWBcHJ8pNF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sWBcHJ8pNF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sWBcHJ8pNF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sWBcHJ8pNF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sWBcHJ8pNF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sWBcHJ8pNF .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-sWBcHJ8pNF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sWBcHJ8pNF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sWBcHJ8pNF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sWBcHJ8pNF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sWBcHJ8pNF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sWBcHJ8pNF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sWBcHJ8pNF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sWBcHJ8pNF .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-sWBcHJ8pNF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sWBcHJ8pNF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sWBcHJ8pNF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sWBcHJ8pNF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sWBcHJ8pNF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sWBcHJ8pNF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sWBcHJ8pNF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sWBcHJ8pNF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sWBcHJ8pNF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sWBcHJ8pNF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sWBcHJ8pNF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sWBcHJ8pNF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sWBcHJ8pNF .dropdown-item.active,
.cid-sWBcHJ8pNF .dropdown-item:active {
  background-color: transparent;
}
.cid-sWBcHJ8pNF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sWBcHJ8pNF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sWBcHJ8pNF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sWBcHJ8pNF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sWBcHJ8pNF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sWBcHJ8pNF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sWBcHJ8pNF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sWBcHJ8pNF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sWBcHJ8pNF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sWBcHJ8pNF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sWBcHJ8pNF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sWBcHJ8pNF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWBcHJ8pNF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sWBcHJ8pNF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sWBcHJ8pNF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWBcHJ8pNF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sWBcHJ8pNF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sWBcHJ8pNF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sWBcHJ8pNF .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sWBcHJ8pNF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sWBcHJ8pNF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sWBcHJ8pNF .navbar {
    height: 70px;
  }
  .cid-sWBcHJ8pNF .navbar.opened {
    height: auto;
  }
  .cid-sWBcHJ8pNF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl41H5xUNG {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl41H5xUNG .container {
    max-width: 1400px;
  }
}
.cid-tl41H5xUNG .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl41H5xUNG .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl41H5xUNG .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl41H5xUNG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl41H5xUNG .card-wrapper {
  margin-top: 3rem;
}
.cid-tl41H5xUNG .row {
  justify-content: center;
}
.cid-tl41H5xUNG .mbr-section-title {
  color: #1a449a;
}
.cid-tl41H5xUNG .card-title,
.cid-tl41H5xUNG .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl41H5xUNG .card-text {
  color: #1a449a;
}
.cid-tl41H5xUNG .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sS7ggCI9oc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sS7ggCI9oc .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sS7ggCI9oc .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sS7ggCI9oc .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sS7ggCI9oc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sS7ggCI9oc .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sS7ggCI9oc .row {
  justify-content: center;
}
.cid-sS7ggCI9oc .card-text {
  color: #000000;
}
.cid-sS7ggCI9oc .card-title,
.cid-sS7ggCI9oc .iconfont-wrapper {
  color: #263d5a;
}
.cid-sS7ggCI9oc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sS7ggCI9oc .mbr-section-title {
  color: #ffffff;
}
.cid-sRetETBaCv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRetETBaCv .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRetETBaCv .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRetETBaCv .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRetETBaCv .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRetETBaCv .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRetETBaCv .row {
  justify-content: center;
}
.cid-sRetETBaCv .card-text {
  color: #000000;
}
.cid-sRetETBaCv .card-title,
.cid-sRetETBaCv .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRetETBaCv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRetETBaCv .mbr-section-title {
  color: #ffffff;
}
.cid-sRfKNx5Drt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfKNx5Drt .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfKNx5Drt .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfKNx5Drt .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfKNx5Drt .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfKNx5Drt .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfKNx5Drt .row {
  justify-content: center;
}
.cid-sRfKNx5Drt .card-text {
  color: #000000;
}
.cid-sRfKNx5Drt .card-title,
.cid-sRfKNx5Drt .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfKNx5Drt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfKNx5Drt .mbr-section-title {
  color: #ffffff;
}
.cid-tUU9CDuj20 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tUU9CDuj20 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUU9CDuj20 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tUU9CDuj20 .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tUU9CDuj20 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tUU9CDuj20 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tUU9CDuj20 .row {
  justify-content: center;
}
.cid-tUU9CDuj20 .card-text {
  color: #000000;
}
.cid-tUU9CDuj20 .card-title,
.cid-tUU9CDuj20 .iconfont-wrapper {
  color: #263d5a;
}
.cid-tUU9CDuj20 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tUU9CDuj20 .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYi4HMyn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYi4HMyn .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYi4HMyn .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYi4HMyn .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYi4HMyn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYi4HMyn .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYi4HMyn .row {
  justify-content: center;
}
.cid-sRfYi4HMyn .card-text {
  color: #000000;
}
.cid-sRfYi4HMyn .card-title,
.cid-sRfYi4HMyn .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYi4HMyn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYi4HMyn .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYnjy46i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYnjy46i .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYnjy46i .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYnjy46i .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYnjy46i .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYnjy46i .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYnjy46i .row {
  justify-content: center;
}
.cid-sRfYnjy46i .card-text {
  color: #000000;
}
.cid-sRfYnjy46i .card-title,
.cid-sRfYnjy46i .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYnjy46i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYnjy46i .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYp5Obqe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYp5Obqe .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYp5Obqe .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYp5Obqe .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYp5Obqe .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYp5Obqe .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYp5Obqe .row {
  justify-content: center;
}
.cid-sRfYp5Obqe .card-text {
  color: #000000;
}
.cid-sRfYp5Obqe .card-title,
.cid-sRfYp5Obqe .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYp5Obqe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYp5Obqe .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYqQ9VC3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYqQ9VC3 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYqQ9VC3 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYqQ9VC3 .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYqQ9VC3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYqQ9VC3 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYqQ9VC3 .row {
  justify-content: center;
}
.cid-sRfYqQ9VC3 .card-text {
  color: #000000;
}
.cid-sRfYqQ9VC3 .card-title,
.cid-sRfYqQ9VC3 .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYqQ9VC3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYqQ9VC3 .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYswLhLZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYswLhLZ .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYswLhLZ .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYswLhLZ .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYswLhLZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYswLhLZ .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYswLhLZ .row {
  justify-content: center;
}
.cid-sRfYswLhLZ .card-text {
  color: #000000;
}
.cid-sRfYswLhLZ .card-title,
.cid-sRfYswLhLZ .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYswLhLZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYswLhLZ .mbr-section-title {
  color: #ffffff;
}
.cid-sRfYu4hStd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sRfYu4hStd .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRfYu4hStd .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sRfYu4hStd .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sRfYu4hStd .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sRfYu4hStd .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sRfYu4hStd .row {
  justify-content: center;
}
.cid-sRfYu4hStd .card-text {
  color: #000000;
}
.cid-sRfYu4hStd .card-title,
.cid-sRfYu4hStd .iconfont-wrapper {
  color: #263d5a;
}
.cid-sRfYu4hStd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRfYu4hStd .mbr-section-title {
  color: #ffffff;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl42uX9Wze {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl42uX9Wze .container {
    max-width: 1400px;
  }
}
.cid-tl42uX9Wze .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl42uX9Wze .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl42uX9Wze .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl42uX9Wze .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl42uX9Wze .card-wrapper {
  margin-top: 3rem;
}
.cid-tl42uX9Wze .row {
  justify-content: center;
}
.cid-tl42uX9Wze .mbr-section-title {
  color: #1a449a;
}
.cid-tl42uX9Wze .card-title,
.cid-tl42uX9Wze .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl42uX9Wze .card-text {
  color: #1a449a;
}
.cid-tl42uX9Wze .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-tgd9AJvXF0 {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tgd9AJvXF0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tgd9AJvXF0 .mbr-text,
.cid-tgd9AJvXF0 .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tgd9AJvXF0 .mbr-section-title,
  .cid-tgd9AJvXF0 .mbr-section-btn,
  .cid-tgd9AJvXF0 .mbr-text {
    text-align: center;
  }
}
.cid-tgd9AKKqqG {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tgd9AKKqqG .mbr-section-title {
  text-align: center;
}
.cid-tgd9AKKqqG .mbr-section-subtitle {
  text-align: left;
}
.cid-tgd9AKKqqG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tlgA4iA1XF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tlgA4iA1XF .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-tlgA4iA1XF img,
.cid-tlgA4iA1XF .item-img {
  width: 100%;
}
.cid-tlgA4iA1XF .item:focus,
.cid-tlgA4iA1XF span:focus {
  outline: none;
}
.cid-tlgA4iA1XF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tlgA4iA1XF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tlgA4iA1XF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tlgA4iA1XF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tlgA4iA1XF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tlgA4iA1XF .mbr-section-title {
  color: #232323;
}
.cid-tlgA4iA1XF .mbr-text,
.cid-tlgA4iA1XF .mbr-section-btn {
  text-align: left;
}
.cid-tlgA4iA1XF .item-title {
  text-align: left;
}
.cid-tlgA4iA1XF .item-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tlheZZU4Vo {
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tlheZZU4Vo .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tlheZZU4Vo .mbr-text,
.cid-tlheZZU4Vo .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tlheZZU4Vo .mbr-section-title,
  .cid-tlheZZU4Vo .mbr-section-btn,
  .cid-tlheZZU4Vo .mbr-text {
    text-align: center;
  }
}
.cid-tgd9ALUj8q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tgd9ALUj8q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tgd9ALUj8q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgd9ALUj8q .text-wrapper {
    padding: 2rem;
  }
}
.cid-tgd9AMVTH2 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tgd9AMVTH2 img,
.cid-tgd9AMVTH2 .item-img {
  width: 100%;
}
.cid-tgd9AMVTH2 .item:focus,
.cid-tgd9AMVTH2 span:focus {
  outline: none;
}
.cid-tgd9AMVTH2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tgd9AMVTH2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ececec;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tgd9AMVTH2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgd9AMVTH2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tgd9AMVTH2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tgd9AMVTH2 .mbr-section-title {
  color: #232323;
}
.cid-tgd9AMVTH2 .mbr-text,
.cid-tgd9AMVTH2 .mbr-section-btn {
  text-align: center;
}
.cid-tgd9AMVTH2 .item-title {
  text-align: center;
}
.cid-tgd9AMVTH2 .item-subtitle {
  text-align: left;
}
.cid-tgd9AO3Rct {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tgd9AO3Rct .mbr-section-title {
  text-align: center;
}
.cid-tgd9AO3Rct .mbr-section-subtitle {
  text-align: center;
}
.cid-tgd9AO3Rct .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tgd9ARbI9d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgd9ARbI9d nav.navbar {
  position: fixed;
}
.cid-tgd9ARbI9d .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tgd9ARbI9d .wrapper {
    padding: 0;
  }
}
.cid-tgd9ARbI9d .btn {
  border-radius: 30px;
}
.cid-tgd9ARbI9d .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-tgd9ARbI9d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgd9ARbI9d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tgd9ARbI9d .dropdown-item:hover,
.cid-tgd9ARbI9d .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tgd9ARbI9d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgd9ARbI9d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgd9ARbI9d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tgd9ARbI9d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgd9ARbI9d .nav-link {
  position: relative;
}
.cid-tgd9ARbI9d .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tgd9ARbI9d .dropdown-menu,
.cid-tgd9ARbI9d .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tgd9ARbI9d .nav-item:focus,
.cid-tgd9ARbI9d .nav-link:focus {
  outline: none;
}
.cid-tgd9ARbI9d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgd9ARbI9d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgd9ARbI9d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgd9ARbI9d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgd9ARbI9d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgd9ARbI9d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgd9ARbI9d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tgd9ARbI9d .navbar.opened {
  transition: all 0.3s;
}
.cid-tgd9ARbI9d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgd9ARbI9d .navbar .navbar-logo img {
  width: auto;
}
.cid-tgd9ARbI9d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgd9ARbI9d .navbar.collapsed {
  justify-content: center;
}
.cid-tgd9ARbI9d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgd9ARbI9d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgd9ARbI9d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tgd9ARbI9d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgd9ARbI9d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgd9ARbI9d .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-tgd9ARbI9d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgd9ARbI9d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgd9ARbI9d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgd9ARbI9d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgd9ARbI9d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgd9ARbI9d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgd9ARbI9d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgd9ARbI9d .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-tgd9ARbI9d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgd9ARbI9d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgd9ARbI9d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgd9ARbI9d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgd9ARbI9d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgd9ARbI9d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgd9ARbI9d .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgd9ARbI9d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgd9ARbI9d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgd9ARbI9d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgd9ARbI9d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgd9ARbI9d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgd9ARbI9d .dropdown-item.active,
.cid-tgd9ARbI9d .dropdown-item:active {
  background-color: transparent;
}
.cid-tgd9ARbI9d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgd9ARbI9d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgd9ARbI9d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgd9ARbI9d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tgd9ARbI9d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgd9ARbI9d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgd9ARbI9d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgd9ARbI9d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgd9ARbI9d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tgd9ARbI9d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tgd9ARbI9d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgd9ARbI9d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgd9ARbI9d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgd9ARbI9d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgd9ARbI9d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgd9ARbI9d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgd9ARbI9d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgd9ARbI9d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgd9ARbI9d .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tgd9ARbI9d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgd9ARbI9d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgd9ARbI9d .navbar {
    height: 70px;
  }
  .cid-tgd9ARbI9d .navbar.opened {
    height: auto;
  }
  .cid-tgd9ARbI9d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl401Jkwc2 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl401Jkwc2 .container {
    max-width: 1400px;
  }
}
.cid-tl401Jkwc2 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl401Jkwc2 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl401Jkwc2 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl401Jkwc2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl401Jkwc2 .card-wrapper {
  margin-top: 3rem;
}
.cid-tl401Jkwc2 .row {
  justify-content: center;
}
.cid-tl401Jkwc2 .mbr-section-title {
  color: #1a449a;
}
.cid-tl401Jkwc2 .card-title,
.cid-tl401Jkwc2 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl401Jkwc2 .card-text {
  color: #1a449a;
}
.cid-tl401Jkwc2 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-sQe0olqqzk {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQe0olqqzk .mbr-section-title {
  text-align: center;
}
.cid-sQe0olqqzk .mbr-text,
.cid-sQe0olqqzk .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQe0olqqzk .mbr-section-title,
  .cid-sQe0olqqzk .mbr-section-btn,
  .cid-sQe0olqqzk .mbr-text {
    text-align: center;
  }
}
.cid-sQuZzflf5M {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQuZzflf5M .mbr-section-title {
  text-align: center;
}
.cid-sQuZzflf5M .mbr-text,
.cid-sQuZzflf5M .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQuZzflf5M .mbr-section-title,
  .cid-sQuZzflf5M .mbr-section-btn,
  .cid-sQuZzflf5M .mbr-text {
    text-align: center;
  }
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl40fr0plx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl40fr0plx .container {
    max-width: 1400px;
  }
}
.cid-tl40fr0plx .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl40fr0plx .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl40fr0plx .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl40fr0plx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl40fr0plx .card-wrapper {
  margin-top: 3rem;
}
.cid-tl40fr0plx .row {
  justify-content: center;
}
.cid-tl40fr0plx .mbr-section-title {
  color: #1a449a;
}
.cid-tl40fr0plx .card-title,
.cid-tl40fr0plx .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl40fr0plx .card-text {
  color: #1a449a;
}
.cid-tl40fr0plx .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-tgqavsTDon {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tgqavsTDon .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tgqavsTDon img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgqavsTDon .text-wrapper {
    padding: 2rem;
  }
}
.cid-tgqavsTDon .mbr-section-title {
  text-align: center;
}
.cid-tgqavjEukO {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tgqavjEukO .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tgqavjEukO .mbr-text,
.cid-tgqavjEukO .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tgqavjEukO .mbr-section-title,
  .cid-tgqavjEukO .mbr-section-btn,
  .cid-tgqavjEukO .mbr-text {
    text-align: center;
  }
}
.cid-tgqavq5cqN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tgqavq5cqN .mbr-section-title {
  text-align: center;
}
.cid-tgqavq5cqN .mbr-section-subtitle {
  text-align: left;
}
.cid-tgqycZlXoM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tgqycZlXoM .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgqycZlXoM .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tgqycZlXoM .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tgqycZlXoM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tgqycZlXoM .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tgqycZlXoM .row {
  justify-content: center;
}
.cid-tgqycZlXoM .card-text {
  color: #000000;
}
.cid-tgqycZlXoM .card-title,
.cid-tgqycZlXoM .iconfont-wrapper {
  color: #263d5a;
}
.cid-tgqycZlXoM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgqycZlXoM .mbr-section-title {
  color: #ffffff;
}
.cid-tgsdFfDANp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
@media (max-width: 991px) {
  .cid-tgsdFfDANp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tgsdFfDANp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgsdFfDANp .text-wrapper {
    padding: 2rem;
  }
}
.cid-tgsdFfDANp .mbr-section-title {
  text-align: center;
}
.cid-tgqavyHqme {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tgqavyHqme .mbr-section-title {
  text-align: center;
}
.cid-tgqavyHqme .mbr-section-subtitle {
  text-align: center;
}
.cid-tgqavyHqme .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tgxsloRs82 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tgxsloRs82 .mbr-section-title {
  text-align: center;
}
.cid-tgxsloRs82 .mbr-section-subtitle {
  text-align: center;
}
.cid-tgxsloRs82 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tgqavFP8Vl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgqavFP8Vl nav.navbar {
  position: fixed;
}
.cid-tgqavFP8Vl .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tgqavFP8Vl .wrapper {
    padding: 0;
  }
}
.cid-tgqavFP8Vl .btn {
  border-radius: 30px;
}
.cid-tgqavFP8Vl .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-tgqavFP8Vl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgqavFP8Vl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tgqavFP8Vl .dropdown-item:hover,
.cid-tgqavFP8Vl .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tgqavFP8Vl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgqavFP8Vl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgqavFP8Vl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tgqavFP8Vl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgqavFP8Vl .nav-link {
  position: relative;
}
.cid-tgqavFP8Vl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tgqavFP8Vl .dropdown-menu,
.cid-tgqavFP8Vl .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tgqavFP8Vl .nav-item:focus,
.cid-tgqavFP8Vl .nav-link:focus {
  outline: none;
}
.cid-tgqavFP8Vl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgqavFP8Vl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgqavFP8Vl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgqavFP8Vl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgqavFP8Vl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgqavFP8Vl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgqavFP8Vl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tgqavFP8Vl .navbar.opened {
  transition: all 0.3s;
}
.cid-tgqavFP8Vl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgqavFP8Vl .navbar .navbar-logo img {
  width: auto;
}
.cid-tgqavFP8Vl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgqavFP8Vl .navbar.collapsed {
  justify-content: center;
}
.cid-tgqavFP8Vl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgqavFP8Vl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgqavFP8Vl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tgqavFP8Vl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgqavFP8Vl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgqavFP8Vl .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-tgqavFP8Vl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgqavFP8Vl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgqavFP8Vl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgqavFP8Vl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgqavFP8Vl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgqavFP8Vl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgqavFP8Vl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgqavFP8Vl .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-tgqavFP8Vl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgqavFP8Vl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgqavFP8Vl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgqavFP8Vl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgqavFP8Vl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgqavFP8Vl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgqavFP8Vl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgqavFP8Vl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgqavFP8Vl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgqavFP8Vl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgqavFP8Vl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgqavFP8Vl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgqavFP8Vl .dropdown-item.active,
.cid-tgqavFP8Vl .dropdown-item:active {
  background-color: transparent;
}
.cid-tgqavFP8Vl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgqavFP8Vl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgqavFP8Vl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgqavFP8Vl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tgqavFP8Vl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgqavFP8Vl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgqavFP8Vl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgqavFP8Vl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgqavFP8Vl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tgqavFP8Vl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tgqavFP8Vl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgqavFP8Vl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgqavFP8Vl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgqavFP8Vl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgqavFP8Vl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgqavFP8Vl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgqavFP8Vl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgqavFP8Vl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgqavFP8Vl .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tgqavFP8Vl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgqavFP8Vl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgqavFP8Vl .navbar {
    height: 70px;
  }
  .cid-tgqavFP8Vl .navbar.opened {
    height: auto;
  }
  .cid-tgqavFP8Vl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl42n5QLSA {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl42n5QLSA .container {
    max-width: 1400px;
  }
}
.cid-tl42n5QLSA .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl42n5QLSA .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl42n5QLSA .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl42n5QLSA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl42n5QLSA .card-wrapper {
  margin-top: 3rem;
}
.cid-tl42n5QLSA .row {
  justify-content: center;
}
.cid-tl42n5QLSA .mbr-section-title {
  color: #1a449a;
}
.cid-tl42n5QLSA .card-title,
.cid-tl42n5QLSA .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl42n5QLSA .card-text {
  color: #1a449a;
}
.cid-tl42n5QLSA .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-tgsEY07PpX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tgsEY07PpX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tgsEY07PpX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgsEY07PpX .text-wrapper {
    padding: 2rem;
  }
}
.cid-tgsEY07PpX .mbr-section-title {
  text-align: center;
}
.cid-tgsEY3uyEE {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tgsEY3uyEE .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tgsEY3uyEE .mbr-text,
.cid-tgsEY3uyEE .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tgsEY3uyEE .mbr-section-title,
  .cid-tgsEY3uyEE .mbr-section-btn,
  .cid-tgsEY3uyEE .mbr-text {
    text-align: center;
  }
}
.cid-tgsEY4DmIz {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tgsEY4DmIz .mbr-section-title {
  text-align: left;
}
.cid-tgsEY4DmIz .mbr-section-subtitle {
  text-align: left;
}
.cid-tgsEY7505F {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
@media (max-width: 991px) {
  .cid-tgsEY7505F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tgsEY7505F img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgsEY7505F .text-wrapper {
    padding: 2rem;
  }
}
.cid-tgsEY7505F .mbr-section-title {
  text-align: center;
}
.cid-tgsEY8wD4a {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tgsEY8wD4a .mbr-section-title {
  text-align: center;
}
.cid-tgsEY8wD4a .mbr-section-subtitle {
  text-align: center;
}
.cid-tgsEY8wD4a .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tgsEY5r6BE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tgsEY5r6BE .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgsEY5r6BE .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tgsEY5r6BE .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tgsEY5r6BE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tgsEY5r6BE .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tgsEY5r6BE .row {
  justify-content: center;
}
.cid-tgsEY5r6BE .card-text {
  color: #000000;
  text-align: left;
}
.cid-tgsEY5r6BE .card-title,
.cid-tgsEY5r6BE .iconfont-wrapper {
  color: #263d5a;
}
.cid-tgsEY5r6BE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgsEY5r6BE .mbr-section-title {
  color: #ffffff;
}
.cid-tgsEYdV52Q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgsEYdV52Q nav.navbar {
  position: fixed;
}
.cid-tgsEYdV52Q .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tgsEYdV52Q .wrapper {
    padding: 0;
  }
}
.cid-tgsEYdV52Q .btn {
  border-radius: 30px;
}
.cid-tgsEYdV52Q .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-tgsEYdV52Q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgsEYdV52Q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tgsEYdV52Q .dropdown-item:hover,
.cid-tgsEYdV52Q .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tgsEYdV52Q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgsEYdV52Q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgsEYdV52Q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tgsEYdV52Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgsEYdV52Q .nav-link {
  position: relative;
}
.cid-tgsEYdV52Q .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tgsEYdV52Q .dropdown-menu,
.cid-tgsEYdV52Q .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tgsEYdV52Q .nav-item:focus,
.cid-tgsEYdV52Q .nav-link:focus {
  outline: none;
}
.cid-tgsEYdV52Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgsEYdV52Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgsEYdV52Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgsEYdV52Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgsEYdV52Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgsEYdV52Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgsEYdV52Q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tgsEYdV52Q .navbar.opened {
  transition: all 0.3s;
}
.cid-tgsEYdV52Q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgsEYdV52Q .navbar .navbar-logo img {
  width: auto;
}
.cid-tgsEYdV52Q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgsEYdV52Q .navbar.collapsed {
  justify-content: center;
}
.cid-tgsEYdV52Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgsEYdV52Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgsEYdV52Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tgsEYdV52Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgsEYdV52Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgsEYdV52Q .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-tgsEYdV52Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgsEYdV52Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgsEYdV52Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgsEYdV52Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgsEYdV52Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgsEYdV52Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgsEYdV52Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgsEYdV52Q .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-tgsEYdV52Q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgsEYdV52Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgsEYdV52Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgsEYdV52Q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgsEYdV52Q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgsEYdV52Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgsEYdV52Q .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgsEYdV52Q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgsEYdV52Q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgsEYdV52Q .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgsEYdV52Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgsEYdV52Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgsEYdV52Q .dropdown-item.active,
.cid-tgsEYdV52Q .dropdown-item:active {
  background-color: transparent;
}
.cid-tgsEYdV52Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgsEYdV52Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgsEYdV52Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgsEYdV52Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tgsEYdV52Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgsEYdV52Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgsEYdV52Q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgsEYdV52Q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgsEYdV52Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tgsEYdV52Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tgsEYdV52Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgsEYdV52Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgsEYdV52Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgsEYdV52Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgsEYdV52Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgsEYdV52Q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgsEYdV52Q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgsEYdV52Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgsEYdV52Q .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tgsEYdV52Q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgsEYdV52Q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgsEYdV52Q .navbar {
    height: 70px;
  }
  .cid-tgsEYdV52Q .navbar.opened {
    height: auto;
  }
  .cid-tgsEYdV52Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl42fW4sZa {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl42fW4sZa .container {
    max-width: 1400px;
  }
}
.cid-tl42fW4sZa .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl42fW4sZa .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl42fW4sZa .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl42fW4sZa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl42fW4sZa .card-wrapper {
  margin-top: 3rem;
}
.cid-tl42fW4sZa .row {
  justify-content: center;
}
.cid-tl42fW4sZa .mbr-section-title {
  color: #1a449a;
}
.cid-tl42fW4sZa .card-title,
.cid-tl42fW4sZa .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl42fW4sZa .card-text {
  color: #1a449a;
}
.cid-tl42fW4sZa .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
.cid-tGVWj2rY5s {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tGVWj2rY5s .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tGVWj2rY5s form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tGVWj2rY5s form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tGVWj2rY5s form.mbr-form {
    padding: 1rem;
  }
}
.cid-tGVWj2rY5s form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tGVWj2rY5s form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tGVWj2rY5s H6 {
  text-align: center;
}
.cid-tGVWj2rY5s H4 {
  text-align: center;
}
.cid-tGVWj56NUf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGVWj56NUf nav.navbar {
  position: fixed;
}
.cid-tGVWj56NUf .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tGVWj56NUf .wrapper {
    padding: 0;
  }
}
.cid-tGVWj56NUf .btn {
  border-radius: 30px;
}
.cid-tGVWj56NUf .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-tGVWj56NUf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGVWj56NUf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGVWj56NUf .dropdown-item:hover,
.cid-tGVWj56NUf .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tGVWj56NUf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGVWj56NUf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGVWj56NUf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tGVWj56NUf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGVWj56NUf .nav-link {
  position: relative;
}
.cid-tGVWj56NUf .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGVWj56NUf .dropdown-menu,
.cid-tGVWj56NUf .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tGVWj56NUf .nav-item:focus,
.cid-tGVWj56NUf .nav-link:focus {
  outline: none;
}
.cid-tGVWj56NUf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGVWj56NUf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGVWj56NUf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGVWj56NUf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGVWj56NUf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGVWj56NUf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGVWj56NUf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tGVWj56NUf .navbar.opened {
  transition: all 0.3s;
}
.cid-tGVWj56NUf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGVWj56NUf .navbar .navbar-logo img {
  width: auto;
}
.cid-tGVWj56NUf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGVWj56NUf .navbar.collapsed {
  justify-content: center;
}
.cid-tGVWj56NUf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGVWj56NUf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGVWj56NUf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tGVWj56NUf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGVWj56NUf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGVWj56NUf .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-tGVWj56NUf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGVWj56NUf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGVWj56NUf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGVWj56NUf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGVWj56NUf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGVWj56NUf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGVWj56NUf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGVWj56NUf .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-tGVWj56NUf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGVWj56NUf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGVWj56NUf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGVWj56NUf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGVWj56NUf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGVWj56NUf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGVWj56NUf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGVWj56NUf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGVWj56NUf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGVWj56NUf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGVWj56NUf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGVWj56NUf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGVWj56NUf .dropdown-item.active,
.cid-tGVWj56NUf .dropdown-item:active {
  background-color: transparent;
}
.cid-tGVWj56NUf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGVWj56NUf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGVWj56NUf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGVWj56NUf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tGVWj56NUf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGVWj56NUf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGVWj56NUf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGVWj56NUf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGVWj56NUf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tGVWj56NUf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tGVWj56NUf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGVWj56NUf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGVWj56NUf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGVWj56NUf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGVWj56NUf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGVWj56NUf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGVWj56NUf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGVWj56NUf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGVWj56NUf .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tGVWj56NUf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGVWj56NUf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGVWj56NUf .navbar {
    height: 70px;
  }
  .cid-tGVWj56NUf .navbar.opened {
    height: auto;
  }
  .cid-tGVWj56NUf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGVWj8rTUr {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tGVWj8rTUr .container {
    max-width: 1400px;
  }
}
.cid-tGVWj8rTUr .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tGVWj8rTUr .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tGVWj8rTUr .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tGVWj8rTUr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tGVWj8rTUr .card-wrapper {
  margin-top: 3rem;
}
.cid-tGVWj8rTUr .row {
  justify-content: center;
}
.cid-tGVWj8rTUr .mbr-section-title {
  color: #1a449a;
}
.cid-tGVWj8rTUr .card-title,
.cid-tGVWj8rTUr .iconfont-wrapper {
  color: #1a449a;
}
.cid-tGVWj8rTUr .card-text {
  color: #1a449a;
}
.cid-tGVWj8rTUr .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tGVWjb77iN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tGVWjb77iN .container-fluid {
  padding: 0;
}
.cid-tGVWjb77iN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tGVWjb77iN .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tGVWjb77iN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tGVWjb77iN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tGVWjb77iN .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tGVWjb77iN .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tGVWjb77iN .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tGVWjb77iN .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tGVWjb77iN .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tGVWjb77iN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tGVWjb77iN .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGVWjb77iN .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tGVWjb77iN .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tGVWjb77iN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGVWjb77iN .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tGVWjb77iN .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tGVWjb77iN .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tGVWjb77iN .copyright .mbr-text {
  margin: 0;
}
.cid-tGVWjb77iN .mbr-section-title,
.cid-tGVWjb77iN .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tGVWjb77iN .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGVWjb77iN .foot-menu {
  text-align: center;
}
.cid-tCj8cVmaBZ {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tCj8cVmaBZ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tCj8cVmaBZ .mbr-text,
.cid-tCj8cVmaBZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tCj8cVmaBZ .mbr-section-title,
  .cid-tCj8cVmaBZ .mbr-section-btn,
  .cid-tCj8cVmaBZ .mbr-text {
    text-align: center;
  }
}
.cid-tCj8cXa4uR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tCj8cXa4uR .mbr-section-title {
  text-align: center;
}
.cid-tCj8cXa4uR .mbr-section-subtitle {
  text-align: left;
}
.cid-tCj8cXa4uR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tCj8cYZyvc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tCj8cYZyvc .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-tCj8cYZyvc img,
.cid-tCj8cYZyvc .item-img {
  width: 100%;
}
.cid-tCj8cYZyvc .item:focus,
.cid-tCj8cYZyvc span:focus {
  outline: none;
}
.cid-tCj8cYZyvc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCj8cYZyvc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCj8cYZyvc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCj8cYZyvc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCj8cYZyvc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCj8cYZyvc .mbr-section-title {
  color: #232323;
}
.cid-tCj8cYZyvc .mbr-text,
.cid-tCj8cYZyvc .mbr-section-btn {
  text-align: left;
}
.cid-tCj8cYZyvc .item-title {
  text-align: left;
}
.cid-tCj8cYZyvc .item-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tCj8d1fZhE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tCj8d1fZhE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCj8d1fZhE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCj8d1fZhE .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEL1aoAoDo {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tEL1aoAoDo .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tEL1aoAoDo .mbr-text,
.cid-tEL1aoAoDo .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tEL1aoAoDo .mbr-section-title,
  .cid-tEL1aoAoDo .mbr-section-btn,
  .cid-tEL1aoAoDo .mbr-text {
    text-align: center;
  }
}
.cid-tEL4DLAWCb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-tEL4DLAWCb .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tEL4DLAWCb img,
.cid-tEL4DLAWCb .item-img {
  width: 100%;
}
.cid-tEL4DLAWCb .item:focus,
.cid-tEL4DLAWCb span:focus {
  outline: none;
}
.cid-tEL4DLAWCb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tEL4DLAWCb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEL4DLAWCb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEL4DLAWCb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tEL4DLAWCb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEL4DLAWCb .mbr-section-title {
  color: #232323;
}
.cid-tEL4DLAWCb .mbr-text,
.cid-tEL4DLAWCb .mbr-section-btn {
  text-align: center;
}
.cid-tEL4DLAWCb .item-title {
  text-align: left;
}
.cid-tEL4DLAWCb .item-subtitle {
  text-align: left;
}
.cid-tCj8d0gf2p {
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tCj8d0gf2p .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tCj8d0gf2p .mbr-text,
.cid-tCj8d0gf2p .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tCj8d0gf2p .mbr-section-title,
  .cid-tCj8d0gf2p .mbr-section-btn,
  .cid-tCj8d0gf2p .mbr-text {
    text-align: center;
  }
}
.cid-tCj8d5znKG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCj8d5znKG nav.navbar {
  position: fixed;
}
.cid-tCj8d5znKG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tCj8d5znKG .wrapper {
    padding: 0;
  }
}
.cid-tCj8d5znKG .btn {
  border-radius: 30px;
}
.cid-tCj8d5znKG .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-tCj8d5znKG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCj8d5znKG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCj8d5znKG .dropdown-item:hover,
.cid-tCj8d5znKG .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tCj8d5znKG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCj8d5znKG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCj8d5znKG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tCj8d5znKG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCj8d5znKG .nav-link {
  position: relative;
}
.cid-tCj8d5znKG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCj8d5znKG .dropdown-menu,
.cid-tCj8d5znKG .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tCj8d5znKG .nav-item:focus,
.cid-tCj8d5znKG .nav-link:focus {
  outline: none;
}
.cid-tCj8d5znKG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCj8d5znKG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCj8d5znKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCj8d5znKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCj8d5znKG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCj8d5znKG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCj8d5znKG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tCj8d5znKG .navbar.opened {
  transition: all 0.3s;
}
.cid-tCj8d5znKG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCj8d5znKG .navbar .navbar-logo img {
  width: auto;
}
.cid-tCj8d5znKG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCj8d5znKG .navbar.collapsed {
  justify-content: center;
}
.cid-tCj8d5znKG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCj8d5znKG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCj8d5znKG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tCj8d5znKG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCj8d5znKG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCj8d5znKG .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-tCj8d5znKG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCj8d5znKG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCj8d5znKG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCj8d5znKG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCj8d5znKG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCj8d5znKG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCj8d5znKG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCj8d5znKG .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-tCj8d5znKG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCj8d5znKG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCj8d5znKG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCj8d5znKG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCj8d5znKG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCj8d5znKG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCj8d5znKG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCj8d5znKG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCj8d5znKG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCj8d5znKG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCj8d5znKG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCj8d5znKG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCj8d5znKG .dropdown-item.active,
.cid-tCj8d5znKG .dropdown-item:active {
  background-color: transparent;
}
.cid-tCj8d5znKG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCj8d5znKG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCj8d5znKG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCj8d5znKG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tCj8d5znKG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCj8d5znKG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCj8d5znKG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCj8d5znKG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCj8d5znKG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tCj8d5znKG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tCj8d5znKG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCj8d5znKG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCj8d5znKG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCj8d5znKG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCj8d5znKG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCj8d5znKG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCj8d5znKG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCj8d5znKG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCj8d5znKG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tCj8d5znKG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCj8d5znKG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCj8d5znKG .navbar {
    height: 70px;
  }
  .cid-tCj8d5znKG .navbar.opened {
    height: auto;
  }
  .cid-tCj8d5znKG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCj8d77pZT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tCj8d77pZT .container {
    max-width: 1400px;
  }
}
.cid-tCj8d77pZT .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tCj8d77pZT .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tCj8d77pZT .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tCj8d77pZT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tCj8d77pZT .card-wrapper {
  margin-top: 3rem;
}
.cid-tCj8d77pZT .row {
  justify-content: center;
}
.cid-tCj8d77pZT .mbr-section-title {
  color: #1a449a;
}
.cid-tCj8d77pZT .card-title,
.cid-tCj8d77pZT .iconfont-wrapper {
  color: #1a449a;
}
.cid-tCj8d77pZT .card-text {
  color: #1a449a;
}
.cid-tCj8d77pZT .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tCj8d8Esxg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tCj8d8Esxg .container-fluid {
  padding: 0;
}
.cid-tCj8d8Esxg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCj8d8Esxg .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tCj8d8Esxg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCj8d8Esxg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tCj8d8Esxg .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tCj8d8Esxg .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tCj8d8Esxg .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tCj8d8Esxg .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tCj8d8Esxg .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCj8d8Esxg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tCj8d8Esxg .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCj8d8Esxg .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tCj8d8Esxg .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tCj8d8Esxg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCj8d8Esxg .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tCj8d8Esxg .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tCj8d8Esxg .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tCj8d8Esxg .copyright .mbr-text {
  margin: 0;
}
.cid-tCj8d8Esxg .mbr-section-title,
.cid-tCj8d8Esxg .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tCj8d8Esxg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tCj8d8Esxg .foot-menu {
  text-align: center;
}
.cid-tQbfHH4ULt {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tQbfHH4ULt .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tQbfHH4ULt .mbr-text,
.cid-tQbfHH4ULt .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tQbfHH4ULt .mbr-section-title,
  .cid-tQbfHH4ULt .mbr-section-btn,
  .cid-tQbfHH4ULt .mbr-text {
    text-align: center;
  }
}
.cid-tQaJ6tFOCO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-tQaJ6tFOCO .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tQaJ6tFOCO img,
.cid-tQaJ6tFOCO .item-img {
  width: 100%;
}
.cid-tQaJ6tFOCO .item:focus,
.cid-tQaJ6tFOCO span:focus {
  outline: none;
}
.cid-tQaJ6tFOCO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQaJ6tFOCO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQaJ6tFOCO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQaJ6tFOCO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tQaJ6tFOCO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQaJ6tFOCO .mbr-section-title {
  color: #232323;
}
.cid-tQaJ6tFOCO .mbr-text,
.cid-tQaJ6tFOCO .mbr-section-btn {
  text-align: center;
}
.cid-tQaJ6tFOCO .item-title {
  text-align: left;
}
.cid-tQaJ6tFOCO .item-subtitle {
  text-align: left;
}
.cid-tOiRsfkPza {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tOiRsfkPza .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tOiRsfkPza .mbr-text,
.cid-tOiRsfkPza .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tOiRsfkPza .mbr-section-title,
  .cid-tOiRsfkPza .mbr-section-btn,
  .cid-tOiRsfkPza .mbr-text {
    text-align: center;
  }
}
.cid-tOiRsfSkHg {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tOiRsfSkHg .mbr-section-title {
  text-align: center;
}
.cid-tOiRsfSkHg .mbr-section-subtitle {
  text-align: left;
}
.cid-tOiRsfSkHg .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tOiRsgcylV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tOiRsgcylV .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-tOiRsgcylV img,
.cid-tOiRsgcylV .item-img {
  width: 100%;
}
.cid-tOiRsgcylV .item:focus,
.cid-tOiRsgcylV span:focus {
  outline: none;
}
.cid-tOiRsgcylV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOiRsgcylV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOiRsgcylV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOiRsgcylV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tOiRsgcylV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOiRsgcylV .mbr-section-title {
  color: #232323;
}
.cid-tOiRsgcylV .mbr-text,
.cid-tOiRsgcylV .mbr-section-btn {
  text-align: left;
}
.cid-tOiRsgcylV .item-title {
  text-align: left;
}
.cid-tOiRsgcylV .item-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tOiRsgJdgh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tOiRsgJdgh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tOiRsgJdgh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOiRsgJdgh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tOiRsh6IAt {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tOiRsh6IAt .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tOiRsh6IAt .mbr-text,
.cid-tOiRsh6IAt .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tOiRsh6IAt .mbr-section-title,
  .cid-tOiRsh6IAt .mbr-section-btn,
  .cid-tOiRsh6IAt .mbr-text {
    text-align: center;
  }
}
.cid-tOiRshtBgu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-tOiRshtBgu .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tOiRshtBgu img,
.cid-tOiRshtBgu .item-img {
  width: 100%;
}
.cid-tOiRshtBgu .item:focus,
.cid-tOiRshtBgu span:focus {
  outline: none;
}
.cid-tOiRshtBgu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOiRshtBgu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOiRshtBgu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOiRshtBgu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tOiRshtBgu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOiRshtBgu .mbr-section-title {
  color: #232323;
}
.cid-tOiRshtBgu .mbr-text,
.cid-tOiRshtBgu .mbr-section-btn {
  text-align: center;
}
.cid-tOiRshtBgu .item-title {
  text-align: left;
}
.cid-tOiRshtBgu .item-subtitle {
  text-align: left;
}
.cid-tOnFckgDeM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tOnFckgDeM .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOnFckgDeM .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tOnFckgDeM .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tOnFckgDeM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOnFckgDeM .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tOnFckgDeM .row {
  justify-content: center;
}
.cid-tOnFckgDeM .card-text {
  color: #000000;
  text-align: left;
}
.cid-tOnFckgDeM .card-title,
.cid-tOnFckgDeM .iconfont-wrapper {
  color: #263d5a;
}
.cid-tOnFckgDeM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tOnFckgDeM .mbr-section-title {
  color: #ffffff;
}
.cid-tOiRshUPPR {
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tOiRshUPPR .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tOiRshUPPR .mbr-text,
.cid-tOiRshUPPR .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tOiRshUPPR .mbr-section-title,
  .cid-tOiRshUPPR .mbr-section-btn,
  .cid-tOiRshUPPR .mbr-text {
    text-align: center;
  }
}
.cid-tOiRsikC1W {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOiRsikC1W nav.navbar {
  position: fixed;
}
.cid-tOiRsikC1W .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tOiRsikC1W .wrapper {
    padding: 0;
  }
}
.cid-tOiRsikC1W .btn {
  border-radius: 30px;
}
.cid-tOiRsikC1W .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-tOiRsikC1W .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOiRsikC1W .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOiRsikC1W .dropdown-item:hover,
.cid-tOiRsikC1W .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tOiRsikC1W .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOiRsikC1W .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOiRsikC1W .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tOiRsikC1W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOiRsikC1W .nav-link {
  position: relative;
}
.cid-tOiRsikC1W .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOiRsikC1W .dropdown-menu,
.cid-tOiRsikC1W .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tOiRsikC1W .nav-item:focus,
.cid-tOiRsikC1W .nav-link:focus {
  outline: none;
}
.cid-tOiRsikC1W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOiRsikC1W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOiRsikC1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOiRsikC1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOiRsikC1W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOiRsikC1W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOiRsikC1W .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tOiRsikC1W .navbar.opened {
  transition: all 0.3s;
}
.cid-tOiRsikC1W .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOiRsikC1W .navbar .navbar-logo img {
  width: auto;
}
.cid-tOiRsikC1W .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOiRsikC1W .navbar.collapsed {
  justify-content: center;
}
.cid-tOiRsikC1W .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOiRsikC1W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOiRsikC1W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tOiRsikC1W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOiRsikC1W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOiRsikC1W .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-tOiRsikC1W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOiRsikC1W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOiRsikC1W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOiRsikC1W .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOiRsikC1W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOiRsikC1W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOiRsikC1W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOiRsikC1W .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-tOiRsikC1W .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOiRsikC1W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOiRsikC1W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOiRsikC1W .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOiRsikC1W .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOiRsikC1W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tOiRsikC1W .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOiRsikC1W .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOiRsikC1W .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOiRsikC1W .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOiRsikC1W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOiRsikC1W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOiRsikC1W .dropdown-item.active,
.cid-tOiRsikC1W .dropdown-item:active {
  background-color: transparent;
}
.cid-tOiRsikC1W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOiRsikC1W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOiRsikC1W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOiRsikC1W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tOiRsikC1W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOiRsikC1W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOiRsikC1W ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOiRsikC1W .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOiRsikC1W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tOiRsikC1W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tOiRsikC1W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOiRsikC1W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOiRsikC1W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOiRsikC1W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOiRsikC1W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiRsikC1W nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOiRsikC1W nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOiRsikC1W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiRsikC1W .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tOiRsikC1W a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOiRsikC1W .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOiRsikC1W .navbar {
    height: 70px;
  }
  .cid-tOiRsikC1W .navbar.opened {
    height: auto;
  }
  .cid-tOiRsikC1W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOiRsiNLOC {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tOiRsiNLOC .container {
    max-width: 1400px;
  }
}
.cid-tOiRsiNLOC .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tOiRsiNLOC .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tOiRsiNLOC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tOiRsiNLOC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tOiRsiNLOC .card-wrapper {
  margin-top: 3rem;
}
.cid-tOiRsiNLOC .row {
  justify-content: center;
}
.cid-tOiRsiNLOC .mbr-section-title {
  color: #1a449a;
}
.cid-tOiRsiNLOC .card-title,
.cid-tOiRsiNLOC .iconfont-wrapper {
  color: #1a449a;
}
.cid-tOiRsiNLOC .card-text {
  color: #1a449a;
}
.cid-tOiRsiNLOC .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tOiRsjjgAW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tOiRsjjgAW .container-fluid {
  padding: 0;
}
.cid-tOiRsjjgAW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tOiRsjjgAW .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tOiRsjjgAW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tOiRsjjgAW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tOiRsjjgAW .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tOiRsjjgAW .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tOiRsjjgAW .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tOiRsjjgAW .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tOiRsjjgAW .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tOiRsjjgAW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tOiRsjjgAW .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOiRsjjgAW .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tOiRsjjgAW .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tOiRsjjgAW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tOiRsjjgAW .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tOiRsjjgAW .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tOiRsjjgAW .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tOiRsjjgAW .copyright .mbr-text {
  margin: 0;
}
.cid-tOiRsjjgAW .mbr-section-title,
.cid-tOiRsjjgAW .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tOiRsjjgAW .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tOiRsjjgAW .foot-menu {
  text-align: center;
}
.cid-tSghTWQTrV {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tSghTWQTrV .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tSghTWQTrV .mbr-text,
.cid-tSghTWQTrV .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tSghTWQTrV .mbr-section-title,
  .cid-tSghTWQTrV .mbr-section-btn,
  .cid-tSghTWQTrV .mbr-text {
    text-align: center;
  }
}
.cid-tSghTXRUyx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-tSghTXRUyx .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tSghTXRUyx img,
.cid-tSghTXRUyx .item-img {
  width: 100%;
}
.cid-tSghTXRUyx .item:focus,
.cid-tSghTXRUyx span:focus {
  outline: none;
}
.cid-tSghTXRUyx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSghTXRUyx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSghTXRUyx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSghTXRUyx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tSghTXRUyx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSghTXRUyx .mbr-section-title {
  color: #232323;
}
.cid-tSghTXRUyx .mbr-text,
.cid-tSghTXRUyx .mbr-section-btn {
  text-align: center;
}
.cid-tSghTXRUyx .item-title {
  text-align: left;
}
.cid-tSghTXRUyx .item-subtitle {
  text-align: left;
}
.cid-tSghTYkTxJ {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tSghTYkTxJ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tSghTYkTxJ .mbr-text,
.cid-tSghTYkTxJ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tSghTYkTxJ .mbr-section-title,
  .cid-tSghTYkTxJ .mbr-section-btn,
  .cid-tSghTYkTxJ .mbr-text {
    text-align: center;
  }
}
.cid-tSghTYKiPS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tSghTYKiPS .mbr-section-title {
  text-align: center;
}
.cid-tSghTYKiPS .mbr-section-subtitle {
  text-align: left;
}
.cid-tSghTYKiPS .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tSghTZiGbY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tSghTZiGbY .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-tSghTZiGbY img,
.cid-tSghTZiGbY .item-img {
  width: 100%;
}
.cid-tSghTZiGbY .item:focus,
.cid-tSghTZiGbY span:focus {
  outline: none;
}
.cid-tSghTZiGbY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSghTZiGbY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSghTZiGbY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSghTZiGbY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tSghTZiGbY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSghTZiGbY .mbr-section-title {
  color: #232323;
}
.cid-tSghTZiGbY .mbr-text,
.cid-tSghTZiGbY .mbr-section-btn {
  text-align: left;
}
.cid-tSghTZiGbY .item-title {
  text-align: left;
}
.cid-tSghTZiGbY .item-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tSghTZHE2m {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tSghTZHE2m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tSghTZHE2m img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tSghTZHE2m .text-wrapper {
    padding: 2rem;
  }
}
.cid-tSghU04A9R {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tSghU04A9R .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tSghU04A9R .mbr-text,
.cid-tSghU04A9R .mbr-section-btn {
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tSghU04A9R .mbr-section-title,
  .cid-tSghU04A9R .mbr-section-btn,
  .cid-tSghU04A9R .mbr-text {
    text-align: center;
  }
}
.cid-tSghU0p7II {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3-1.jpg");
}
.cid-tSghU0p7II .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tSghU0p7II img,
.cid-tSghU0p7II .item-img {
  width: 100%;
}
.cid-tSghU0p7II .item:focus,
.cid-tSghU0p7II span:focus {
  outline: none;
}
.cid-tSghU0p7II .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSghU0p7II .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #47b5ed;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSghU0p7II .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSghU0p7II .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tSghU0p7II .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSghU0p7II .mbr-section-title {
  color: #232323;
}
.cid-tSghU0p7II .mbr-text,
.cid-tSghU0p7II .mbr-section-btn {
  text-align: center;
}
.cid-tSghU0p7II .item-title {
  text-align: left;
}
.cid-tSghU0p7II .item-subtitle {
  text-align: left;
}
.cid-tSghU0SNXl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tSghU0SNXl .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSghU0SNXl .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tSghU0SNXl .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tSghU0SNXl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tSghU0SNXl .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tSghU0SNXl .row {
  justify-content: center;
}
.cid-tSghU0SNXl .card-text {
  color: #000000;
  text-align: left;
}
.cid-tSghU0SNXl .card-title,
.cid-tSghU0SNXl .iconfont-wrapper {
  color: #263d5a;
}
.cid-tSghU0SNXl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSghU0SNXl .mbr-section-title {
  color: #ffffff;
}
.cid-tSghU1qFGy {
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tSghU1qFGy .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tSghU1qFGy .mbr-text,
.cid-tSghU1qFGy .mbr-section-btn {
  color: #353535;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tSghU1qFGy .mbr-section-title,
  .cid-tSghU1qFGy .mbr-section-btn,
  .cid-tSghU1qFGy .mbr-text {
    text-align: center;
  }
}
.cid-tSghU1PA3J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tSghU1PA3J nav.navbar {
  position: fixed;
}
.cid-tSghU1PA3J .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tSghU1PA3J .wrapper {
    padding: 0;
  }
}
.cid-tSghU1PA3J .btn {
  border-radius: 30px;
}
.cid-tSghU1PA3J .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-tSghU1PA3J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSghU1PA3J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSghU1PA3J .dropdown-item:hover,
.cid-tSghU1PA3J .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tSghU1PA3J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSghU1PA3J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSghU1PA3J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tSghU1PA3J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSghU1PA3J .nav-link {
  position: relative;
}
.cid-tSghU1PA3J .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSghU1PA3J .dropdown-menu,
.cid-tSghU1PA3J .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSghU1PA3J .nav-item:focus,
.cid-tSghU1PA3J .nav-link:focus {
  outline: none;
}
.cid-tSghU1PA3J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSghU1PA3J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSghU1PA3J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSghU1PA3J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSghU1PA3J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSghU1PA3J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSghU1PA3J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tSghU1PA3J .navbar.opened {
  transition: all 0.3s;
}
.cid-tSghU1PA3J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSghU1PA3J .navbar .navbar-logo img {
  width: auto;
}
.cid-tSghU1PA3J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSghU1PA3J .navbar.collapsed {
  justify-content: center;
}
.cid-tSghU1PA3J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSghU1PA3J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSghU1PA3J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tSghU1PA3J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSghU1PA3J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSghU1PA3J .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-tSghU1PA3J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSghU1PA3J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSghU1PA3J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSghU1PA3J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSghU1PA3J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSghU1PA3J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSghU1PA3J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSghU1PA3J .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-tSghU1PA3J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSghU1PA3J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSghU1PA3J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSghU1PA3J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSghU1PA3J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSghU1PA3J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tSghU1PA3J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSghU1PA3J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSghU1PA3J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSghU1PA3J .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSghU1PA3J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSghU1PA3J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSghU1PA3J .dropdown-item.active,
.cid-tSghU1PA3J .dropdown-item:active {
  background-color: transparent;
}
.cid-tSghU1PA3J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSghU1PA3J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSghU1PA3J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSghU1PA3J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSghU1PA3J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSghU1PA3J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSghU1PA3J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSghU1PA3J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSghU1PA3J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tSghU1PA3J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tSghU1PA3J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSghU1PA3J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSghU1PA3J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSghU1PA3J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSghU1PA3J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSghU1PA3J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSghU1PA3J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSghU1PA3J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSghU1PA3J .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tSghU1PA3J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSghU1PA3J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSghU1PA3J .navbar {
    height: 70px;
  }
  .cid-tSghU1PA3J .navbar.opened {
    height: auto;
  }
  .cid-tSghU1PA3J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSghU2hHer {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tSghU2hHer .container {
    max-width: 1400px;
  }
}
.cid-tSghU2hHer .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tSghU2hHer .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tSghU2hHer .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tSghU2hHer .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tSghU2hHer .card-wrapper {
  margin-top: 3rem;
}
.cid-tSghU2hHer .row {
  justify-content: center;
}
.cid-tSghU2hHer .mbr-section-title {
  color: #1a449a;
}
.cid-tSghU2hHer .card-title,
.cid-tSghU2hHer .iconfont-wrapper {
  color: #1a449a;
}
.cid-tSghU2hHer .card-text {
  color: #1a449a;
}
.cid-tSghU2hHer .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tSghU2MpVi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tSghU2MpVi .container-fluid {
  padding: 0;
}
.cid-tSghU2MpVi .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSghU2MpVi .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tSghU2MpVi .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tSghU2MpVi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tSghU2MpVi .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tSghU2MpVi .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tSghU2MpVi .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tSghU2MpVi .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tSghU2MpVi .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tSghU2MpVi .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tSghU2MpVi .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSghU2MpVi .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tSghU2MpVi .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tSghU2MpVi .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tSghU2MpVi .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tSghU2MpVi .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tSghU2MpVi .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tSghU2MpVi .copyright .mbr-text {
  margin: 0;
}
.cid-tSghU2MpVi .mbr-section-title,
.cid-tSghU2MpVi .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tSghU2MpVi .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tSghU2MpVi .foot-menu {
  text-align: center;
}
.cid-tCkxD8bbbS {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tCkxD8bbbS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tCkxD8bbbS form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tCkxD8bbbS form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tCkxD8bbbS form.mbr-form {
    padding: 1rem;
  }
}
.cid-tCkxD8bbbS form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tCkxD8bbbS form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tCkwBE0Js8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCkwBE0Js8 nav.navbar {
  position: fixed;
}
.cid-tCkwBE0Js8 .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tCkwBE0Js8 .wrapper {
    padding: 0;
  }
}
.cid-tCkwBE0Js8 .btn {
  border-radius: 30px;
}
.cid-tCkwBE0Js8 .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-tCkwBE0Js8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCkwBE0Js8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCkwBE0Js8 .dropdown-item:hover,
.cid-tCkwBE0Js8 .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tCkwBE0Js8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCkwBE0Js8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCkwBE0Js8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tCkwBE0Js8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCkwBE0Js8 .nav-link {
  position: relative;
}
.cid-tCkwBE0Js8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCkwBE0Js8 .dropdown-menu,
.cid-tCkwBE0Js8 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tCkwBE0Js8 .nav-item:focus,
.cid-tCkwBE0Js8 .nav-link:focus {
  outline: none;
}
.cid-tCkwBE0Js8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCkwBE0Js8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCkwBE0Js8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCkwBE0Js8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCkwBE0Js8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCkwBE0Js8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCkwBE0Js8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tCkwBE0Js8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tCkwBE0Js8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCkwBE0Js8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tCkwBE0Js8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCkwBE0Js8 .navbar.collapsed {
  justify-content: center;
}
.cid-tCkwBE0Js8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCkwBE0Js8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCkwBE0Js8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tCkwBE0Js8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCkwBE0Js8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCkwBE0Js8 .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-tCkwBE0Js8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCkwBE0Js8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCkwBE0Js8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCkwBE0Js8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCkwBE0Js8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCkwBE0Js8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCkwBE0Js8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCkwBE0Js8 .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-tCkwBE0Js8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCkwBE0Js8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCkwBE0Js8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCkwBE0Js8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCkwBE0Js8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCkwBE0Js8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCkwBE0Js8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCkwBE0Js8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCkwBE0Js8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCkwBE0Js8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCkwBE0Js8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCkwBE0Js8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCkwBE0Js8 .dropdown-item.active,
.cid-tCkwBE0Js8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCkwBE0Js8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCkwBE0Js8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCkwBE0Js8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCkwBE0Js8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tCkwBE0Js8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCkwBE0Js8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCkwBE0Js8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCkwBE0Js8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCkwBE0Js8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tCkwBE0Js8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tCkwBE0Js8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCkwBE0Js8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCkwBE0Js8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCkwBE0Js8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCkwBE0Js8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCkwBE0Js8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCkwBE0Js8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCkwBE0Js8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCkwBE0Js8 .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tCkwBE0Js8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCkwBE0Js8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCkwBE0Js8 .navbar {
    height: 70px;
  }
  .cid-tCkwBE0Js8 .navbar.opened {
    height: auto;
  }
  .cid-tCkwBE0Js8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCkwBIpMAf {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tCkwBIpMAf .container {
    max-width: 1400px;
  }
}
.cid-tCkwBIpMAf .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tCkwBIpMAf .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tCkwBIpMAf .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tCkwBIpMAf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tCkwBIpMAf .card-wrapper {
  margin-top: 3rem;
}
.cid-tCkwBIpMAf .row {
  justify-content: center;
}
.cid-tCkwBIpMAf .mbr-section-title {
  color: #1a449a;
}
.cid-tCkwBIpMAf .card-title,
.cid-tCkwBIpMAf .iconfont-wrapper {
  color: #1a449a;
}
.cid-tCkwBIpMAf .card-text {
  color: #1a449a;
}
.cid-tCkwBIpMAf .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tCkwBLxLE6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tCkwBLxLE6 .container-fluid {
  padding: 0;
}
.cid-tCkwBLxLE6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCkwBLxLE6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tCkwBLxLE6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCkwBLxLE6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tCkwBLxLE6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tCkwBLxLE6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tCkwBLxLE6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tCkwBLxLE6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tCkwBLxLE6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCkwBLxLE6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tCkwBLxLE6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCkwBLxLE6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tCkwBLxLE6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tCkwBLxLE6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCkwBLxLE6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tCkwBLxLE6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tCkwBLxLE6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tCkwBLxLE6 .copyright .mbr-text {
  margin: 0;
}
.cid-tCkwBLxLE6 .mbr-section-title,
.cid-tCkwBLxLE6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tCkwBLxLE6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tCkwBLxLE6 .foot-menu {
  text-align: center;
}
.cid-tCvP5UjDQj {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1-2-1920x1280.jpg");
}
.cid-tCvP5UjDQj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tCvP5UjDQj form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tCvP5UjDQj form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tCvP5UjDQj form.mbr-form {
    padding: 1rem;
  }
}
.cid-tCvP5UjDQj form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tCvP5UjDQj form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tCvP5WpYGn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCvP5WpYGn nav.navbar {
  position: fixed;
}
.cid-tCvP5WpYGn .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tCvP5WpYGn .wrapper {
    padding: 0;
  }
}
.cid-tCvP5WpYGn .btn {
  border-radius: 30px;
}
.cid-tCvP5WpYGn .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-tCvP5WpYGn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCvP5WpYGn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCvP5WpYGn .dropdown-item:hover,
.cid-tCvP5WpYGn .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tCvP5WpYGn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCvP5WpYGn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCvP5WpYGn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tCvP5WpYGn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCvP5WpYGn .nav-link {
  position: relative;
}
.cid-tCvP5WpYGn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCvP5WpYGn .dropdown-menu,
.cid-tCvP5WpYGn .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tCvP5WpYGn .nav-item:focus,
.cid-tCvP5WpYGn .nav-link:focus {
  outline: none;
}
.cid-tCvP5WpYGn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCvP5WpYGn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCvP5WpYGn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCvP5WpYGn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCvP5WpYGn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCvP5WpYGn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCvP5WpYGn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-tCvP5WpYGn .navbar.opened {
  transition: all 0.3s;
}
.cid-tCvP5WpYGn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCvP5WpYGn .navbar .navbar-logo img {
  width: auto;
}
.cid-tCvP5WpYGn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCvP5WpYGn .navbar.collapsed {
  justify-content: center;
}
.cid-tCvP5WpYGn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCvP5WpYGn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCvP5WpYGn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tCvP5WpYGn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCvP5WpYGn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCvP5WpYGn .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-tCvP5WpYGn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCvP5WpYGn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCvP5WpYGn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCvP5WpYGn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCvP5WpYGn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCvP5WpYGn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCvP5WpYGn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCvP5WpYGn .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-tCvP5WpYGn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCvP5WpYGn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCvP5WpYGn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCvP5WpYGn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCvP5WpYGn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCvP5WpYGn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCvP5WpYGn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCvP5WpYGn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCvP5WpYGn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCvP5WpYGn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCvP5WpYGn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCvP5WpYGn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCvP5WpYGn .dropdown-item.active,
.cid-tCvP5WpYGn .dropdown-item:active {
  background-color: transparent;
}
.cid-tCvP5WpYGn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCvP5WpYGn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCvP5WpYGn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCvP5WpYGn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tCvP5WpYGn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCvP5WpYGn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCvP5WpYGn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCvP5WpYGn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCvP5WpYGn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tCvP5WpYGn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tCvP5WpYGn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCvP5WpYGn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvP5WpYGn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvP5WpYGn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCvP5WpYGn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvP5WpYGn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCvP5WpYGn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCvP5WpYGn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvP5WpYGn .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tCvP5WpYGn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCvP5WpYGn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCvP5WpYGn .navbar {
    height: 70px;
  }
  .cid-tCvP5WpYGn .navbar.opened {
    height: auto;
  }
  .cid-tCvP5WpYGn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCvP5YxJqx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tCvP5YxJqx .container {
    max-width: 1400px;
  }
}
.cid-tCvP5YxJqx .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tCvP5YxJqx .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tCvP5YxJqx .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tCvP5YxJqx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tCvP5YxJqx .card-wrapper {
  margin-top: 3rem;
}
.cid-tCvP5YxJqx .row {
  justify-content: center;
}
.cid-tCvP5YxJqx .mbr-section-title {
  color: #1a449a;
}
.cid-tCvP5YxJqx .card-title,
.cid-tCvP5YxJqx .iconfont-wrapper {
  color: #1a449a;
}
.cid-tCvP5YxJqx .card-text {
  color: #1a449a;
}
.cid-tCvP5YxJqx .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tCvP61aPYX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tCvP61aPYX .container-fluid {
  padding: 0;
}
.cid-tCvP61aPYX .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCvP61aPYX .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tCvP61aPYX .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCvP61aPYX .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tCvP61aPYX .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tCvP61aPYX .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tCvP61aPYX .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tCvP61aPYX .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tCvP61aPYX .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCvP61aPYX .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tCvP61aPYX .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCvP61aPYX .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tCvP61aPYX .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tCvP61aPYX .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCvP61aPYX .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tCvP61aPYX .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tCvP61aPYX .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tCvP61aPYX .copyright .mbr-text {
  margin: 0;
}
.cid-tCvP61aPYX .mbr-section-title,
.cid-tCvP61aPYX .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tCvP61aPYX .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tCvP61aPYX .foot-menu {
  text-align: center;
}
.cid-thigIhPXws {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-thigIhPXws .mbr-section-title {
  text-align: center;
  color: #0087ab;
}
.cid-thigIhPXws .mbr-text,
.cid-thigIhPXws .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thigIhPXws .mbr-section-title,
  .cid-thigIhPXws .mbr-section-btn,
  .cid-thigIhPXws .mbr-text {
    text-align: left;
  }
}
.cid-thigInxGaq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-thigInxGaq nav.navbar {
  position: fixed;
}
.cid-thigInxGaq .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-thigInxGaq .wrapper {
    padding: 0;
  }
}
.cid-thigInxGaq .btn {
  border-radius: 30px;
}
.cid-thigInxGaq .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-thigInxGaq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thigInxGaq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thigInxGaq .dropdown-item:hover,
.cid-thigInxGaq .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-thigInxGaq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thigInxGaq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thigInxGaq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-thigInxGaq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thigInxGaq .nav-link {
  position: relative;
}
.cid-thigInxGaq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thigInxGaq .dropdown-menu,
.cid-thigInxGaq .navbar.opened {
  background: #bed3f9 !important;
}
.cid-thigInxGaq .nav-item:focus,
.cid-thigInxGaq .nav-link:focus {
  outline: none;
}
.cid-thigInxGaq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thigInxGaq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thigInxGaq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thigInxGaq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thigInxGaq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thigInxGaq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thigInxGaq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bed3f9;
}
.cid-thigInxGaq .navbar.opened {
  transition: all 0.3s;
}
.cid-thigInxGaq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thigInxGaq .navbar .navbar-logo img {
  width: auto;
}
.cid-thigInxGaq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thigInxGaq .navbar.collapsed {
  justify-content: center;
}
.cid-thigInxGaq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thigInxGaq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thigInxGaq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-thigInxGaq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thigInxGaq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thigInxGaq .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-thigInxGaq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thigInxGaq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thigInxGaq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thigInxGaq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thigInxGaq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thigInxGaq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thigInxGaq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thigInxGaq .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-thigInxGaq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thigInxGaq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thigInxGaq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thigInxGaq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thigInxGaq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thigInxGaq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-thigInxGaq .navbar.navbar-short {
  min-height: 60px;
}
.cid-thigInxGaq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thigInxGaq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thigInxGaq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-thigInxGaq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thigInxGaq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thigInxGaq .dropdown-item.active,
.cid-thigInxGaq .dropdown-item:active {
  background-color: transparent;
}
.cid-thigInxGaq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thigInxGaq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thigInxGaq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thigInxGaq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-thigInxGaq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thigInxGaq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thigInxGaq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thigInxGaq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thigInxGaq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-thigInxGaq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-thigInxGaq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thigInxGaq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thigInxGaq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thigInxGaq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thigInxGaq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thigInxGaq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thigInxGaq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thigInxGaq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thigInxGaq .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-thigInxGaq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thigInxGaq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-thigInxGaq .navbar {
    height: 70px;
  }
  .cid-thigInxGaq .navbar.opened {
    height: auto;
  }
  .cid-thigInxGaq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl42QntpSN {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tl42QntpSN .container {
    max-width: 1400px;
  }
}
.cid-tl42QntpSN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tl42QntpSN .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tl42QntpSN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tl42QntpSN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tl42QntpSN .card-wrapper {
  margin-top: 3rem;
}
.cid-tl42QntpSN .row {
  justify-content: center;
}
.cid-tl42QntpSN .mbr-section-title {
  color: #1a449a;
}
.cid-tl42QntpSN .card-title,
.cid-tl42QntpSN .iconfont-wrapper {
  color: #1a449a;
}
.cid-tl42QntpSN .card-text {
  color: #1a449a;
}
.cid-tl42QntpSN .mbr-section-subtitle {
  color: #1a449a;
}
.cid-tl3BNFwEh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0000ff;
}
.cid-tl3BNFwEh6 .container-fluid {
  padding: 0;
}
.cid-tl3BNFwEh6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tl3BNFwEh6 .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tl3BNFwEh6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #40b0bf;
  transition: all .3s linear;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tl3BNFwEh6 .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tl3BNFwEh6 .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tl3BNFwEh6 .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tl3BNFwEh6 .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tl3BNFwEh6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tl3BNFwEh6 .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tl3BNFwEh6 .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tl3BNFwEh6 .copyright {
  margin: 0 60px;
  border-top: 1px solid #ffffff;
  padding: 26px 0;
}
.cid-tl3BNFwEh6 .copyright .mbr-text {
  margin: 0;
}
.cid-tl3BNFwEh6 .mbr-section-title,
.cid-tl3BNFwEh6 .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tl3BNFwEh6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tl3BNFwEh6 .foot-menu {
  text-align: center;
}
