.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #05386b !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: #05386b !important;
  border-color: #05386b !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: #010d18 !important;
  border-color: #010d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !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: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !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: #05386b;
  color: #05386b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #010d18 !important;
  background-color: transparent!important;
  border-color: #010d18 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #05386b !important;
  border-color: #05386b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #5cdb95;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !important;
  background-color: transparent!important;
  border-color: #29b869 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #05386b !important;
}
.text-secondary {
  color: #5cdb95 !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: #00050a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #26ab62 !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: #05386b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #05386b;
  border-color: #05386b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #05386b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0b78e5;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #05386b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #05386b;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #05386b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #05386b;
}
.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: #05386b;
  border-bottom-color: #05386b;
}
.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: #05386b !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: #5cdb95 !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='%2305386b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 20rem;
  padding-bottom: 11rem;
  background-image: url("../../../assets/images/mbr-1920x836.jpeg");
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-section-subtitle {
  text-align: center;
  color: #05386b;
}
.cid-sFADQxFnEn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFADQxFnEn .mbr-section-title {
  color: #05386b;
}
.cid-sFADQxFnEn .mbr-section-subtitle {
  color: #05386b;
}
.cid-sWw2CsOTJD {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
@media (min-width: 992px) {
  .cid-sWw2CsOTJD .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-sWw2CsOTJD .no-gutters > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sWw2CsOTJD .card_item {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-sWw2CsOTJD .card_item .item-wrapper {
    border-left: 1px dotted rgba(55, 60, 66, 0.5);
  }
  .cid-sWw2CsOTJD .card_item:last-child .item-wrapper {
    border-right: 1px dotted rgba(55, 60, 66, 0.5);
  }
}
.cid-sWw2CsOTJD .item-wrapper {
  height: 100%;
  overflow: visible;
}
.cid-sWw2CsOTJD .card-box {
  padding: 0 2rem 2.5rem 2rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sWw2CsOTJD .card-box:hover {
  transform: translateY(-3rem);
}
.cid-sWw2CsOTJD .card-box:hover img {
  transform: scale(1.01);
}
.cid-sWw2CsOTJD .card-title {
  margin-bottom: .75rem;
  color: #05386b;
}
.cid-sWw2CsOTJD .card-text {
  margin-bottom: 1.25rem;
}
.cid-sWw2CsOTJD .item-img {
  margin-bottom: 2.5rem;
  position: relative;
  transform: skewY(2deg);
}
.cid-sWw2CsOTJD img,
.cid-sWw2CsOTJD .item-img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sWw2CsOTJD .item:focus,
.cid-sWw2CsOTJD span:focus {
  outline: none;
}
@media (max-width: 991px) {
  .cid-sWw2CsOTJD .item-wrapper {
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .cid-sWw2CsOTJD .card-title {
    margin-bottom: .5rem;
  }
  .cid-sWw2CsOTJD .card-text {
    margin-bottom: .75rem;
  }
  .cid-sWw2CsOTJD .item-img {
    margin-bottom: 1.5rem;
  }
  .cid-sWw2CsOTJD .card-box:hover {
    transform: translateY(0);
  }
  .cid-sWw2CsOTJD .card-box:hover img {
    transform: scale(1.01);
  }
}
@media (max-width: 767px) {
  .cid-sWw2CsOTJD .card-box {
    padding: 0 0 1rem;
  }
}
.cid-sZTVfo6YIE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sZTVfo6YIE .mbr-section-title {
  margin-bottom: 18px;
  color: #05386b;
}
.cid-sZTVfo6YIE .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-sZTVfo6YIE .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sZTVfo6YIE .card_info {
  margin-bottom: 12px;
}
.cid-sZTVfo6YIE .card_date {
  color: #05386b;
}
.cid-sZTVfo6YIE .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #05386b;
}
.cid-sZTVfo6YIE .card_text {
  margin-top: 4px;
}
.cid-sZTVfo6YIE .item-img {
  margin-bottom: 30px;
}
.cid-sZTVfo6YIE .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 450px;
}
.cid-sZTVfo6YIE .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-sZTVfo6YIE .linkBtn a:after,
.cid-sZTVfo6YIE .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-sZTVfo6YIE .linkBtn a:before {
  left: 0;
}
.cid-sZTVfo6YIE .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-sZTVfo6YIE .linkBtn a:hover:before,
.cid-sZTVfo6YIE .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-sZTVfo6YIE .card_text,
.cid-sZTVfo6YIE .linkBtn {
  color: #05386b;
}
.cid-sWBexODohh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sWBexODohh .container {
    max-width: 1400px;
  }
}
.cid-sWBexODohh .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: #05386b;
}
.cid-sWBexODohh .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sWBexODohh .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sWBexODohh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-sWBexODohh .card-wrapper {
  margin-top: 3rem;
}
.cid-sWBexODohh .row {
  justify-content: center;
}
.cid-sWBexODohh .mbr-section-title {
  color: #1a449a;
}
.cid-sWBexODohh .card-title,
.cid-sWBexODohh .iconfont-wrapper {
  color: #1a449a;
}
.cid-sWBexODohh .card-text {
  color: #1a449a;
}
.cid-sWySORo6mw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #edf5e1;
}
.cid-sWySORo6mw .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-sWySORo6mw .mbr-section-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-sWySORo6mw .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-sWySORo6mw .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-sWySORo6mw .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sWySORo6mw .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  position: relative;
  border-radius: 4px;
}
.cid-sWySORo6mw .card .card-wrapper img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-sWySORo6mw .card .card-wrapper .card-box {
  opacity: 0.8;
  background: #4f87fb;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 13.5px 15px;
  bottom: 0;
  left: 0;
  border-radius: 4px;
}
.cid-sWySORo6mw .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0;
}
.cid-sWySORo6mw .card .card-wrapper .card-box .card-title .mbr-iconfont {
  margin-right: 10px;
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.cid-sWBggS18vL {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background3.png");
}
.cid-sWBggS18vL .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 800;
  text-align: left;
  width: 100%;
}
.cid-sWBggS18vL .mbr-section-subtitle.display-4 {
  letter-spacing: 2px;
  line-height: 1.85;
  font-size: 13px;
}
.cid-sWBggS18vL .mbr-section-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  width: 100%;
  font-weight: 700;
}
.cid-sWBggS18vL .mbr-section-title.display-2 {
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-sWBggS18vL .mbr-text,
.cid-sWBggS18vL .video-text {
  color: #ffffff;
}
.cid-sWBggS18vL .card {
  padding: 1rem 0.5rem;
}
.cid-sWBggS18vL .card .mbr-crt-title .card-title {
  color: #ffffff;
}
.cid-sWBggS18vL .wrap {
  width: 145px;
  height: 145px;
  margin: 0 auto;
}
.cid-sWBggS18vL .wrap .pie_progress {
  height: inherit;
}
.cid-sWBggS18vL .btn {
  margin: 0 !important;
}
.cid-sWBggS18vL path {
  stroke: #000000;
}
.cid-sWBggS18vL ellipse {
  fill: #ffffff;
}
.cid-sWBggS18vL .video-wrap {
  cursor: pointer;
}
.cid-sWBggS18vL .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sWBggS18vL .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb !important;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
}
.cid-sWBggS18vL .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sWBggS18vL .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sWBggS18vL .video-wrap .video-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sWBggS18vL .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sWBggS18vL .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sWBggS18vL .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sWBggS18vL a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .cid-sWBggS18vL .video-wrap {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sWBggS18vL .card {
    flex-basis: 33%;
  }
}
@media (max-width: 1199px) {
  .cid-sWBggS18vL .main > div {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-sWBggS18vL h2,
  .cid-sWBggS18vL h3 {
    text-align: center !important;
  }
  .cid-sWBggS18vL .main > div > div {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sWBggS18vL .second-col {
    padding-top: 1.5rem;
  }
  .cid-sWBggS18vL .video-wrap {
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .cid-sWBggS18vL .show-modal {
    height: 80%;
  }
}
.cid-sWBggS18vL p {
  color: #4f87fb;
}
.cid-sFADQQfNeA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFADQQfNeA .mbr-section-title {
  color: #05386b;
}
.cid-sFADQQfNeA .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFADMOwrhN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sFADMOwrhN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sFADMOwrhN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFADMOwrhN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sFADMOwrhN .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
}
.cid-sFADMOwrhN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFADMOwrhN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sFADMOwrhN .mbr-text {
  color: #05386b;
}
.cid-sFADMOwrhN .card-title {
  color: #05386b;
}
.cid-sFADMOwrhN .price {
  color: #05386b;
}
.cid-sWw2HgQN3x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWw2HgQN3x .left-side {
  text-align: left;
}
.cid-sWw2HgQN3x .row {
  align-items: center;
}
@media (max-width: 9090px) {
  .cid-sWw2HgQN3x .item-wrapper {
    padding-top: 20px;
  }
}
.cid-sWw2HgQN3x .mbr-section-subtitle {
  color: #626262;
  padding-top: 20px;
  margin-top: 0;
}
.cid-sWw2HgQN3x .mbr-section-title {
  color: #000000;
}
.cid-sWw2HgQN3x .item-title {
  text-transform: uppercase;
  margin: 0;
}
.cid-sWw2HgQN3x .item-content {
  color: #000000;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  text-align: center;
}
.cid-sWw2HgQN3x img,
.cid-sWw2HgQN3x .item-img {
  width: 100%;
  height: auto;
}
.cid-sWw2HgQN3x .mbr-text {
  padding-top: 10px;
}
.cid-sFAOw5Fdod {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-sFAOw5Fdod img,
.cid-sFAOw5Fdod .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sFAOw5Fdod .item:focus,
.cid-sFAOw5Fdod span:focus {
  outline: none;
}
.cid-sFAOw5Fdod .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFAOw5Fdod .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFAOw5Fdod .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sFAOw5Fdod .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFAOw5Fdod .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sFAOw5Fdod .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sFAOw5Fdod .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFAOw5Fdod .mbr-section-title {
  color: #05386b;
}
.cid-sFAOw5Fdod .mbr-text,
.cid-sFAOw5Fdod .mbr-section-btn {
  text-align: left;
}
.cid-sFAOw5Fdod .item-title {
  text-align: left;
  color: #05386b;
}
.cid-sFAOw5Fdod .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sFAOw5Fdod .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFANq99njx {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #edf5e1;
}
.cid-sFANq99njx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sFANq99njx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sFANq99njx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFANq99njx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFANq99njx .card-title {
  color: #05386b;
}
.cid-sFANq99njx .mbr-text,
.cid-sFANq99njx .mbr-section-btn {
  color: #05386b;
}
.cid-sFAOgbarYq {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #fafafa;
}
@media (max-width: 767px) {
  .cid-sFAOgbarYq .row {
    flex-direction: column-reverse;
  }
  .cid-sFAOgbarYq .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFAOgbarYq .google-map {
  height: 100%;
  position: relative;
}
.cid-sFAOgbarYq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAOgbarYq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAOgbarYq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAOgbarYq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFAOgbarYq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFAOgbarYq .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-sFAOgbarYq .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFAOgbarYq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #05386b;
}
.cid-sFAOgbarYq .mbr-section-title {
  color: #05386b;
}
.cid-sFAOgbarYq .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFAOgbarYq .card-title {
  color: #05386b;
}
.cid-sFAOgbarYq P {
  color: #05386b;
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sZieFFk1OU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-sZieFFk1OU .content-wrapper {
  background: #edf5e1;
}
@media (max-width: 991px) {
  .cid-sZieFFk1OU .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sZieFFk1OU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZieFFk1OU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sZieFFk1OU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZieFFk1OU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sZieFFk1OU .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sZieFFk1OU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZieFFk1OU .card-title {
  color: #05386b;
  text-align: center;
}
.cid-sZieFFk1OU .mbr-text,
.cid-sZieFFk1OU .mbr-section-btn {
  color: #05386b;
}
.cid-sWT91CHgXL {
  padding-top: 45px;
  padding-bottom: 75px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sWT91CHgXL .image-wrap img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.cid-sWT91CHgXL .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #05386b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-sWT91CHgXL .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sWT91CHgXL .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sWT91CHgXL .main-title.display-2 {
  line-height: 1.375;
}
.cid-sWT91CHgXL .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sWT91CHgXL .mbr-text {
  color: #606060;
}
.cid-sWT91CHgXL .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sWT91CHgXL svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(1.5, 1.5);
  overflow: hidden;
  pointer-events: none;
}
.cid-sWT91CHgXL #e2_shape {
  fill: #ffffff !important;
}
.cid-sWT91CHgXL .mbr-section-btn {
  margin-top: 8px;
}
.cid-sWT91CHgXL .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-sWT91CHgXL .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sWT91CHgXL .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sWT93oBDA2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWT93oBDA2 a:hover {
  color: #05386b;
}
.cid-sWT93oBDA2 .card {
  padding: 1rem 2rem;
}
.cid-sWT93oBDA2 .card img {
  position: relative;
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sWT93oBDA2 .card-title {
  padding-bottom: 1rem;
  padding-top: 1rem;
  margin-bottom: 0;
}
.cid-sWT93oBDA2 .mbr-iconfont {
  font-size: 20px;
  color: #232323;
}
.cid-sWT93oBDA2 .card-box p {
  margin-bottom: 0;
}
.cid-sWT93oBDA2 .specialty {
  padding-top: .5rem;
}
.cid-sWT93oBDA2 .social-links {
  padding-top: .5rem;
}
@media (min-width: 992px) {
  .cid-sWT93oBDA2 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sWTamclRKR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWTamclRKR a:hover {
  color: #05386b;
}
.cid-sWTamclRKR .card {
  padding: 1rem 2rem;
}
.cid-sWTamclRKR .card img {
  position: relative;
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sWTamclRKR .card-title {
  padding-bottom: 1rem;
  padding-top: 1rem;
  margin-bottom: 0;
}
.cid-sWTamclRKR .mbr-iconfont {
  font-size: 20px;
  color: #232323;
}
.cid-sWTamclRKR .card-box p {
  margin-bottom: 0;
}
.cid-sWTamclRKR .specialty {
  padding-top: .5rem;
}
.cid-sWTamclRKR .social-links {
  padding-top: .5rem;
}
@media (min-width: 992px) {
  .cid-sWTamclRKR .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sWT92SIS5V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edf5e1;
}
@media (max-width: 991px) {
  .cid-sWT92SIS5V .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sWT92SIS5V .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-sWT92SIS5V .card-wrap {
  background: #05386b;
  border-radius: 30px;
  height: 100%;
}
.cid-sWT92SIS5V .card-wrap .content-wrap {
  padding: 44px 40px;
}
@media (max-width: 991px) {
  .cid-sWT92SIS5V .card-wrap .content-wrap {
    padding: 3rem 1rem;
  }
}
.cid-sWT92SIS5V .numb {
  height: 100px;
  width: 100px;
  border: 2px solid;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWT93BQdF7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-sWT93BQdF7 .mbr-media {
  position: relative;
}
.cid-sWT93BQdF7 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sWT93BQdF7 .box {
  background-image: url("../../../assets/images/emm03848-2000x1333.jpg");
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-sWT93BQdF7 .box {
    min-height: 300px;
  }
}
.cid-sWT93BQdF7 .icon-wrap {
  position: relative;
  margin: auto;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWT93BQdF7 .icon-wrap a {
  height: 20px;
}
.cid-sWT93BQdF7 .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 120px;
    height: 120px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-sWT93BQdF7 .mbr-media span {
  font-size: 1.4rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #121212;
}
.cid-sWT93BQdF7 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sWT93BQdF7 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sWT93BQdF7 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sWT93BQdF7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sWT93BQdF7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWMcOtN7QR {
  padding-top: 15rem;
  padding-bottom: 11rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
.cid-sWMcOtN7QR .link-wrapper {
  width: 100%;
}
.cid-sWMcOtN7QR .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sWMcOtN7QR .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sWMcOtN7QR .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sWMcOtN7QR .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sWMcOtN7QR .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sWMcOtN7QR .mbr-section-title DIV {
  text-align: center;
}
.cid-sWMcOtN7QR .mbr-text,
.cid-sWMcOtN7QR .mbr-section-btn {
  text-align: center;
}
.cid-sWMcOtN7QR .link,
.cid-sWMcOtN7QR .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-sWMcOtN7QR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sWMcVKMGen {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background.jpg");
}
.cid-sWMcVKMGen .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-sWMcVKMGen .text-wrapper:hover .mbr-section-title a {
  color: #5cdb95 !important;
}
.cid-sWMcVKMGen .image-wrapper,
.cid-sWMcVKMGen img {
  width: 100%;
  object-fit: cover;
}
.cid-sWMcVKMGen .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-sWMcVKMGen .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sWMcVKMGen .mbr-section-btn .btn-secondary-outline:hover,
.cid-sWMcVKMGen .mbr-section-btn .btn-secondary-outline .active,
.cid-sWMcVKMGen .mbr-section-btn .btn-secondary-outline:focus {
  color: #05386b !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWMcVKMGen .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-sWMcVKMGen {
    flex-direction: column;
  }
  .cid-sWMcVKMGen .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sWMcVKMGen .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-sWMcevbZ5Q {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #edf5e1;
}
.cid-sWMcevbZ5Q .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sWMcevbZ5Q .btn {
  box-shadow: none;
  border-radius: 30px;
  padding: 1rem 3rem;
}
.cid-sWMcevbZ5Q .jq-selectbox li {
  padding: 1em 1.5em;
}
.cid-sWMcevbZ5Q .col-auto {
  width: 100%;
  justify-content: flex-end;
  display: flex;
}
.cid-sWMcevbZ5Q .form-control,
.cid-sWMcevbZ5Q .field-input {
  padding: 0rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #c1c1c1 !important;
  border-radius: 0;
  color: #353535;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sWMcevbZ5Q .form-control::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .form-control::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-sWMcevbZ5Q .form-control:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:-moz-placeholder,
.cid-sWMcevbZ5Q .form-control:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:-moz-placeholder {
  color: #bbbbbb;
}
.cid-sWMcevbZ5Q .form-control:hover,
.cid-sWMcevbZ5Q .field-input:hover,
.cid-sWMcevbZ5Q .form-control:focus,
.cid-sWMcevbZ5Q .field-input:focus {
  background-color: #ffffff;
  border-color: transparent!important;
  border-bottom: 1px solid #c1c1c1 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sWMcevbZ5Q .form-control:hover::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input:hover::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .form-control:focus::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input:focus::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .form-control:hover::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input:hover::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .form-control:focus::-webkit-input-placeholder,
.cid-sWMcevbZ5Q .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-sWMcevbZ5Q .form-control:hover:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:hover:-moz-placeholder,
.cid-sWMcevbZ5Q .form-control:focus:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:focus:-moz-placeholder,
.cid-sWMcevbZ5Q .form-control:hover:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:hover:-moz-placeholder,
.cid-sWMcevbZ5Q .form-control:focus:-moz-placeholder,
.cid-sWMcevbZ5Q .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-sWMcevbZ5Q .jq-number__spin:hover,
.cid-sWMcevbZ5Q .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #c1c1c1;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sWMcevbZ5Q .jq-number__spin {
  background-color: #ffffff;
  border-color: #c1c1c1;
  color: #353535;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sWMcevbZ5Q .jq-selectbox li,
.cid-sWMcevbZ5Q .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sWMcevbZ5Q .jq-selectbox li:hover,
.cid-sWMcevbZ5Q .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sWMcevbZ5Q .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sWMcevbZ5Q .jq-number__spin.minus:hover:after,
.cid-sWMcevbZ5Q .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sWMcevbZ5Q .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sWMcevbZ5Q .jq-number__spin.minus:after,
.cid-sWMcevbZ5Q .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sWMcevbZ5Q input::-webkit-clear-button {
  display: none;
}
.cid-sWMcevbZ5Q input::-webkit-inner-spin-button {
  display: none;
}
.cid-sWMcevbZ5Q input::-webkit-outer-spin-button {
  display: none;
}
.cid-sWMcevbZ5Q input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sWMcevbZ5Q .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: black!important;
}
.cid-sWMcevbZ5Q .jq-selectbox__dropdown {
  border-radius: 0;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWBq0ntxIR {
  background-color: #edf5e1;
}
.cid-sWBq0ntxIR .mbr-overlay {
  z-index: 2;
  pointer-events: none;
}
.cid-sWBq0ntxIR .image-wrapper {
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.cid-sWBq0ntxIR .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sWBq0ntxIR .content {
  width: 55%;
  position: relative;
  z-index: 3;
}
@media (max-width: 859px) {
  .cid-sWBq0ntxIR .content {
    width: 100%;
    text-align: center!important;
  }
}
.cid-sWBq0ntxIR .mbr-section-title {
  color: #1f1437;
  margin-bottom: 20px;
  position: relative;
  padding: 1rem 2rem;
  border-top: 2px solid #1f1437;
  border-bottom: 2px solid #1f1437;
}
.cid-sWBq0ntxIR .mbr-section-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.6;
  z-index: -1;
}
.cid-sWBq0ntxIR .mbr-section-btn {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 859px) {
  .cid-sWBq0ntxIR .mbr-section-btn {
    justify-content: center !important;
  }
}
.cid-sWBq0ntxIR .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-sWBq0ntxIR .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
  z-index: 4;
}
.cid-sWBq0ntxIR .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-sWBq0ntxIR .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-sYEfrP6iu1 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-sYEfrP6iu1 .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-sYEfrP6iu1 .item-content {
  background: #efefef;
  transition: all 0.3s;
  border: 2px solid #e1e1e1;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-sYEfrP6iu1 .item-content:hover {
  background: #ffffff;
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sYEfrP6iu1 .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-sYEfrP6iu1 .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #777777;
}
@media (max-width: 767px) {
  .cid-sYEfrP6iu1 .img-text {
    left: 1rem;
  }
}
.cid-sYEfrP6iu1 img,
.cid-sYEfrP6iu1 .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 375px;
  object-fit: cover;
}
.cid-sYEfrP6iu1 .item:focus,
.cid-sYEfrP6iu1 span:focus {
  outline: none;
}
.cid-sYEfrP6iu1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sYEfrP6iu1 .mbr-section-title {
  color: #232323;
}
.cid-sYEfrP6iu1 .mbr-text,
.cid-sYEfrP6iu1 .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-sYEfrP6iu1 .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-sYEfrP6iu1 .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-sYEfrP6iu1 .mbr-section-subtitle {
  color: #777777;
}
.cid-sWBt6R2A2Z {
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sWBt6R2A2Z .text-content {
  padding-top: 105px;
  padding-bottom: 0px;
}
.cid-sWBt6R2A2Z .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWBt6R2A2Z .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-sWBt6R2A2Z .text-content {
    width: 100%;
  }
}
.cid-sWBt6R2A2Z .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-sWBt6R2A2Z .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sWBt6R2A2Z .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-sWBt6R2A2Z .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-sWBt6R2A2Z .mbr-text {
    text-align: center;
  }
}
.cid-sWBt6R2A2Z .mbr-section-subtitle {
  text-align: left;
}
.cid-sWBt6R2A2Z .mbr-section-btn,
.cid-sWBt6R2A2Z .mbr-section-title {
  text-align: left;
}
.cid-sWBt6R2A2Z P {
  text-align: left;
}
.cid-sYEfwJzaxd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYEfwJzaxd .item img {
  width: 100%;
  z-index: 1;
}
.cid-sYEfwJzaxd .item .card {
  margin-left: 20%;
  background-color: #ffffff;
  padding: 2rem;
  position: relative;
  margin-top: -2rem;
  z-index: 2;
  border-radius: 0;
}
.cid-sYEfwJzaxd .item-wrapper {
  padding-bottom: 2rem;
}
.cid-sYEfwJzaxd .card .mbr-text,
.cid-sYEfwJzaxd .card .mbr-section-title {
  margin-bottom: 10px;
}
.cid-sYEfwJzaxd .mbr-text {
  color: #777777;
}
.cid-sYEfnOMvZH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-sYEfnOMvZH img,
.cid-sYEfnOMvZH .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sYEfnOMvZH .item:focus,
.cid-sYEfnOMvZH span:focus {
  outline: none;
}
.cid-sYEfnOMvZH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sYEfnOMvZH .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-sYEfnOMvZH .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-sYEfnOMvZH .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-sYEfnOMvZH .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-sYEfnOMvZH .item-content {
    padding: 1rem 0;
  }
}
.cid-sYEfnOMvZH .mbr-section-title {
  color: #36187d;
}
.cid-sYEfnOMvZH .item-title {
  color: #36187d;
}
.cid-sYEfnOMvZH .item-subtitle {
  color: #bec2cf;
}
.cid-sYEfnOMvZH .mbr-text,
.cid-sYEfnOMvZH .mbr-section-btn {
  color: #6c758f;
}
.cid-sYEfnOMvZH .mbr-link {
  color: #0196e3;
  display: block;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sZiJtAsUaI {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #4154f1;
  background: linear-gradient(to right bottom, rgba(65, 84, 241, 0.8), #5e2ced);
}
.cid-sZiJtAsUaI .mbr-overlay {
  background: #ffffff;
}
.cid-sZiJtAsUaI .animation {
  pointer-events: none;
}
.cid-sZiJtAsUaI .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-sZiJtAsUaI .mbr-section-title {
  margin-bottom: 27px;
}
.cid-sZiJtAsUaI .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
.cid-sZiJtAsUaI .image__block {
  margin-top: 60px;
  margin-bottom: -160px;
  position: relative;
  z-index: 5;
}
.cid-sZiJtAsUaI .image__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-sZiJtAsUaI .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-sZiJtAsUaI .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-sZiJtAsUaI .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-sZiJtAsUaI .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-sZiJtAsUaI .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-sZiJtAsUaI .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sZiJtAsUaI .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-sZiJtAsUaI .image__block {
    margin-bottom: -100px;
  }
}
.cid-sZiJyYmycz {
  background-image: url("../../../assets/images/al-ghardaqah-map-2000x1338.jpg");
  background-position: right;
}
.cid-sZiJyYmycz .wrapper {
  position: relative;
  border-top: 3px solid #05386b;
  border-right: 3px solid #05386b;
  border-left: 3px solid #05386b;
  padding: 2.5rem 2.5rem;
}
.cid-sZiJyYmycz .wrapper:before {
  content: "";
  background: #05386b;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sZiJyYmycz .wrapper:after {
  content: "";
  background: #05386b;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sZiJyYmycz img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sZiJyYmycz .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sZiJyYmycz H1 {
  color: #05386b;
}
.cid-sZiJyYmycz H3 {
  color: #05386b;
}
.cid-sZiJyYmycz .mbr-text,
.cid-sZiJyYmycz .mbr-section-btn {
  color: #05386b;
}
.cid-sWT7ipVOXR {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #edf5e1;
}
@media (max-width: 991px) {
  .cid-sWT7ipVOXR .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWT7ipVOXR .image-wrapper {
    width: 49%;
  }
}
.cid-sWT7ipVOXR .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sWT7ipVOXR .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-sWT7ipVOXR .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-sWT7ipVOXR .text-wrapper p {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWT7ipVOXR .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-sWT7ipVOXR .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
    width: 100%;
  }
  .cid-sWT7ipVOXR .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
    width: 100%;
  }
}
.cid-sWT7ipVOXR .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
}
.cid-sWT7ipVOXR .item-btn:hover {
  opacity: 0.8;
}
.cid-sWT7ipVOXR .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-sWT7ipVOXR .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-sWT7ipVOXR .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
  }
  .cid-sWT7ipVOXR .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-sWT7ipVOXR .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-sWT7ipVOXR .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-sWT7ipVOXR .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-sWT7ipVOXR .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-sWT7ipVOXR .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sWT7ipVOXR .mbr-section-title a {
  color: #9b9ba5;
}
.cid-sWT7ipVOXR P {
  color: #000000;
}
.cid-sWT7ipVOXR .mbr-section-subtitle {
  color: #000000;
}
.cid-sWT7ipVOXR .mbr-section-title {
  color: #000000;
}
.cid-sZiLotcJs4 {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #e9e9e9;
}
.cid-sZiLotcJs4 .mbr-section-title {
  color: #1a449a;
}
.cid-sZiLotcJs4 .mbr-text {
  color: #1a449a;
}
.cid-sZiLotcJs4 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-sZiLotcJs4 .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: #05386b;
}
.cid-sZiLotcJs4 .svg-top .st0 {
  fill: #e9e9e9;
}
@media (max-width: 992px) {
  .cid-sZiLotcJs4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sZRYJJzbZO {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sZRYJJzbZO .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sZRYJJzbZO .card {
    margin-bottom: 2rem!important;
  }
  .cid-sZRYJJzbZO .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZRYJJzbZO .link-wrap {
    align-items: center;
  }
}
.cid-sZRYJJzbZO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZRYJJzbZO .card-title,
.cid-sZRYJJzbZO .card-box {
  color: #05386b;
}
.cid-sZRTyj5R0P {
  z-index: 1000;
  width: 100%;
}
.cid-sZRTyj5R0P nav.navbar {
  position: fixed;
}
.cid-sZRTyj5R0P .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-sZRTyj5R0P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZRTyj5R0P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZRTyj5R0P .dropdown-item:hover,
.cid-sZRTyj5R0P .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sZRTyj5R0P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZRTyj5R0P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZRTyj5R0P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZRTyj5R0P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZRTyj5R0P .nav-link {
  position: relative;
}
.cid-sZRTyj5R0P .container {
  display: flex;
  margin: auto;
}
.cid-sZRTyj5R0P .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZRTyj5R0P .dropdown-menu,
.cid-sZRTyj5R0P .navbar.opened {
  background: #ffffff !important;
}
.cid-sZRTyj5R0P .nav-item:focus,
.cid-sZRTyj5R0P .nav-link:focus {
  outline: none;
}
.cid-sZRTyj5R0P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZRTyj5R0P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZRTyj5R0P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZRTyj5R0P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZRTyj5R0P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZRTyj5R0P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZRTyj5R0P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZRTyj5R0P .navbar.opened {
  transition: all 0.3s;
}
.cid-sZRTyj5R0P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZRTyj5R0P .navbar .navbar-logo img {
  width: auto;
}
.cid-sZRTyj5R0P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZRTyj5R0P .navbar.collapsed {
  justify-content: center;
}
.cid-sZRTyj5R0P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZRTyj5R0P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZRTyj5R0P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sZRTyj5R0P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZRTyj5R0P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZRTyj5R0P .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-sZRTyj5R0P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZRTyj5R0P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZRTyj5R0P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZRTyj5R0P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZRTyj5R0P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZRTyj5R0P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZRTyj5R0P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZRTyj5R0P .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-sZRTyj5R0P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZRTyj5R0P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZRTyj5R0P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZRTyj5R0P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZRTyj5R0P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZRTyj5R0P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZRTyj5R0P .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZRTyj5R0P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZRTyj5R0P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZRTyj5R0P .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-sZRTyj5R0P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZRTyj5R0P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZRTyj5R0P .dropdown-item.active,
.cid-sZRTyj5R0P .dropdown-item:active {
  background-color: transparent;
}
.cid-sZRTyj5R0P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZRTyj5R0P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZRTyj5R0P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZRTyj5R0P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZRTyj5R0P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZRTyj5R0P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZRTyj5R0P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZRTyj5R0P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZRTyj5R0P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZRTyj5R0P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sZRTyj5R0P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZRTyj5R0P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZRTyj5R0P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZRTyj5R0P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZRTyj5R0P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZRTyj5R0P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZRTyj5R0P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZRTyj5R0P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZRTyj5R0P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZRTyj5R0P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZRTyj5R0P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZRTyj5R0P .navbar {
    height: 70px;
  }
  .cid-sZRTyj5R0P .navbar.opened {
    height: auto;
  }
  .cid-sZRTyj5R0P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZRTyjB3Z9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sZRTyjB3Z9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sZRTyjB3Z9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sZRTyjB3Z9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sZRTyjB3Z9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sZRTyjB3Z9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sZRTyjB3Z9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sZRTyjB3Z9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZRTyjB3Z9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sZRTyjB3Z9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZRTyjB3Z9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sZRTyjB3Z9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sZRTyjB3Z9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZRTyjB3Z9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sZRTyjB3Z9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sZTXtClyHu {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #edf5e1;
}
.cid-sZTXtClyHu .container-fluid {
  padding: 0 3rem;
}
.cid-sZTXtClyHu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #05386b 50%, #5cdb95 120%);
  display: inline-block;
}
.cid-sZTXtClyHu .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-sZTXtClyHu .timeline-text-content p {
  margin-bottom: 0;
}
.cid-sZTXtClyHu .time-line-date-content {
  margin-right: 2rem;
}
.cid-sZTXtClyHu .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-sZTXtClyHu .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.cid-sZTXtClyHu .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fe525b;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-sZTXtClyHu .separline:before,
.cid-sZTXtClyHu .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-sZTXtClyHu .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sZTXtClyHu .container-fluid {
    padding: 0 1rem;
  }
  .cid-sZTXtClyHu .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-sZTXtClyHu .separline:before,
  .cid-sZTXtClyHu .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-sZTXtClyHu .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-sZTXtClyHu .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sZTXtClyHu .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sZTXtClyHu .time-line-date-content p {
    float: left !important;
  }
  .cid-sZTXtClyHu .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-sZTXtClyHu .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-sZTWjxIXme {
  z-index: 1000;
  width: 100%;
}
.cid-sZTWjxIXme nav.navbar {
  position: fixed;
}
.cid-sZTWjxIXme .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-sZTWjxIXme .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZTWjxIXme .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZTWjxIXme .dropdown-item:hover,
.cid-sZTWjxIXme .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-sZTWjxIXme .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZTWjxIXme .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZTWjxIXme .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZTWjxIXme .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZTWjxIXme .nav-link {
  position: relative;
}
.cid-sZTWjxIXme .container {
  display: flex;
  margin: auto;
}
.cid-sZTWjxIXme .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZTWjxIXme .dropdown-menu,
.cid-sZTWjxIXme .navbar.opened {
  background: #ffffff !important;
}
.cid-sZTWjxIXme .nav-item:focus,
.cid-sZTWjxIXme .nav-link:focus {
  outline: none;
}
.cid-sZTWjxIXme .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZTWjxIXme .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZTWjxIXme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZTWjxIXme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZTWjxIXme .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZTWjxIXme .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZTWjxIXme .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZTWjxIXme .navbar.opened {
  transition: all 0.3s;
}
.cid-sZTWjxIXme .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZTWjxIXme .navbar .navbar-logo img {
  width: auto;
}
.cid-sZTWjxIXme .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZTWjxIXme .navbar.collapsed {
  justify-content: center;
}
.cid-sZTWjxIXme .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZTWjxIXme .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZTWjxIXme .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sZTWjxIXme .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZTWjxIXme .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZTWjxIXme .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-sZTWjxIXme .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZTWjxIXme .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZTWjxIXme .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZTWjxIXme .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZTWjxIXme .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZTWjxIXme .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZTWjxIXme .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZTWjxIXme .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-sZTWjxIXme .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZTWjxIXme .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZTWjxIXme .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZTWjxIXme .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZTWjxIXme .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZTWjxIXme .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZTWjxIXme .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZTWjxIXme .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZTWjxIXme .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZTWjxIXme .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-sZTWjxIXme .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZTWjxIXme .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZTWjxIXme .dropdown-item.active,
.cid-sZTWjxIXme .dropdown-item:active {
  background-color: transparent;
}
.cid-sZTWjxIXme .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZTWjxIXme .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZTWjxIXme .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZTWjxIXme .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZTWjxIXme .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZTWjxIXme .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZTWjxIXme ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZTWjxIXme .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZTWjxIXme button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZTWjxIXme button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sZTWjxIXme button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZTWjxIXme button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZTWjxIXme button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZTWjxIXme button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZTWjxIXme nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZTWjxIXme nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZTWjxIXme nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZTWjxIXme nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZTWjxIXme .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZTWjxIXme a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZTWjxIXme .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZTWjxIXme .navbar {
    height: 70px;
  }
  .cid-sZTWjxIXme .navbar.opened {
    height: auto;
  }
  .cid-sZTWjxIXme .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZTWjyrBO9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-sZTWjyrBO9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sZTWjyrBO9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sZTWjyrBO9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sZTWjyrBO9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sZTWjyrBO9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sZTWjyrBO9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sZTWjyrBO9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZTWjyrBO9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sZTWjyrBO9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZTWjyrBO9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sZTWjyrBO9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sZTWjyrBO9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZTWjyrBO9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sZTWjyrBO9 .media-container-row .row-copirayt p {
  width: 100%;
}
