.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: '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: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #05386b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #c75712 !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: #c75712 !important;
  border-color: #c75712 !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: #77340b !important;
  border-color: #77340b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #77340b !important;
  border-color: #77340b !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: #c75712;
  color: #c75712;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #77340b !important;
  background-color: transparent!important;
  border-color: #77340b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c75712 !important;
  border-color: #c75712 !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: #c75712 !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: #692e0a !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: #c75712;
}
.mbr-gallery-filter li.active .btn {
  background-color: #05386b;
  border-color: #05386b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #f19c67;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.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 */
.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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  position: relative !important;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #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: #edf5e1 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.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 - 3rem);
  }
}
.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: #edf5e1;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 11rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/8ed5567f-0e0e-4640-9ab1-108c61dd03b8-1024x768.jpg");
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #edf5e1;
  text-align: center;
}
.cid-vpxaa0M2XI {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-vpxaa0M2XI .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-vpxaa0M2XI .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vpxaa0M2XI .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpxaa0M2XI .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vpxaa0M2XI .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vpxaa0M2XI .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vpxaa0M2XI .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vpxaa0M2XI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vpxaa0M2XI .card-title {
  color: #05386b;
}
.cid-vpxaa0M2XI .mbr-text,
.cid-vpxaa0M2XI .mbr-section-btn {
  color: #05386b;
}
.cid-vqF6EVuoMK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF6EVuoMK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF6EVuoMK .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF6EVuoMK .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF6EVuoMK .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF6EVuoMK .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF6EVuoMK .card_body {
  margin-bottom: 40px;
}
.cid-vqF6EVuoMK .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF6EVuoMK .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF6EVuoMK .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF6EVuoMK .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF6EVuoMK .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF6EVuoMK .form_wrap {
  padding: 0px 65px;
}
.cid-vqF6EVuoMK .form-group {
  margin-bottom: 30px;
}
.cid-vqF6EVuoMK .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF6EVuoMK input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF6EVuoMK form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF6EVuoMK form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF6EVuoMK .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF6EVuoMK .form_wrap,
  .cid-vqF6EVuoMK .title_block {
    padding: 0px 45px;
  }
  .cid-vqF6EVuoMK .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF6EVuoMK .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF6EVuoMK .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF6EVuoMK .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF6EVuoMK .form_wrap,
  .cid-vqF6EVuoMK .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF6EVuoMK .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF6EVuoMK LABEL {
  color: #191c2f;
}
.cid-vqF6EVuoMK .list,
.cid-vqF6EVuoMK .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpxabpqEqz {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vpxabpqEqz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vpxabpqEqz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vpxabpqEqz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vpxabpqEqz .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
}
.cid-vpxabpqEqz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vpxabpqEqz .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vpxabpqEqz .mbr-text {
  color: #05386b;
}
.cid-vpxabpqEqz .card-title {
  color: #05386b;
}
.cid-vpxabpqEqz .price {
  color: #05386b;
}
.cid-vpxvJHul1e {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vpxvJHul1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpxvJHul1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-vpxvJHul1e .container {
    max-width: 1400px;
  }
}
.cid-vpxvJHul1e .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-vpxvJHul1e .row {
  justify-content: center;
}
.cid-sFAQAQGsOD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
.cid-sFAQAQGsOD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sFAQAQGsOD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFAQAQGsOD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sFAQAQGsOD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sFAQAQGsOD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sFAQAQGsOD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sFAQAQGsOD .carousel-control,
.cid-sFAQAQGsOD .close {
  background: #1b1b1b;
}
.cid-sFAQAQGsOD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sFAQAQGsOD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sFAQAQGsOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFAQAQGsOD .close::before {
  content: '\e91a';
}
.cid-sFAQAQGsOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFAQAQGsOD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFAQAQGsOD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-indicators li.active,
.cid-sFAQAQGsOD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFAQAQGsOD .carousel-indicators li::after,
.cid-sFAQAQGsOD .carousel-indicators li::before {
  content: none;
}
.cid-sFAQAQGsOD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none;
  }
}
.cid-sFAQAQGsOD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .carousel-inner > .active {
  display: block;
}
.cid-sFAQAQGsOD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-control,
  .cid-sFAQAQGsOD .carousel-indicators,
  .cid-sFAQAQGsOD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sFAQAQGsOD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sFAQAQGsOD .carousel-indicators .active,
.cid-sFAQAQGsOD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sFAQAQGsOD .carousel-indicators .active {
  background: #fff;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sFAQAQGsOD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sFAQAQGsOD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFAQAQGsOD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sFAQAQGsOD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sFAQAQGsOD .carousel {
  width: 100%;
}
.cid-sFAQAQGsOD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog,
.cid-sFAQAQGsOD .modal.in .modal-dialog {
  transform: none;
}
.cid-sFAQAQGsOD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sFAQAQGsOD H6 {
  text-align: center;
}
.cid-sFAQAQGsOD H3 {
  color: #05386b;
}
.cid-vpxz676USD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
.cid-vpxz676USD .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vpxz676USD .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vpxz676USD .img1 {
  background: #05386b;
}
.cid-vpxz676USD .img2 {
  background: #05386b;
}
.cid-vpxz676USD .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vpxz676USD .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vpxz676USD .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vpxz676USD .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpxz676USD .card-wrapper {
    flex-direction: column;
  }
  .cid-vpxz676USD .card-box {
    padding: 1rem;
  }
  .cid-vpxz676USD .card-box,
  .cid-vpxz676USD .img-wrapper {
    width: 100%;
  }
  .cid-vpxz676USD .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vpxz676USD .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vpxz676USD .card-subtitle {
  color: #05386b;
}
.cid-vpxz676USD .mbr-text,
.cid-vpxz676USD .link-wrap {
  color: #555555;
}
.cid-vpxz676USD .card-title,
.cid-vpxz676USD .card-box {
  color: #05386b;
}
.cid-vpxz676USD .mbr-text,
.cid-vpxz676USD .mbr-section-btn {
  color: #555555;
}
.cid-vpxzxqwt4G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpxzxqwt4G .mbr-section-title {
  color: #05386b;
}
.cid-vpxzxqwt4G .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpxzwzw8SE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vpxzwzw8SE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vpxzwzw8SE .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vpxzwzw8SE .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vpxzwzw8SE .mbr-section-title {
  color: #191c2f;
  margin-bottom: 60px;
}
.cid-vpxzwzw8SE .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vpxzwzw8SE .card_body {
  margin-bottom: 40px;
}
.cid-vpxzwzw8SE .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vpxzwzw8SE .card_body .list li {
  margin-bottom: 15px;
}
.cid-vpxzwzw8SE .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vpxzwzw8SE .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vpxzwzw8SE .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vpxzwzw8SE .form_wrap {
  padding: 0px 65px;
}
.cid-vpxzwzw8SE .form-group {
  margin-bottom: 30px;
}
.cid-vpxzwzw8SE .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vpxzwzw8SE input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vpxzwzw8SE form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vpxzwzw8SE form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vpxzwzw8SE .signup_wrap {
    padding: 50px 0;
  }
  .cid-vpxzwzw8SE .form_wrap,
  .cid-vpxzwzw8SE .title_block {
    padding: 0px 45px;
  }
  .cid-vpxzwzw8SE .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vpxzwzw8SE .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vpxzwzw8SE .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vpxzwzw8SE .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vpxzwzw8SE .form_wrap,
  .cid-vpxzwzw8SE .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vpxzwzw8SE .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vpxzwzw8SE LABEL {
  color: #191c2f;
}
.cid-vpxzwzw8SE .list,
.cid-vpxzwzw8SE .mbr-section-btn {
  color: #6a6b78;
}
.cid-vqEV0EHCEv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vqEV0EHCEv .mbr-section-title {
  color: #05386b;
}
.cid-vqEV0EHCEv .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFAOgbarYq {
  padding-top: 0rem;
  padding-bottom: 6rem;
  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-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpwZH3x1Sf .navbar-dropdown {
  position: relative !important;
}
.cid-vpwZH3x1Sf .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-vpwZH3x1Sf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpwZH3x1Sf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpwZH3x1Sf .dropdown-item:hover,
.cid-vpwZH3x1Sf .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpwZH3x1Sf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpwZH3x1Sf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpwZH3x1Sf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpwZH3x1Sf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpwZH3x1Sf .nav-link {
  position: relative;
}
.cid-vpwZH3x1Sf .container {
  display: flex;
  margin: auto;
}
.cid-vpwZH3x1Sf .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpwZH3x1Sf .dropdown-menu,
.cid-vpwZH3x1Sf .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpwZH3x1Sf .nav-item:focus,
.cid-vpwZH3x1Sf .nav-link:focus {
  outline: none;
}
.cid-vpwZH3x1Sf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpwZH3x1Sf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpwZH3x1Sf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpwZH3x1Sf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpwZH3x1Sf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpwZH3x1Sf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpwZH3x1Sf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpwZH3x1Sf .navbar.opened {
  transition: all 0.3s;
}
.cid-vpwZH3x1Sf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpwZH3x1Sf .navbar .navbar-logo img {
  width: auto;
}
.cid-vpwZH3x1Sf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpwZH3x1Sf .navbar.collapsed {
  justify-content: center;
}
.cid-vpwZH3x1Sf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpwZH3x1Sf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpwZH3x1Sf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpwZH3x1Sf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpwZH3x1Sf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpwZH3x1Sf .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-vpwZH3x1Sf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpwZH3x1Sf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpwZH3x1Sf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpwZH3x1Sf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpwZH3x1Sf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpwZH3x1Sf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpwZH3x1Sf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpwZH3x1Sf .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-vpwZH3x1Sf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpwZH3x1Sf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpwZH3x1Sf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpwZH3x1Sf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpwZH3x1Sf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpwZH3x1Sf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpwZH3x1Sf .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpwZH3x1Sf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpwZH3x1Sf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpwZH3x1Sf .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-vpwZH3x1Sf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpwZH3x1Sf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpwZH3x1Sf .dropdown-item.active,
.cid-vpwZH3x1Sf .dropdown-item:active {
  background-color: transparent;
}
.cid-vpwZH3x1Sf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpwZH3x1Sf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpwZH3x1Sf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpwZH3x1Sf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpwZH3x1Sf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpwZH3x1Sf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpwZH3x1Sf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpwZH3x1Sf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpwZH3x1Sf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpwZH3x1Sf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpwZH3x1Sf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpwZH3x1Sf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwZH3x1Sf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwZH3x1Sf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpwZH3x1Sf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwZH3x1Sf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpwZH3x1Sf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpwZH3x1Sf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwZH3x1Sf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpwZH3x1Sf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpwZH3x1Sf .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-vpwZH3x1Sf .navbar {
    height: 70px;
  }
  .cid-vpwZH3x1Sf .navbar.opened {
    height: auto;
  }
  .cid-vpwZH3x1Sf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqEVlNa97h {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vqEVlNa97h .mbr-section-title {
  color: #05386b;
}
.cid-vqEVlNa97h .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpxzLVc7Vd {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fafafa;
}
@media (max-width: 767px) {
  .cid-vpxzLVc7Vd .row {
    flex-direction: column-reverse;
  }
  .cid-vpxzLVc7Vd .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vpxzLVc7Vd .google-map {
  height: 100%;
  position: relative;
}
.cid-vpxzLVc7Vd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vpxzLVc7Vd .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-vpxzLVc7Vd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vpxzLVc7Vd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vpxzLVc7Vd .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-vpxzLVc7Vd .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-vpxzLVc7Vd .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-vpxzLVc7Vd .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vpxzLVc7Vd .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-vpxzLVc7Vd .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #05386b;
}
.cid-vpxzLVc7Vd .mbr-section-title {
  color: #05386b;
}
.cid-vpxzLVc7Vd .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpxzLVc7Vd .card-title {
  color: #05386b;
}
.cid-vpxzLVc7Vd P {
  color: #05386b;
}
.cid-vpxzYGJR16 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpxzYGJR16 .mbr-section-title {
  color: #05386b;
}
.cid-vpxzYGJR16 .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF9qHkfUC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF9qHkfUC .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF9qHkfUC .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF9qHkfUC .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF9qHkfUC .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF9qHkfUC .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF9qHkfUC .card_body {
  margin-bottom: 40px;
}
.cid-vqF9qHkfUC .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF9qHkfUC .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF9qHkfUC .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF9qHkfUC .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF9qHkfUC .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF9qHkfUC .form_wrap {
  padding: 0px 65px;
}
.cid-vqF9qHkfUC .form-group {
  margin-bottom: 30px;
}
.cid-vqF9qHkfUC .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF9qHkfUC input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF9qHkfUC form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF9qHkfUC form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF9qHkfUC .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF9qHkfUC .form_wrap,
  .cid-vqF9qHkfUC .title_block {
    padding: 0px 45px;
  }
  .cid-vqF9qHkfUC .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF9qHkfUC .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF9qHkfUC .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF9qHkfUC .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF9qHkfUC .form_wrap,
  .cid-vqF9qHkfUC .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF9qHkfUC .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF9qHkfUC LABEL {
  color: #191c2f;
}
.cid-vqF9qHkfUC .list,
.cid-vqF9qHkfUC .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpwYXoyjGj .navbar-dropdown {
  position: relative !important;
}
.cid-vpwYXoyjGj .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-vpwYXoyjGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpwYXoyjGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpwYXoyjGj .dropdown-item:hover,
.cid-vpwYXoyjGj .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpwYXoyjGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpwYXoyjGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpwYXoyjGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpwYXoyjGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpwYXoyjGj .nav-link {
  position: relative;
}
.cid-vpwYXoyjGj .container {
  display: flex;
  margin: auto;
}
.cid-vpwYXoyjGj .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpwYXoyjGj .dropdown-menu,
.cid-vpwYXoyjGj .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpwYXoyjGj .nav-item:focus,
.cid-vpwYXoyjGj .nav-link:focus {
  outline: none;
}
.cid-vpwYXoyjGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpwYXoyjGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpwYXoyjGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpwYXoyjGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpwYXoyjGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpwYXoyjGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpwYXoyjGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpwYXoyjGj .navbar.opened {
  transition: all 0.3s;
}
.cid-vpwYXoyjGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpwYXoyjGj .navbar .navbar-logo img {
  width: auto;
}
.cid-vpwYXoyjGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpwYXoyjGj .navbar.collapsed {
  justify-content: center;
}
.cid-vpwYXoyjGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpwYXoyjGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpwYXoyjGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpwYXoyjGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpwYXoyjGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpwYXoyjGj .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-vpwYXoyjGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpwYXoyjGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpwYXoyjGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpwYXoyjGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpwYXoyjGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpwYXoyjGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpwYXoyjGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpwYXoyjGj .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-vpwYXoyjGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpwYXoyjGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpwYXoyjGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpwYXoyjGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpwYXoyjGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpwYXoyjGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpwYXoyjGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpwYXoyjGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpwYXoyjGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpwYXoyjGj .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-vpwYXoyjGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpwYXoyjGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpwYXoyjGj .dropdown-item.active,
.cid-vpwYXoyjGj .dropdown-item:active {
  background-color: transparent;
}
.cid-vpwYXoyjGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpwYXoyjGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpwYXoyjGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpwYXoyjGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpwYXoyjGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpwYXoyjGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpwYXoyjGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpwYXoyjGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpwYXoyjGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpwYXoyjGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpwYXoyjGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpwYXoyjGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwYXoyjGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwYXoyjGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpwYXoyjGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwYXoyjGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpwYXoyjGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpwYXoyjGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwYXoyjGj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpwYXoyjGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpwYXoyjGj .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-vpwYXoyjGj .navbar {
    height: 70px;
  }
  .cid-vpwYXoyjGj .navbar.opened {
    height: auto;
  }
  .cid-vpwYXoyjGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpxpRLrWek {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vpxpRLrWek .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpxpRLrWek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vpxpRLrWek .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vpxpRLrWek .row {
  flex-direction: row-reverse;
}
.cid-vpxpRLrWek img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vpxpRLrWek .text-wrapper {
    padding: 2rem;
  }
}
.cid-vpwYXvoI3f {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vpwYXvoI3f .mbr-section-title {
  color: #05386b;
}
.cid-vpwYXvoI3f .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpwYXubLNh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edf5e1;
}
.cid-vpwYXubLNh .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vpwYXubLNh .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vpwYXubLNh .img1 {
  background: #05386b;
}
.cid-vpwYXubLNh .img2 {
  background: #05386b;
}
.cid-vpwYXubLNh .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vpwYXubLNh .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vpwYXubLNh .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vpwYXubLNh .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpwYXubLNh .card-wrapper {
    flex-direction: column;
  }
  .cid-vpwYXubLNh .card-box {
    padding: 1rem;
  }
  .cid-vpwYXubLNh .card-box,
  .cid-vpwYXubLNh .img-wrapper {
    width: 100%;
  }
  .cid-vpwYXubLNh .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vpwYXubLNh .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vpwYXubLNh .card-subtitle {
  color: #05386b;
}
.cid-vpwYXubLNh .mbr-text,
.cid-vpwYXubLNh .link-wrap {
  color: #555555;
}
.cid-vpwYXubLNh .card-title,
.cid-vpwYXubLNh .card-box {
  color: #05386b;
}
.cid-vpwYXubLNh .mbr-text,
.cid-vpwYXubLNh .mbr-section-btn {
  color: #555555;
}
.cid-vpxtuiqko5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpxtuiqko5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpxtuiqko5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-vpxtuiqko5 .container {
    max-width: 1400px;
  }
}
.cid-vpxtuiqko5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-vpxtuiqko5 .row {
  justify-content: center;
}
.cid-vpwYXtixno {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpwYXtixno .mbr-section-title {
  color: #05386b;
}
.cid-vpwYXtixno .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF7mpDbBD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF7mpDbBD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF7mpDbBD .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF7mpDbBD .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF7mpDbBD .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF7mpDbBD .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF7mpDbBD .card_body {
  margin-bottom: 40px;
}
.cid-vqF7mpDbBD .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF7mpDbBD .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF7mpDbBD .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF7mpDbBD .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF7mpDbBD .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF7mpDbBD .form_wrap {
  padding: 0px 65px;
}
.cid-vqF7mpDbBD .form-group {
  margin-bottom: 30px;
}
.cid-vqF7mpDbBD .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF7mpDbBD input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF7mpDbBD form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF7mpDbBD form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF7mpDbBD .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF7mpDbBD .form_wrap,
  .cid-vqF7mpDbBD .title_block {
    padding: 0px 45px;
  }
  .cid-vqF7mpDbBD .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF7mpDbBD .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF7mpDbBD .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF7mpDbBD .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF7mpDbBD .form_wrap,
  .cid-vqF7mpDbBD .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF7mpDbBD .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF7mpDbBD LABEL {
  color: #191c2f;
}
.cid-vqF7mpDbBD .list,
.cid-vqF7mpDbBD .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpwZBcioTk .navbar-dropdown {
  position: relative !important;
}
.cid-vpwZBcioTk .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-vpwZBcioTk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpwZBcioTk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpwZBcioTk .dropdown-item:hover,
.cid-vpwZBcioTk .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpwZBcioTk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpwZBcioTk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpwZBcioTk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpwZBcioTk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpwZBcioTk .nav-link {
  position: relative;
}
.cid-vpwZBcioTk .container {
  display: flex;
  margin: auto;
}
.cid-vpwZBcioTk .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpwZBcioTk .dropdown-menu,
.cid-vpwZBcioTk .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpwZBcioTk .nav-item:focus,
.cid-vpwZBcioTk .nav-link:focus {
  outline: none;
}
.cid-vpwZBcioTk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpwZBcioTk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpwZBcioTk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpwZBcioTk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpwZBcioTk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpwZBcioTk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpwZBcioTk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpwZBcioTk .navbar.opened {
  transition: all 0.3s;
}
.cid-vpwZBcioTk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpwZBcioTk .navbar .navbar-logo img {
  width: auto;
}
.cid-vpwZBcioTk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpwZBcioTk .navbar.collapsed {
  justify-content: center;
}
.cid-vpwZBcioTk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpwZBcioTk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpwZBcioTk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpwZBcioTk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpwZBcioTk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpwZBcioTk .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-vpwZBcioTk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpwZBcioTk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpwZBcioTk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpwZBcioTk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpwZBcioTk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpwZBcioTk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpwZBcioTk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpwZBcioTk .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-vpwZBcioTk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpwZBcioTk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpwZBcioTk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpwZBcioTk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpwZBcioTk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpwZBcioTk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpwZBcioTk .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpwZBcioTk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpwZBcioTk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpwZBcioTk .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-vpwZBcioTk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpwZBcioTk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpwZBcioTk .dropdown-item.active,
.cid-vpwZBcioTk .dropdown-item:active {
  background-color: transparent;
}
.cid-vpwZBcioTk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpwZBcioTk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpwZBcioTk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpwZBcioTk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpwZBcioTk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpwZBcioTk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpwZBcioTk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpwZBcioTk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpwZBcioTk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpwZBcioTk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpwZBcioTk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpwZBcioTk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwZBcioTk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpwZBcioTk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpwZBcioTk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwZBcioTk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpwZBcioTk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpwZBcioTk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpwZBcioTk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpwZBcioTk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpwZBcioTk .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-vpwZBcioTk .navbar {
    height: 70px;
  }
  .cid-vpwZBcioTk .navbar.opened {
    height: auto;
  }
  .cid-vpwZBcioTk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpwZBdV08R {
  padding-top: 11rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/dornit-739x414.jpg");
}
.cid-vpwZBdV08R .mbr-section-title {
  color: #c75712;
  text-align: center;
}
.cid-vpwZBdV08R .mbr-text,
.cid-vpwZBdV08R .mbr-section-btn {
  color: #edf5e1;
  text-align: center;
}
.cid-vpCEReDvJR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vpCEReDvJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCEReDvJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-vpCEReDvJR .container {
    max-width: 1400px;
  }
}
.cid-vpCEReDvJR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-vpCEReDvJR .row {
  justify-content: center;
}
.cid-vpCESAKniR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCESAKniR .mbr-section-title {
  color: #05386b;
}
.cid-vpCESAKniR .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF85PmBmy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF85PmBmy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF85PmBmy .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF85PmBmy .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF85PmBmy .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF85PmBmy .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF85PmBmy .card_body {
  margin-bottom: 40px;
}
.cid-vqF85PmBmy .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF85PmBmy .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF85PmBmy .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF85PmBmy .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF85PmBmy .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF85PmBmy .form_wrap {
  padding: 0px 65px;
}
.cid-vqF85PmBmy .form-group {
  margin-bottom: 30px;
}
.cid-vqF85PmBmy .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF85PmBmy input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF85PmBmy form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF85PmBmy form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF85PmBmy .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF85PmBmy .form_wrap,
  .cid-vqF85PmBmy .title_block {
    padding: 0px 45px;
  }
  .cid-vqF85PmBmy .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF85PmBmy .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF85PmBmy .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF85PmBmy .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF85PmBmy .form_wrap,
  .cid-vqF85PmBmy .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF85PmBmy .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF85PmBmy LABEL {
  color: #191c2f;
}
.cid-vqF85PmBmy .list,
.cid-vqF85PmBmy .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpwZBidIH9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vpwZBidIH9 .mbr-section-title {
  color: #05386b;
}
.cid-vpwZBidIH9 .mbr-section-subtitle {
  color: #05386b;
}
.cid-vq0tjuTqLJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vq0tjuTqLJ .mbr-section-title {
  color: #05386b;
}
.cid-vq0tjuTqLJ .mbr-section-subtitle {
  color: #05386b;
}
.cid-vq0swOfe0Y {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vq0swOfe0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vq0swOfe0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vq0swOfe0Y .row {
  align-items: stretch;
  justify-content: center;
}
.cid-vq0swOfe0Y .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-vq0swOfe0Y .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-vpCEr7G9pO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
.cid-vpCEr7G9pO .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vpCEr7G9pO .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vpCEr7G9pO .img1 {
  background: #05386b;
}
.cid-vpCEr7G9pO .img2 {
  background: #05386b;
}
.cid-vpCEr7G9pO .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vpCEr7G9pO .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vpCEr7G9pO .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vpCEr7G9pO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpCEr7G9pO .card-wrapper {
    flex-direction: column;
  }
  .cid-vpCEr7G9pO .card-box {
    padding: 1rem;
  }
  .cid-vpCEr7G9pO .card-box,
  .cid-vpCEr7G9pO .img-wrapper {
    width: 100%;
  }
  .cid-vpCEr7G9pO .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vpCEr7G9pO .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vpCEr7G9pO .card-subtitle {
  color: #05386b;
}
.cid-vpCEr7G9pO .mbr-text,
.cid-vpCEr7G9pO .link-wrap {
  color: #555555;
}
.cid-vpCEr7G9pO .card-title,
.cid-vpCEr7G9pO .card-box {
  color: #05386b;
}
.cid-vpCEr7G9pO .mbr-text,
.cid-vpCEr7G9pO .mbr-section-btn {
  color: #555555;
}
.cid-vpCEsiqyPB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCEsiqyPB .mbr-section-title {
  color: #05386b;
}
.cid-vpCEsiqyPB .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF7P4zZUB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF7P4zZUB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF7P4zZUB .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF7P4zZUB .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF7P4zZUB .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF7P4zZUB .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF7P4zZUB .card_body {
  margin-bottom: 40px;
}
.cid-vqF7P4zZUB .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF7P4zZUB .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF7P4zZUB .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF7P4zZUB .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF7P4zZUB .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF7P4zZUB .form_wrap {
  padding: 0px 65px;
}
.cid-vqF7P4zZUB .form-group {
  margin-bottom: 30px;
}
.cid-vqF7P4zZUB .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF7P4zZUB input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF7P4zZUB form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF7P4zZUB form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF7P4zZUB .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF7P4zZUB .form_wrap,
  .cid-vqF7P4zZUB .title_block {
    padding: 0px 45px;
  }
  .cid-vqF7P4zZUB .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF7P4zZUB .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF7P4zZUB .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF7P4zZUB .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF7P4zZUB .form_wrap,
  .cid-vqF7P4zZUB .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF7P4zZUB .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF7P4zZUB LABEL {
  color: #191c2f;
}
.cid-vqF7P4zZUB .list,
.cid-vqF7P4zZUB .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpx67AgtFr .navbar-dropdown {
  position: relative !important;
}
.cid-vpx67AgtFr .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-vpx67AgtFr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpx67AgtFr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpx67AgtFr .dropdown-item:hover,
.cid-vpx67AgtFr .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpx67AgtFr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpx67AgtFr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpx67AgtFr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpx67AgtFr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpx67AgtFr .nav-link {
  position: relative;
}
.cid-vpx67AgtFr .container {
  display: flex;
  margin: auto;
}
.cid-vpx67AgtFr .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpx67AgtFr .dropdown-menu,
.cid-vpx67AgtFr .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpx67AgtFr .nav-item:focus,
.cid-vpx67AgtFr .nav-link:focus {
  outline: none;
}
.cid-vpx67AgtFr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpx67AgtFr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpx67AgtFr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpx67AgtFr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpx67AgtFr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpx67AgtFr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpx67AgtFr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpx67AgtFr .navbar.opened {
  transition: all 0.3s;
}
.cid-vpx67AgtFr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpx67AgtFr .navbar .navbar-logo img {
  width: auto;
}
.cid-vpx67AgtFr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpx67AgtFr .navbar.collapsed {
  justify-content: center;
}
.cid-vpx67AgtFr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpx67AgtFr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpx67AgtFr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpx67AgtFr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpx67AgtFr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpx67AgtFr .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-vpx67AgtFr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpx67AgtFr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpx67AgtFr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpx67AgtFr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpx67AgtFr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpx67AgtFr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpx67AgtFr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpx67AgtFr .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-vpx67AgtFr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpx67AgtFr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpx67AgtFr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpx67AgtFr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpx67AgtFr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpx67AgtFr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpx67AgtFr .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpx67AgtFr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpx67AgtFr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpx67AgtFr .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-vpx67AgtFr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpx67AgtFr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpx67AgtFr .dropdown-item.active,
.cid-vpx67AgtFr .dropdown-item:active {
  background-color: transparent;
}
.cid-vpx67AgtFr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpx67AgtFr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpx67AgtFr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpx67AgtFr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpx67AgtFr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpx67AgtFr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpx67AgtFr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpx67AgtFr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpx67AgtFr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpx67AgtFr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpx67AgtFr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpx67AgtFr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpx67AgtFr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpx67AgtFr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpx67AgtFr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpx67AgtFr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpx67AgtFr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpx67AgtFr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpx67AgtFr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpx67AgtFr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpx67AgtFr .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-vpx67AgtFr .navbar {
    height: 70px;
  }
  .cid-vpx67AgtFr .navbar.opened {
    height: auto;
  }
  .cid-vpx67AgtFr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpx67FGg2H {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpx67FGg2H .mbr-section-title {
  color: #05386b;
}
.cid-vpx67FGg2H .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpxAuU9fuD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #c75712;
}
.cid-vpxAuU9fuD .mbr-section-title {
  color: #05386b;
}
.cid-vpxAuU9fuD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vpxAj0KwWG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vpxAj0KwWG .mbr-section-title {
  color: #05386b;
}
.cid-vpxAj0KwWG .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpCtMjFCGP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vpCtMjFCGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCtMjFCGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCtMjFCGP .mbr-section-title {
  color: #05386b;
}
.cid-vpCtMjFCGP .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpx67GylQe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
.cid-vpx67GylQe .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vpx67GylQe .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vpx67GylQe .img1 {
  background: #05386b;
}
.cid-vpx67GylQe .img2 {
  background: #05386b;
}
.cid-vpx67GylQe .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vpx67GylQe .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vpx67GylQe .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vpx67GylQe .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpx67GylQe .card-wrapper {
    flex-direction: column;
  }
  .cid-vpx67GylQe .card-box {
    padding: 1rem;
  }
  .cid-vpx67GylQe .card-box,
  .cid-vpx67GylQe .img-wrapper {
    width: 100%;
  }
  .cid-vpx67GylQe .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vpx67GylQe .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vpx67GylQe .card-subtitle {
  color: #05386b;
}
.cid-vpx67GylQe .mbr-text,
.cid-vpx67GylQe .link-wrap {
  color: #555555;
}
.cid-vpx67GylQe .card-title,
.cid-vpx67GylQe .card-box {
  color: #05386b;
}
.cid-vpx67GylQe .mbr-text,
.cid-vpx67GylQe .mbr-section-btn {
  color: #555555;
}
.cid-vpCv2ybFcD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vpCv2ybFcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCv2ybFcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCv2ybFcD .mbr-section-title {
  color: #05386b;
}
.cid-vpCv2ybFcD .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF7BZOaCd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF7BZOaCd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF7BZOaCd .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF7BZOaCd .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF7BZOaCd .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF7BZOaCd .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF7BZOaCd .card_body {
  margin-bottom: 40px;
}
.cid-vqF7BZOaCd .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF7BZOaCd .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF7BZOaCd .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF7BZOaCd .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF7BZOaCd .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF7BZOaCd .form_wrap {
  padding: 0px 65px;
}
.cid-vqF7BZOaCd .form-group {
  margin-bottom: 30px;
}
.cid-vqF7BZOaCd .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF7BZOaCd input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF7BZOaCd form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF7BZOaCd form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF7BZOaCd .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF7BZOaCd .form_wrap,
  .cid-vqF7BZOaCd .title_block {
    padding: 0px 45px;
  }
  .cid-vqF7BZOaCd .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF7BZOaCd .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF7BZOaCd .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF7BZOaCd .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF7BZOaCd .form_wrap,
  .cid-vqF7BZOaCd .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF7BZOaCd .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF7BZOaCd LABEL {
  color: #191c2f;
}
.cid-vqF7BZOaCd .list,
.cid-vqF7BZOaCd .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpxb5UShJA .navbar-dropdown {
  position: relative !important;
}
.cid-vpxb5UShJA .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-vpxb5UShJA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpxb5UShJA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpxb5UShJA .dropdown-item:hover,
.cid-vpxb5UShJA .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpxb5UShJA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpxb5UShJA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpxb5UShJA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpxb5UShJA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpxb5UShJA .nav-link {
  position: relative;
}
.cid-vpxb5UShJA .container {
  display: flex;
  margin: auto;
}
.cid-vpxb5UShJA .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpxb5UShJA .dropdown-menu,
.cid-vpxb5UShJA .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpxb5UShJA .nav-item:focus,
.cid-vpxb5UShJA .nav-link:focus {
  outline: none;
}
.cid-vpxb5UShJA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpxb5UShJA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpxb5UShJA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpxb5UShJA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpxb5UShJA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpxb5UShJA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpxb5UShJA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpxb5UShJA .navbar.opened {
  transition: all 0.3s;
}
.cid-vpxb5UShJA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpxb5UShJA .navbar .navbar-logo img {
  width: auto;
}
.cid-vpxb5UShJA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpxb5UShJA .navbar.collapsed {
  justify-content: center;
}
.cid-vpxb5UShJA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpxb5UShJA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpxb5UShJA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpxb5UShJA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpxb5UShJA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpxb5UShJA .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-vpxb5UShJA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpxb5UShJA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpxb5UShJA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpxb5UShJA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpxb5UShJA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpxb5UShJA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpxb5UShJA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpxb5UShJA .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-vpxb5UShJA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpxb5UShJA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpxb5UShJA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpxb5UShJA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpxb5UShJA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpxb5UShJA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpxb5UShJA .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpxb5UShJA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpxb5UShJA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpxb5UShJA .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-vpxb5UShJA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpxb5UShJA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpxb5UShJA .dropdown-item.active,
.cid-vpxb5UShJA .dropdown-item:active {
  background-color: transparent;
}
.cid-vpxb5UShJA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpxb5UShJA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpxb5UShJA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpxb5UShJA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpxb5UShJA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpxb5UShJA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpxb5UShJA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpxb5UShJA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpxb5UShJA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpxb5UShJA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpxb5UShJA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpxb5UShJA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpxb5UShJA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpxb5UShJA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpxb5UShJA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpxb5UShJA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpxb5UShJA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpxb5UShJA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpxb5UShJA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpxb5UShJA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpxb5UShJA .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-vpxb5UShJA .navbar {
    height: 70px;
  }
  .cid-vpxb5UShJA .navbar.opened {
    height: auto;
  }
  .cid-vpxb5UShJA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpxb5YfOgk {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpxb5YfOgk .mbr-section-title {
  color: #05386b;
}
.cid-vpxb5YfOgk .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpxaZ9NqEK .navbar-dropdown {
  position: relative !important;
}
.cid-vpxaZ9NqEK .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-vpxaZ9NqEK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpxaZ9NqEK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpxaZ9NqEK .dropdown-item:hover,
.cid-vpxaZ9NqEK .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpxaZ9NqEK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpxaZ9NqEK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpxaZ9NqEK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpxaZ9NqEK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpxaZ9NqEK .nav-link {
  position: relative;
}
.cid-vpxaZ9NqEK .container {
  display: flex;
  margin: auto;
}
.cid-vpxaZ9NqEK .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpxaZ9NqEK .dropdown-menu,
.cid-vpxaZ9NqEK .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpxaZ9NqEK .nav-item:focus,
.cid-vpxaZ9NqEK .nav-link:focus {
  outline: none;
}
.cid-vpxaZ9NqEK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpxaZ9NqEK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpxaZ9NqEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpxaZ9NqEK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpxaZ9NqEK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpxaZ9NqEK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpxaZ9NqEK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpxaZ9NqEK .navbar.opened {
  transition: all 0.3s;
}
.cid-vpxaZ9NqEK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpxaZ9NqEK .navbar .navbar-logo img {
  width: auto;
}
.cid-vpxaZ9NqEK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpxaZ9NqEK .navbar.collapsed {
  justify-content: center;
}
.cid-vpxaZ9NqEK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpxaZ9NqEK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpxaZ9NqEK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpxaZ9NqEK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpxaZ9NqEK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpxaZ9NqEK .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-vpxaZ9NqEK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpxaZ9NqEK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpxaZ9NqEK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpxaZ9NqEK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpxaZ9NqEK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpxaZ9NqEK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpxaZ9NqEK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpxaZ9NqEK .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-vpxaZ9NqEK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpxaZ9NqEK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpxaZ9NqEK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpxaZ9NqEK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpxaZ9NqEK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpxaZ9NqEK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpxaZ9NqEK .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpxaZ9NqEK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpxaZ9NqEK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpxaZ9NqEK .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-vpxaZ9NqEK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpxaZ9NqEK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpxaZ9NqEK .dropdown-item.active,
.cid-vpxaZ9NqEK .dropdown-item:active {
  background-color: transparent;
}
.cid-vpxaZ9NqEK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpxaZ9NqEK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpxaZ9NqEK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpxaZ9NqEK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpxaZ9NqEK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpxaZ9NqEK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpxaZ9NqEK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpxaZ9NqEK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpxaZ9NqEK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpxaZ9NqEK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpxaZ9NqEK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpxaZ9NqEK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpxaZ9NqEK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpxaZ9NqEK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpxaZ9NqEK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpxaZ9NqEK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpxaZ9NqEK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpxaZ9NqEK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpxaZ9NqEK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpxaZ9NqEK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpxaZ9NqEK .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-vpxaZ9NqEK .navbar {
    height: 70px;
  }
  .cid-vpxaZ9NqEK .navbar.opened {
    height: auto;
  }
  .cid-vpxaZ9NqEK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpCCqfNjtG {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCCqfNjtG .mbr-section-title {
  color: #05386b;
}
.cid-vpCCqfNjtG .mbr-section-subtitle {
  color: #05386b;
}
.cid-vpCCqfNjtG .mbr-section-subtitle DIV {
  text-align: justify;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vpCGhB2RKn .navbar-dropdown {
  position: relative !important;
}
.cid-vpCGhB2RKn .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-vpCGhB2RKn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vpCGhB2RKn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vpCGhB2RKn .dropdown-item:hover,
.cid-vpCGhB2RKn .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-vpCGhB2RKn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vpCGhB2RKn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vpCGhB2RKn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vpCGhB2RKn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vpCGhB2RKn .nav-link {
  position: relative;
}
.cid-vpCGhB2RKn .container {
  display: flex;
  margin: auto;
}
.cid-vpCGhB2RKn .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vpCGhB2RKn .dropdown-menu,
.cid-vpCGhB2RKn .navbar.opened {
  background: #edf5e1 !important;
}
.cid-vpCGhB2RKn .nav-item:focus,
.cid-vpCGhB2RKn .nav-link:focus {
  outline: none;
}
.cid-vpCGhB2RKn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vpCGhB2RKn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vpCGhB2RKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vpCGhB2RKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vpCGhB2RKn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vpCGhB2RKn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vpCGhB2RKn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #edf5e1;
}
.cid-vpCGhB2RKn .navbar.opened {
  transition: all 0.3s;
}
.cid-vpCGhB2RKn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vpCGhB2RKn .navbar .navbar-logo img {
  width: auto;
}
.cid-vpCGhB2RKn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vpCGhB2RKn .navbar.collapsed {
  justify-content: center;
}
.cid-vpCGhB2RKn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vpCGhB2RKn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vpCGhB2RKn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vpCGhB2RKn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vpCGhB2RKn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vpCGhB2RKn .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-vpCGhB2RKn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vpCGhB2RKn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vpCGhB2RKn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vpCGhB2RKn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vpCGhB2RKn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vpCGhB2RKn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vpCGhB2RKn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vpCGhB2RKn .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-vpCGhB2RKn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vpCGhB2RKn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vpCGhB2RKn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vpCGhB2RKn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vpCGhB2RKn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vpCGhB2RKn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vpCGhB2RKn .navbar.navbar-short {
  min-height: 60px;
}
.cid-vpCGhB2RKn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vpCGhB2RKn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vpCGhB2RKn .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-vpCGhB2RKn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vpCGhB2RKn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vpCGhB2RKn .dropdown-item.active,
.cid-vpCGhB2RKn .dropdown-item:active {
  background-color: transparent;
}
.cid-vpCGhB2RKn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vpCGhB2RKn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vpCGhB2RKn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vpCGhB2RKn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #edf5e1;
}
.cid-vpCGhB2RKn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vpCGhB2RKn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vpCGhB2RKn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vpCGhB2RKn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vpCGhB2RKn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vpCGhB2RKn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-vpCGhB2RKn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vpCGhB2RKn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpCGhB2RKn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vpCGhB2RKn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vpCGhB2RKn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpCGhB2RKn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vpCGhB2RKn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vpCGhB2RKn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vpCGhB2RKn .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vpCGhB2RKn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vpCGhB2RKn .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-vpCGhB2RKn .navbar {
    height: 70px;
  }
  .cid-vpCGhB2RKn .navbar.opened {
    height: auto;
  }
  .cid-vpCGhB2RKn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vpCGhDsLSf {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/len-1440x1169.jpg");
}
.cid-vpCGhDsLSf .mbr-section-title {
  color: #c75712;
  text-align: center;
}
.cid-vpCGhDsLSf .mbr-text,
.cid-vpCGhDsLSf .mbr-section-btn {
  color: #edf5e1;
  text-align: center;
}
.cid-vpCGhG4OUu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCGhG4OUu .mbr-section-title {
  color: #05386b;
}
.cid-vpCGhG4OUu .mbr-section-subtitle {
  color: #05386b;
}
.cid-vq0nJeFNS2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vq0nJeFNS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vq0nJeFNS2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vq0nJeFNS2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vq0nJeFNS2 .row {
  flex-direction: row-reverse;
}
.cid-vq0nJeFNS2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vq0nJeFNS2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vq0nJeFNS2 .mbr-text {
  color: #05386b;
}
.cid-vq0nJeFNS2 .mbr-section-title {
  color: #05386b;
}
.cid-vpUkJVS0i9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vpUkJVS0i9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpUkJVS0i9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpUkJVS0i9 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-vpUkJVS0i9 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-vpUkJVS0i9 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-vpCGhHZjXi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCGhHZjXi .mbr-section-title {
  color: #05386b;
}
.cid-vpCGhHZjXi .mbr-section-subtitle {
  color: #05386b;
}
.cid-vq0pFe3nZv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vq0pFe3nZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vq0pFe3nZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vq0pFe3nZv .row {
  align-items: stretch;
  justify-content: center;
}
.cid-vq0pFe3nZv .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-vq0pFe3nZv .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-vpCGhKSoc8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edf5e1;
}
.cid-vpCGhKSoc8 .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vpCGhKSoc8 .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vpCGhKSoc8 .img1 {
  background: #05386b;
}
.cid-vpCGhKSoc8 .img2 {
  background: #05386b;
}
.cid-vpCGhKSoc8 .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vpCGhKSoc8 .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vpCGhKSoc8 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vpCGhKSoc8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vpCGhKSoc8 .card-wrapper {
    flex-direction: column;
  }
  .cid-vpCGhKSoc8 .card-box {
    padding: 1rem;
  }
  .cid-vpCGhKSoc8 .card-box,
  .cid-vpCGhKSoc8 .img-wrapper {
    width: 100%;
  }
  .cid-vpCGhKSoc8 .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vpCGhKSoc8 .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vpCGhKSoc8 .card-subtitle {
  color: #05386b;
}
.cid-vpCGhKSoc8 .mbr-text,
.cid-vpCGhKSoc8 .link-wrap {
  color: #555555;
}
.cid-vpCGhKSoc8 .card-title,
.cid-vpCGhKSoc8 .card-box {
  color: #05386b;
}
.cid-vpCGhKSoc8 .mbr-text,
.cid-vpCGhKSoc8 .mbr-section-btn {
  color: #555555;
}
.cid-vpCGhM4Uhc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-vpCGhM4Uhc .mbr-section-title {
  color: #05386b;
}
.cid-vpCGhM4Uhc .mbr-section-subtitle {
  color: #05386b;
}
.cid-vqF9hpC9YS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqF9hpC9YS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-vqF9hpC9YS .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-vqF9hpC9YS .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-vqF9hpC9YS .mbr-section-title {
  color: #05386b;
  margin-bottom: 60px;
}
.cid-vqF9hpC9YS .mbr-section-subtitle {
  color: #191c2f;
  margin-bottom: 35px;
}
.cid-vqF9hpC9YS .card_body {
  margin-bottom: 40px;
}
.cid-vqF9hpC9YS .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-vqF9hpC9YS .card_body .list li {
  margin-bottom: 15px;
}
.cid-vqF9hpC9YS .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-vqF9hpC9YS .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #05386b;
  font-size: inherit;
}
.cid-vqF9hpC9YS .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #191c2f;
}
.cid-vqF9hpC9YS .form_wrap {
  padding: 0px 65px;
}
.cid-vqF9hpC9YS .form-group {
  margin-bottom: 30px;
}
.cid-vqF9hpC9YS .form-control-label {
  margin-bottom: 18px;
  color: #051441;
  font-weight: 700;
}
.cid-vqF9hpC9YS input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #edf5e1;
}
.cid-vqF9hpC9YS form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vqF9hpC9YS form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vqF9hpC9YS .signup_wrap {
    padding: 50px 0;
  }
  .cid-vqF9hpC9YS .form_wrap,
  .cid-vqF9hpC9YS .title_block {
    padding: 0px 45px;
  }
  .cid-vqF9hpC9YS .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-vqF9hpC9YS .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vqF9hpC9YS .signup_wrap {
    padding: 15px 30px;
  }
  .cid-vqF9hpC9YS .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-vqF9hpC9YS .form_wrap,
  .cid-vqF9hpC9YS .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-vqF9hpC9YS .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-vqF9hpC9YS LABEL {
  color: #191c2f;
}
.cid-vqF9hpC9YS .list,
.cid-vqF9hpC9YS .mbr-section-btn {
  color: #6a6b78;
}
.cid-vpV5lmpJCj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #05386b;
}
.cid-vpV5lmpJCj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vpV5lmpJCj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vpV5lmpJCj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-vpV5lmpJCj .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-vpV5lmpJCj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vpV5lmpJCj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vpV5lmpJCj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vpV5lmpJCj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vpV5lmpJCj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vpV5lmpJCj .media-container-row .row-copirayt p {
  width: 100%;
}
