body {
  font-family: 'Open Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.875rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.76rem;
    font-size: calc( 2.295rem + (4.7 - 2.295) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.295rem + (4.7 - 2.295) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fa4529 !important;
  border-color: #fa4529 !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: #c81f05 !important;
  border-color: #c81f05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c81f05 !important;
  border-color: #c81f05 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fa4529;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c81f05 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fa4529 !important;
  border-color: #fa4529 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4479d9 !important;
}
.text-secondary {
  color: #fa4529 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b91c04 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.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: #4479d9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fa4529 !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='%234479d9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sLNCrJe5Kq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLNCrJe5Kq nav.navbar {
  position: fixed;
}
.cid-sLNCrJe5Kq .container,
.cid-sLNCrJe5Kq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .container,
  .cid-sLNCrJe5Kq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #6592e6 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:hover,
.cid-sLNCrJe5Kq .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLNCrJe5Kq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLNCrJe5Kq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLNCrJe5Kq .nav-link {
  position: relative;
}
.cid-sLNCrJe5Kq .nav-link:hover {
  color: #ffffff !important;
}
.cid-sLNCrJe5Kq .nav-link:hover:before {
  opacity: 1;
}
.cid-sLNCrJe5Kq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLNCrJe5Kq .container {
  display: flex;
  margin: auto;
}
.cid-sLNCrJe5Kq .iconfont-wrapper {
  color: #40b0bf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLNCrJe5Kq .nav-item:focus,
.cid-sLNCrJe5Kq .nav-link:focus {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLNCrJe5Kq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLNCrJe5Kq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.opened {
  transition: all 0.3s;
}
.cid-sLNCrJe5Kq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLNCrJe5Kq .navbar .navbar-logo img {
  width: auto;
}
.cid-sLNCrJe5Kq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLNCrJe5Kq .navbar.collapsed {
  justify-content: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLNCrJe5Kq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLNCrJe5Kq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLNCrJe5Kq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLNCrJe5Kq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLNCrJe5Kq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLNCrJe5Kq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLNCrJe5Kq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown-item.active,
.cid-sLNCrJe5Kq .dropdown-item:active {
  background-color: transparent;
}
.cid-sLNCrJe5Kq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLNCrJe5Kq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLNCrJe5Kq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLNCrJe5Kq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLNCrJe5Kq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLNCrJe5Kq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar {
    height: 70px;
  }
  .cid-sLNCrJe5Kq .navbar.opened {
    height: auto;
  }
  .cid-sLNCrJe5Kq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-sLNCrJe5Kq .icons-menu {
    padding-right: 0;
  }
  .cid-sLNCrJe5Kq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sLNBUE89nf {
  background-image: url("../../../assets/images/new-cover-bw-1095x748.jpg");
}
.cid-sLNBUE89nf .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sLNBUE89nf .mbr-section-title a {
  font-weight: 600;
}
.cid-sLNBUE89nf .mbr-section-title a:hover {
  background: none !important;
}
.cid-sLNBUE89nf .mbr-text,
.cid-sLNBUE89nf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sLNBUE89nf .mbr-section-subtitle {
  color: #ffe161;
  text-align: left;
}
.cid-t7Zfx2pXiv {
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-t7Zfx2pXiv .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-t7Zfx2pXiv img {
  transform: scale(2) translateX(-2rem);
  z-index: 0;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-t7Zfx2pXiv img {
    transform: scale(1) translateX(0);
  }
}
.cid-t7Zfx2pXiv .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-t7Zfx2pXiv .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t7Zfx2pXiv .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-t7Zfx2pXiv .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t7Zfx2pXiv .col-12 {
  position: relative;
}
.cid-t7Zfx2pXiv .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t7Zfx2pXiv .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-t7Zfx2pXiv .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-t7Zfx2pXiv .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-t7Zfx2pXiv .mbr-section-title {
  color: #263d5a;
}
.cid-t7Zfx2pXiv .mbr-text,
.cid-t7Zfx2pXiv .mbr-section-btn {
  color: #000000;
}
.cid-t7Zfx2pXiv .mbr-section-subtitle {
  color: #263d5a;
  text-align: right;
}
.cid-t7ZiCue9jS {
  background-color: #bfc6b8;
}
.cid-t7ZiCue9jS .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-t7ZiCue9jS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t7ZiCue9jS .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t7ZiCue9jS .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-t7ZiCue9jS .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-t7ZiCue9jS .mbr-section-title {
  color: #2e6b75;
}
.cid-t7ZiCue9jS .mbr-text {
  color: #6c7577;
}
.cid-t7ZiCue9jS .btn {
  padding: 1rem 3.4rem;
}
.cid-t7ZiCue9jS .mbr-text,
.cid-t7ZiCue9jS .mbr-section-btn {
  color: #353a3c;
}
.cid-t84mPvqfH6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-t84mPvqfH6 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-t84mPvqfH6 .col-lg-4,
.cid-t84mPvqfH6 .col-12 {
  padding: 0 2rem;
}
.cid-t84mPvqfH6 .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-t84mPvqfH6 .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-t84mPvqfH6 .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t84mPvqfH6 .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-t84mPvqfH6 .card-title,
.cid-t84mPvqfH6 .iconfont-wrapper {
  color: #36187d;
  text-align: center;
}
.cid-t84mPvqfH6 .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-t84mPvqfH6 .mbr-section-subtitle {
  color: #6c758f;
}
.cid-t84mPvqfH6 .mbr-section-title {
  color: #36187d;
}
.cid-t83aPhR0jR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #d4ddec;
}
.cid-t83aPhR0jR .container-fluid {
  padding: 0 3rem;
}
.cid-t83aPhR0jR .mbr-section-subtitle {
  color: #767676;
}
.cid-t83aPhR0jR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-t83aPhR0jR .table-wrapper {
  margin: 0 auto;
}
.cid-t83aPhR0jR table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-t83aPhR0jR table thead tr {
  border: none !important;
}
.cid-t83aPhR0jR table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #4076d8;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-t83aPhR0jR table tr td {
  border-color: #4479d9;
}
.cid-t83aPhR0jR table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-t83aPhR0jR tr:hover {
  background-color: #f2f2f2 !important;
}
.cid-t83aPhR0jR th:after,
.cid-t83aPhR0jR th:before {
  display: none !important;
}
.cid-t83aPhR0jR .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-t83aPhR0jR .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-t83aPhR0jR table th,
  .cid-t83aPhR0jR table td {
    padding: .75rem;
  }
}
.cid-t83aPhR0jR .body-item {
  text-align: left;
}
.cid-t83aPhR0jR .mbr-text {
  color: #767676;
}
.cid-t83aPhR0jR .head-item {
  color: #232323;
}
.cid-t83aPhR0jR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-t83aPhR0jR .mbr-section-title,
.cid-t83aPhR0jR .head-item {
  text-align: center;
  color: #bbbbbb;
}
.cid-t83aPhR0jR .mbr-section-subtitle,
.cid-t83aPhR0jR .table tbody .tableColumns .body-item,
.cid-t83aPhR0jR .table {
  color: #22a5e5;
}
.cid-t83aPhR0jR .table .table-heads .head-item {
  color: #666666;
}
.cid-t84xxuwTXD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e8ecf2;
}
.cid-t84xxuwTXD .mbr-section-title {
  color: #4479d9;
}
.cid-t84xxuwTXD .mbr-text,
.cid-t84xxuwTXD .mbr-section-btn {
  color: #ffffff;
}
.cid-t84xxuwTXD .mbr-iconfont {
  font-size: 8rem;
  color: #4479d9;
}
.cid-t84xxuwTXD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t84xxuwTXD h1 {
  line-height: 1.3;
}
.cid-tib9GZlqaf {
  background-color: #0057fc;
}
@media (min-width: 768px) {
  .cid-tib9GZlqaf {
    background-image: url("../../../assets/images/siopen-web2-1-1345x727.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-tib9GZlqaf .row {
  align-items: center;
}
.cid-tib9GZlqaf .image-wrapper {
  padding: 1rem;
}
.cid-tib9GZlqaf .col-text {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.cid-tib9GZlqaf .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-tib9GZlqaf .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-tib9GZlqaf .col-text .radial-svg path {
    fill: #0057fc;
  }
}
.cid-tib9GZlqaf .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-tib9GZlqaf .text-wrapper {
    max-width: 400px;
  }
}
.cid-tib9GZlqaf .label-text {
  width: 100%;
  color: #ffffff;
}
.cid-tib9GZlqaf .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-tib9GZlqaf .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-tib9GZlqaf .btn-container {
  width: 100%;
}
.cid-tib9GZlqaf .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-tib9GZlqaf .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tib9GZlqaf .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tib9GZlqaf .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-tib9GZlqaf .btn-white-outline:hover {
  color: #4479d9 !important;
  background: #ffffff !important;
}
.cid-tib9GZlqaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tib9GZlqaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t84fZuMEeI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t84fZuMEeI .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-t84fZuMEeI .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-t84fZuMEeI .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-t84fZuMEeI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t84fZuMEeI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t84fZuMEeI .map-placeholder {
  display: none;
}
.cid-t84fZuMEeI .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t84fZuMEeI .card {
  padding: 3rem 8rem;
}
.cid-t84fZuMEeI .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-t84fZuMEeI .card .mbr-text {
  color: #06182d;
}
.cid-t84fZuMEeI .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-t84fZuMEeI .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t84fZuMEeI .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-t84fZuMEeI .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-t84fZuMEeI .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-t84fZuMEeI .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-t84fZuMEeI .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-t84fZuMEeI .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-t84fZuMEeI .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t84fZuMEeI .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-t84fZuMEeI .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t84fZuMEeI .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-t84fZuMEeI .card .form-group {
  padding-right: 0;
}
.cid-t84fZuMEeI .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t84fZuMEeI .card .btn-primary {
  border: 1px solid #4479d9 !important;
}
.cid-t84fZuMEeI .card .btn-primary:hover {
  border: 1px solid #4479d9 !important;
}
@media (max-width: 1200px) {
  .cid-t84fZuMEeI .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-t84fZuMEeI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t84fZuMEeI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-t84fZuMEeI * {
    text-align: center !important;
  }
  .cid-t84fZuMEeI .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-t84fZuMEeI .form-group {
    max-width: 180px;
  }
  .cid-t84fZuMEeI .card {
    padding: 2rem 1rem;
  }
}
.cid-t84fZuMEeI .card .mbr-section-title {
  color: #bed3f9;
}
.cid-t84yY2Brzs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9eaf8;
}
.cid-t84yY2Brzs .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-t84yY2Brzs .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-t84yY2Brzs .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
}
.cid-t84yY2Brzs .footer-item {
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
  border-bottom: 1px solid #7F8678;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .cid-t84yY2Brzs .footer-item:nth-child(odd) {
    border-right: 1px solid #7F8678;
  }
}
@media (min-width: 1200px) {
  .cid-t84yY2Brzs .footer-item:not(:last-child) {
    border-right: 1px solid #7F8678;
  }
}
.cid-t84yY2Brzs .mbr-text {
  color: #000000;
}
.cid-t84yY2Brzs .link a {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .copyright {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .text {
  color: #4479d9;
}
.cid-t84yY2Brzs .mbr-form-container {
  margin-top: 12px;
}
.cid-t84yY2Brzs .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.cid-t84yY2Brzs form .row {
  margin: 0;
  border: none !important;
}
.cid-t84yY2Brzs form .form-email {
  width: 100px;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-t84yY2Brzs form .form-email input {
  padding: 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-t84yY2Brzs form .form-email input:hover,
.cid-t84yY2Brzs form .form-email input :focus,
.cid-t84yY2Brzs form .form-email input :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-t84yY2Brzs form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-t84yY2Brzs form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-t84yY2Brzs .copyright-container {
  margin-top: auto;
}
.cid-t84yY2Brzs .link {
  color: #353a3c;
}
.cid-t84yY2Brzs .label {
  color: #4479d9;
}
.cid-tghLzAIzIo.popup-builder {
  background-color: #ffffff;
}
.cid-tghLzAIzIo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tghLzAIzIo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tghLzAIzIo .modal-content,
.cid-tghLzAIzIo .modal-dialog {
  height: auto;
}
.cid-tghLzAIzIo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tghLzAIzIo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tghLzAIzIo .form-wrapper .mbr-form .form-group,
  .cid-tghLzAIzIo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tghLzAIzIo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tghLzAIzIo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tghLzAIzIo .mbr-text {
  text-align: center;
}
.cid-tghLzAIzIo .pt-0 {
  padding-top: 0 !important;
}
.cid-tghLzAIzIo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tghLzAIzIo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tghLzAIzIo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tghLzAIzIo .modal-open {
  overflow: hidden;
}
.cid-tghLzAIzIo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tghLzAIzIo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tghLzAIzIo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tghLzAIzIo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tghLzAIzIo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tghLzAIzIo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tghLzAIzIo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tghLzAIzIo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tghLzAIzIo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tghLzAIzIo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tghLzAIzIo .modal-backdrop.fade {
  opacity: 0;
}
.cid-tghLzAIzIo .modal-backdrop.show {
  opacity: .5;
}
.cid-tghLzAIzIo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tghLzAIzIo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tghLzAIzIo .modal-header {
    padding: 1rem;
  }
}
.cid-tghLzAIzIo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tghLzAIzIo .modal-header .close svg {
  fill: #353535;
}
.cid-tghLzAIzIo .modal-header .close:hover {
  opacity: 1;
}
.cid-tghLzAIzIo .modal-header .close:focus {
  outline: none;
}
.cid-tghLzAIzIo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tghLzAIzIo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tghLzAIzIo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tghLzAIzIo .modal-body {
    padding: 1rem;
  }
}
.cid-tghLzAIzIo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tghLzAIzIo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tghLzAIzIo .modal-footer {
    padding: 1rem;
  }
}
.cid-tghLzAIzIo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tghLzAIzIo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tghLzAIzIo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tghLzAIzIo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tghLzAIzIo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tghLzAIzIo .modal-lg,
  .cid-tghLzAIzIo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tghLzAIzIo .modal-xl {
    max-width: 1140px;
  }
}
.cid-tghLzAIzIo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tghLzAIzIo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tghLzAIzIo .form-group {
  margin-bottom: 1rem;
}
.cid-tghLzAIzIo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tghLzAIzIo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tghLzAIzIo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tghLzAIzIo .mbr-section-btn {
  margin: 0;
}
.cid-tghLzAIzIo .mbr-section-btn .btn {
  margin: 0;
}
.cid-sLNCrJe5Kq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLNCrJe5Kq nav.navbar {
  position: fixed;
}
.cid-sLNCrJe5Kq .container,
.cid-sLNCrJe5Kq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .container,
  .cid-sLNCrJe5Kq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #6592e6 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:hover,
.cid-sLNCrJe5Kq .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLNCrJe5Kq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLNCrJe5Kq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLNCrJe5Kq .nav-link {
  position: relative;
}
.cid-sLNCrJe5Kq .nav-link:hover {
  color: #ffffff !important;
}
.cid-sLNCrJe5Kq .nav-link:hover:before {
  opacity: 1;
}
.cid-sLNCrJe5Kq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLNCrJe5Kq .container {
  display: flex;
  margin: auto;
}
.cid-sLNCrJe5Kq .iconfont-wrapper {
  color: #40b0bf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLNCrJe5Kq .nav-item:focus,
.cid-sLNCrJe5Kq .nav-link:focus {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLNCrJe5Kq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLNCrJe5Kq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.opened {
  transition: all 0.3s;
}
.cid-sLNCrJe5Kq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLNCrJe5Kq .navbar .navbar-logo img {
  width: auto;
}
.cid-sLNCrJe5Kq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLNCrJe5Kq .navbar.collapsed {
  justify-content: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLNCrJe5Kq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLNCrJe5Kq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLNCrJe5Kq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLNCrJe5Kq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLNCrJe5Kq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLNCrJe5Kq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLNCrJe5Kq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown-item.active,
.cid-sLNCrJe5Kq .dropdown-item:active {
  background-color: transparent;
}
.cid-sLNCrJe5Kq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLNCrJe5Kq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLNCrJe5Kq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLNCrJe5Kq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLNCrJe5Kq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLNCrJe5Kq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar {
    height: 70px;
  }
  .cid-sLNCrJe5Kq .navbar.opened {
    height: auto;
  }
  .cid-sLNCrJe5Kq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-sLNCrJe5Kq .icons-menu {
    padding-right: 0;
  }
  .cid-sLNCrJe5Kq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-t84BlnN2Vl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-t84BlnN2Vl .mbr-title {
  color: #1d57c1;
}
.cid-t84BlnN2Vl .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-t84BlnN2Vl .card-wrapper {
  padding-top: 4rem;
}
.cid-t84BlnN2Vl .mbr-section-subtitle {
  color: #1d57c1;
}
.cid-t84BlnN2Vl .mbr-text,
.cid-t84BlnN2Vl .mbr-section-btn {
  color: #000000;
}
.cid-t84BlnN2Vl .mbr-section-title,
.cid-t84BlnN2Vl .item {
  color: #000000;
}
.cid-t84BlnN2Vl .mbr-section-title,
.cid-t84BlnN2Vl .card-wrapper {
  color: #6592e6;
}
.cid-t84ElAiKkn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ecf2;
}
.cid-t84ElAiKkn .mbr-title {
  color: #22a5e5;
}
.cid-t84ElAiKkn .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-t84ElAiKkn .card-wrapper {
  padding-top: 4rem;
}
.cid-t84ElAiKkn .mbr-section-subtitle {
  color: #4479d9;
}
.cid-t84ElAiKkn .mbr-text,
.cid-t84ElAiKkn .mbr-section-btn {
  color: #000000;
}
.cid-t84ElAiKkn .mbr-section-title,
.cid-t84ElAiKkn .item {
  color: #000000;
}
.cid-t84ElAiKkn .mbr-section-title,
.cid-t84ElAiKkn .card-wrapper {
  color: #ff8a8a;
}
.cid-t84yY2Brzs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9eaf8;
}
.cid-t84yY2Brzs .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-t84yY2Brzs .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-t84yY2Brzs .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
}
.cid-t84yY2Brzs .footer-item {
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
  border-bottom: 1px solid #7F8678;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .cid-t84yY2Brzs .footer-item:nth-child(odd) {
    border-right: 1px solid #7F8678;
  }
}
@media (min-width: 1200px) {
  .cid-t84yY2Brzs .footer-item:not(:last-child) {
    border-right: 1px solid #7F8678;
  }
}
.cid-t84yY2Brzs .mbr-text {
  color: #000000;
}
.cid-t84yY2Brzs .link a {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .copyright {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .text {
  color: #4479d9;
}
.cid-t84yY2Brzs .mbr-form-container {
  margin-top: 12px;
}
.cid-t84yY2Brzs .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.cid-t84yY2Brzs form .row {
  margin: 0;
  border: none !important;
}
.cid-t84yY2Brzs form .form-email {
  width: 100px;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-t84yY2Brzs form .form-email input {
  padding: 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-t84yY2Brzs form .form-email input:hover,
.cid-t84yY2Brzs form .form-email input :focus,
.cid-t84yY2Brzs form .form-email input :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-t84yY2Brzs form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-t84yY2Brzs form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-t84yY2Brzs .copyright-container {
  margin-top: auto;
}
.cid-t84yY2Brzs .link {
  color: #353a3c;
}
.cid-t84yY2Brzs .label {
  color: #4479d9;
}
.cid-sLNCrJe5Kq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLNCrJe5Kq nav.navbar {
  position: fixed;
}
.cid-sLNCrJe5Kq .container,
.cid-sLNCrJe5Kq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .container,
  .cid-sLNCrJe5Kq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #6592e6 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:hover,
.cid-sLNCrJe5Kq .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLNCrJe5Kq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLNCrJe5Kq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLNCrJe5Kq .nav-link {
  position: relative;
}
.cid-sLNCrJe5Kq .nav-link:hover {
  color: #ffffff !important;
}
.cid-sLNCrJe5Kq .nav-link:hover:before {
  opacity: 1;
}
.cid-sLNCrJe5Kq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLNCrJe5Kq .container {
  display: flex;
  margin: auto;
}
.cid-sLNCrJe5Kq .iconfont-wrapper {
  color: #40b0bf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLNCrJe5Kq .nav-item:focus,
.cid-sLNCrJe5Kq .nav-link:focus {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLNCrJe5Kq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLNCrJe5Kq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.opened {
  transition: all 0.3s;
}
.cid-sLNCrJe5Kq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLNCrJe5Kq .navbar .navbar-logo img {
  width: auto;
}
.cid-sLNCrJe5Kq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLNCrJe5Kq .navbar.collapsed {
  justify-content: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLNCrJe5Kq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLNCrJe5Kq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLNCrJe5Kq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLNCrJe5Kq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLNCrJe5Kq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLNCrJe5Kq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLNCrJe5Kq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown-item.active,
.cid-sLNCrJe5Kq .dropdown-item:active {
  background-color: transparent;
}
.cid-sLNCrJe5Kq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLNCrJe5Kq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLNCrJe5Kq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLNCrJe5Kq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLNCrJe5Kq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLNCrJe5Kq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar {
    height: 70px;
  }
  .cid-sLNCrJe5Kq .navbar.opened {
    height: auto;
  }
  .cid-sLNCrJe5Kq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-sLNCrJe5Kq .icons-menu {
    padding-right: 0;
  }
  .cid-sLNCrJe5Kq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-t9XKrNHKnK {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t9XKrNHKnK .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-t9XKrNHKnK .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9XKrNHKnK .item-border {
  border-top: 2px solid black;
  margin-bottom: 2rem;
  justify-content: space-between;
}
.cid-t9XKrNHKnK .item-border:hover .mbr-iconfont2 {
  color: #4479d9;
  transform: translateX(5px);
}
.cid-t9XKrNHKnK .mbr-iconfont1 {
  font-size: 5rem;
  color: #1d57c1;
}
.cid-t9XKrNHKnK .mbr-iconfont2 {
  font-size: 2rem;
  color: currentColor;
  transition: all 0.3s;
}
.cid-t9XKrNHKnK .mbr-flex {
  display: flex;
  align-items: center;
}
.cid-t9XKrNHKnK .card {
  border-radius: 0px;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .cid-t9XKrNHKnK .card-wrapper,
  .cid-t9XKrNHKnK .mbr-flex {
    flex-direction: column;
  }
  .cid-t9XKrNHKnK .mbr-iconfont {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .cid-t9XKrNHKnK h4 {
    padding: 0;
  }
  .cid-t9XKrNHKnK .card {
    padding-top: 3rem;
  }
}
.cid-t9XKrNHKnK .card-text {
  color: #666666;
}
.cid-t9XKrNHKnK .mbr-text,
.cid-t9XKrNHKnK .mbr-section-btn {
  color: #666666;
}
.cid-t9XKrNHKnK .card-title,
.cid-t9XKrNHKnK .mbr-iconfont2 {
  color: #000000;
  text-align: center;
}
.cid-t9XKrNHKnK .mbr-section-subtitle {
  color: #353a3c;
}
.cid-t84yY2Brzs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9eaf8;
}
.cid-t84yY2Brzs .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-t84yY2Brzs .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-t84yY2Brzs .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
}
.cid-t84yY2Brzs .footer-item {
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
  border-bottom: 1px solid #7F8678;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .cid-t84yY2Brzs .footer-item:nth-child(odd) {
    border-right: 1px solid #7F8678;
  }
}
@media (min-width: 1200px) {
  .cid-t84yY2Brzs .footer-item:not(:last-child) {
    border-right: 1px solid #7F8678;
  }
}
.cid-t84yY2Brzs .mbr-text {
  color: #000000;
}
.cid-t84yY2Brzs .link a {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .copyright {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .text {
  color: #4479d9;
}
.cid-t84yY2Brzs .mbr-form-container {
  margin-top: 12px;
}
.cid-t84yY2Brzs .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.cid-t84yY2Brzs form .row {
  margin: 0;
  border: none !important;
}
.cid-t84yY2Brzs form .form-email {
  width: 100px;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-t84yY2Brzs form .form-email input {
  padding: 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-t84yY2Brzs form .form-email input:hover,
.cid-t84yY2Brzs form .form-email input :focus,
.cid-t84yY2Brzs form .form-email input :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-t84yY2Brzs form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-t84yY2Brzs form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-t84yY2Brzs .copyright-container {
  margin-top: auto;
}
.cid-t84yY2Brzs .link {
  color: #353a3c;
}
.cid-t84yY2Brzs .label {
  color: #4479d9;
}
.cid-tgVGc7one5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgVGc7one5 nav.navbar {
  position: fixed;
}
.cid-tgVGc7one5 .container,
.cid-tgVGc7one5 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tgVGc7one5 .container,
  .cid-tgVGc7one5 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tgVGc7one5 .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-tgVGc7one5 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #6592e6 !important;
}
.cid-tgVGc7one5 .dropdown-item:hover,
.cid-tgVGc7one5 .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-tgVGc7one5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgVGc7one5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgVGc7one5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tgVGc7one5 .nav-link {
  position: relative;
}
.cid-tgVGc7one5 .nav-link:hover {
  color: #ffffff !important;
}
.cid-tgVGc7one5 .nav-link:hover:before {
  opacity: 1;
}
.cid-tgVGc7one5 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tgVGc7one5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgVGc7one5 .container {
  display: flex;
  margin: auto;
}
.cid-tgVGc7one5 .iconfont-wrapper {
  color: #40b0bf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tgVGc7one5 .nav-item:focus,
.cid-tgVGc7one5 .nav-link:focus {
  outline: none;
}
.cid-tgVGc7one5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgVGc7one5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgVGc7one5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgVGc7one5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgVGc7one5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgVGc7one5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgVGc7one5 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-tgVGc7one5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tgVGc7one5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgVGc7one5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tgVGc7one5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgVGc7one5 .navbar.collapsed {
  justify-content: center;
}
.cid-tgVGc7one5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgVGc7one5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tgVGc7one5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tgVGc7one5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgVGc7one5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgVGc7one5 .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-tgVGc7one5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgVGc7one5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgVGc7one5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgVGc7one5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgVGc7one5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgVGc7one5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgVGc7one5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgVGc7one5 .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-tgVGc7one5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgVGc7one5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgVGc7one5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgVGc7one5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgVGc7one5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgVGc7one5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgVGc7one5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgVGc7one5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgVGc7one5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgVGc7one5 .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-tgVGc7one5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgVGc7one5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgVGc7one5 .dropdown-item.active,
.cid-tgVGc7one5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tgVGc7one5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgVGc7one5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgVGc7one5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgVGc7one5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-tgVGc7one5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgVGc7one5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgVGc7one5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgVGc7one5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgVGc7one5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tgVGc7one5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tgVGc7one5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgVGc7one5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgVGc7one5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgVGc7one5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgVGc7one5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgVGc7one5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgVGc7one5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgVGc7one5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgVGc7one5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tgVGc7one5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgVGc7one5 .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-tgVGc7one5 .navbar {
    height: 70px;
  }
  .cid-tgVGc7one5 .navbar.opened {
    height: auto;
  }
  .cid-tgVGc7one5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-tgVGc7one5 .icons-menu {
    padding-right: 0;
  }
  .cid-tgVGc7one5 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tgVGc9cgnX {
  background-image: url("../../../assets/images/new-cover-bw-1095x748.jpg");
}
.cid-tgVGc9cgnX .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tgVGc9cgnX .mbr-section-title a {
  font-weight: 600;
}
.cid-tgVGc9cgnX .mbr-section-title a:hover {
  background: none !important;
}
.cid-tgVGc9cgnX .mbr-text,
.cid-tgVGc9cgnX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tgVGc9cgnX .mbr-section-subtitle {
  color: #ffe161;
  text-align: left;
}
.cid-tgVGc9S4sv {
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-tgVGc9S4sv .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tgVGc9S4sv img {
  transform: scale(2) translateX(-2rem);
  z-index: 0;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-tgVGc9S4sv img {
    transform: scale(1) translateX(0);
  }
}
.cid-tgVGc9S4sv .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tgVGc9S4sv .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tgVGc9S4sv .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-tgVGc9S4sv .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tgVGc9S4sv .col-12 {
  position: relative;
}
.cid-tgVGc9S4sv .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tgVGc9S4sv .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tgVGc9S4sv .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tgVGc9S4sv .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-tgVGc9S4sv .mbr-section-title {
  color: #263d5a;
}
.cid-tgVGc9S4sv .mbr-text,
.cid-tgVGc9S4sv .mbr-section-btn {
  color: #000000;
}
.cid-tgVGc9S4sv .mbr-section-subtitle {
  color: #263d5a;
  text-align: right;
}
.cid-tgVGcaIGcr {
  background-color: #bfc6b8;
}
.cid-tgVGcaIGcr .image-wrapper {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tgVGcaIGcr .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tgVGcaIGcr .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tgVGcaIGcr .image-wrapper img {
    border-end-start-radius: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-tgVGcaIGcr .text-wrapper {
    padding: 10rem 5rem 0 0rem;
  }
}
.cid-tgVGcaIGcr .mbr-section-title {
  color: #2e6b75;
}
.cid-tgVGcaIGcr .mbr-text {
  color: #6c7577;
}
.cid-tgVGcaIGcr .btn {
  padding: 1rem 3.4rem;
}
.cid-tgVGcaIGcr .mbr-text,
.cid-tgVGcaIGcr .mbr-section-btn {
  color: #353a3c;
}
.cid-tgVGcd1DoH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-tgVGcd1DoH .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-tgVGcd1DoH .col-lg-4,
.cid-tgVGcd1DoH .col-12 {
  padding: 0 2rem;
}
.cid-tgVGcd1DoH .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-tgVGcd1DoH .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-tgVGcd1DoH .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tgVGcd1DoH .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-tgVGcd1DoH .card-title,
.cid-tgVGcd1DoH .iconfont-wrapper {
  color: #36187d;
  text-align: center;
}
.cid-tgVGcd1DoH .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-tgVGcd1DoH .mbr-section-subtitle {
  color: #6c758f;
}
.cid-tgVGcd1DoH .mbr-section-title {
  color: #36187d;
}
.cid-tgVGcdC8Ul {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #d4ddec;
}
.cid-tgVGcdC8Ul .container-fluid {
  padding: 0 3rem;
}
.cid-tgVGcdC8Ul .mbr-section-subtitle {
  color: #767676;
}
.cid-tgVGcdC8Ul .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tgVGcdC8Ul .table-wrapper {
  margin: 0 auto;
}
.cid-tgVGcdC8Ul table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tgVGcdC8Ul table thead tr {
  border: none !important;
}
.cid-tgVGcdC8Ul table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #4076d8;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-tgVGcdC8Ul table tr td {
  border-color: #4479d9;
}
.cid-tgVGcdC8Ul table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-tgVGcdC8Ul tr:hover {
  background-color: #f2f2f2 !important;
}
.cid-tgVGcdC8Ul th:after,
.cid-tgVGcdC8Ul th:before {
  display: none !important;
}
.cid-tgVGcdC8Ul .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-tgVGcdC8Ul .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-tgVGcdC8Ul table th,
  .cid-tgVGcdC8Ul table td {
    padding: .75rem;
  }
}
.cid-tgVGcdC8Ul .body-item {
  text-align: left;
}
.cid-tgVGcdC8Ul .mbr-text {
  color: #767676;
}
.cid-tgVGcdC8Ul .head-item {
  color: #232323;
}
.cid-tgVGcdC8Ul .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-tgVGcdC8Ul .mbr-section-title,
.cid-tgVGcdC8Ul .head-item {
  text-align: center;
  color: #bbbbbb;
}
.cid-tgVGcdC8Ul .mbr-section-subtitle,
.cid-tgVGcdC8Ul .table tbody .tableColumns .body-item,
.cid-tgVGcdC8Ul .table {
  color: #22a5e5;
}
.cid-tgVGcdC8Ul .table .table-heads .head-item {
  color: #666666;
}
.cid-tgVGceU1X1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e8ecf2;
}
.cid-tgVGceU1X1 .mbr-section-title {
  color: #4479d9;
}
.cid-tgVGceU1X1 .mbr-text,
.cid-tgVGceU1X1 .mbr-section-btn {
  color: #ffffff;
}
.cid-tgVGceU1X1 .mbr-iconfont {
  font-size: 8rem;
  color: #4479d9;
}
.cid-tgVGceU1X1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgVGceU1X1 h1 {
  line-height: 1.3;
}
.cid-tgVGcfwkQ2 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #e8ecf2;
}
.cid-tgVGcfwkQ2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tgVGcfwkQ2 .form-control,
.cid-tgVGcfwkQ2 .field-input,
.cid-tgVGcfwkQ2 textarea {
  background-color: #f2f2f2;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.cid-tgVGcfwkQ2 .form-control::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .form-control::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea::-webkit-input-placeholder {
  color: #555555;
}
.cid-tgVGcfwkQ2 .form-control:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:-moz-placeholder,
.cid-tgVGcfwkQ2 .form-control:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:-moz-placeholder {
  color: #555555;
}
.cid-tgVGcfwkQ2 .form-control:hover,
.cid-tgVGcfwkQ2 .field-input:hover,
.cid-tgVGcfwkQ2 textarea:hover,
.cid-tgVGcfwkQ2 .form-control:focus,
.cid-tgVGcfwkQ2 .field-input:focus,
.cid-tgVGcfwkQ2 textarea:focus {
  background-color: #e8ecf2;
  border-color: #555555;
  color: #202020;
  box-shadow: none;
  outline: none;
}
.cid-tgVGcfwkQ2 .form-control:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .form-control:focus::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input:focus::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea:focus::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .form-control:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea:hover::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .form-control:focus::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 .field-input:focus::-webkit-input-placeholder,
.cid-tgVGcfwkQ2 textarea:focus::-webkit-input-placeholder {
  color: #202020;
}
.cid-tgVGcfwkQ2 .form-control:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 .form-control:focus:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:focus:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:focus:-moz-placeholder,
.cid-tgVGcfwkQ2 .form-control:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:hover:-moz-placeholder,
.cid-tgVGcfwkQ2 .form-control:focus:-moz-placeholder,
.cid-tgVGcfwkQ2 .field-input:focus:-moz-placeholder,
.cid-tgVGcfwkQ2 textarea:focus:-moz-placeholder {
  color: #202020;
}
.cid-tgVGcfwkQ2 .jq-number__spin:hover,
.cid-tgVGcfwkQ2 .jq-number__spin:focus {
  background-color: #e8ecf2;
  border-color: #555555;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tgVGcfwkQ2 .jq-number__spin {
  background-color: #f2f2f2;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tgVGcfwkQ2 .jq-selectbox li,
.cid-tgVGcfwkQ2 .jq-selectbox li {
  background-color: #f2f2f2;
  color: #000000;
}
.cid-tgVGcfwkQ2 .jq-selectbox li:hover,
.cid-tgVGcfwkQ2 .jq-selectbox li.selected {
  background-color: #e8ecf2;
  color: #000000;
}
.cid-tgVGcfwkQ2 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tgVGcfwkQ2 .jq-number__spin.minus:hover:after,
.cid-tgVGcfwkQ2 .jq-number__spin.plus:hover:after {
  border-top-color: #f2f2f2;
  border-bottom-color: #f2f2f2;
}
.cid-tgVGcfwkQ2 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tgVGcfwkQ2 .jq-number__spin.minus:after,
.cid-tgVGcfwkQ2 .jq-number__spin.plus:after {
  border-top-color: #e8ecf2;
  border-bottom-color: #e8ecf2;
}
.cid-tgVGcfwkQ2 input::-webkit-clear-button {
  display: none;
}
.cid-tgVGcfwkQ2 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tgVGcfwkQ2 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tgVGcfwkQ2 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tgVGcfwkQ2 .btn-lg {
  border-radius: 0 !important;
  margin-top: 42px;
}
.cid-tgVGcfwkQ2 .mbr-section-title {
  margin-bottom: 25px;
  color: #202020;
}
.cid-tgVGcfwkQ2 form {
  padding: 3rem 15%;
  background-color: #d8e4fa;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tgVGcfwkQ2 form {
    padding: 100px 15%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tgVGcfwkQ2 form {
    padding: 60px 12px;
  }
}
.cid-tgVGcfwkQ2 .image-wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-tgVGcfwkQ2 .gdpr-block {
  text-align: left;
}
.cid-tgVGcfwkQ2 .textGDPR.display-7 {
  font-size: 16px;
}
.cid-tgVGcfwkQ2 .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-tgVGcfwkQ2 .form-control,
.cid-tgVGcfwkQ2 .field-input,
.cid-tgVGcfwkQ2 textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
}
.cid-tgVGcfwkQ2 .form-check {
  padding-left: 2.5em !important;
}
.cid-tgVGcfwkQ2 .form-check .display-7 {
  font-size: 16px !important;
}
.cid-tgVGcfwkQ2 .form_btn .btn {
  width: 100%;
}
.cid-tgVGcfwkQ2 H4 {
  color: #4479d9;
}
.cid-tgVGcgrAjM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgVGcgrAjM .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-tgVGcgrAjM .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-tgVGcgrAjM .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tgVGcgrAjM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tgVGcgrAjM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tgVGcgrAjM .map-placeholder {
  display: none;
}
.cid-tgVGcgrAjM .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-tgVGcgrAjM .card {
  padding: 3rem 8rem;
}
.cid-tgVGcgrAjM .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tgVGcgrAjM .card .mbr-text {
  color: #06182d;
}
.cid-tgVGcgrAjM .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-tgVGcgrAjM .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tgVGcgrAjM .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-tgVGcgrAjM .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-tgVGcgrAjM .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-tgVGcgrAjM .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-tgVGcgrAjM .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-tgVGcgrAjM .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-tgVGcgrAjM .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tgVGcgrAjM .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-tgVGcgrAjM .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgVGcgrAjM .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-tgVGcgrAjM .card .form-group {
  padding-right: 0;
}
.cid-tgVGcgrAjM .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-tgVGcgrAjM .card .btn-primary {
  border: 1px solid #4479d9 !important;
}
.cid-tgVGcgrAjM .card .btn-primary:hover {
  border: 1px solid #4479d9 !important;
}
@media (max-width: 1200px) {
  .cid-tgVGcgrAjM .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tgVGcgrAjM .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tgVGcgrAjM h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-tgVGcgrAjM * {
    text-align: center !important;
  }
  .cid-tgVGcgrAjM .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-tgVGcgrAjM .form-group {
    max-width: 180px;
  }
  .cid-tgVGcgrAjM .card {
    padding: 2rem 1rem;
  }
}
.cid-tgVGcgrAjM .card .mbr-section-title {
  color: #bed3f9;
}
.cid-tgVGcihI24 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9eaf8;
}
.cid-tgVGcihI24 .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-tgVGcihI24 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tgVGcihI24 .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
}
.cid-tgVGcihI24 .footer-item {
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
  border-bottom: 1px solid #7F8678;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .cid-tgVGcihI24 .footer-item:nth-child(odd) {
    border-right: 1px solid #7F8678;
  }
}
@media (min-width: 1200px) {
  .cid-tgVGcihI24 .footer-item:not(:last-child) {
    border-right: 1px solid #7F8678;
  }
}
.cid-tgVGcihI24 .mbr-text {
  color: #000000;
}
.cid-tgVGcihI24 .link a {
  color: #3d3d3d;
}
.cid-tgVGcihI24 .copyright {
  color: #3d3d3d;
}
.cid-tgVGcihI24 .text {
  color: #4479d9;
}
.cid-tgVGcihI24 .mbr-form-container {
  margin-top: 12px;
}
.cid-tgVGcihI24 .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.cid-tgVGcihI24 form .row {
  margin: 0;
  border: none !important;
}
.cid-tgVGcihI24 form .form-email {
  width: 100px;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-tgVGcihI24 form .form-email input {
  padding: 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tgVGcihI24 form .form-email input:hover,
.cid-tgVGcihI24 form .form-email input :focus,
.cid-tgVGcihI24 form .form-email input :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tgVGcihI24 form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tgVGcihI24 form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-tgVGcihI24 .copyright-container {
  margin-top: auto;
}
.cid-tgVGcihI24 .link {
  color: #353a3c;
}
.cid-tgVGcihI24 .label {
  color: #4479d9;
}
.cid-tgVGcjbWMt.popup-builder {
  background-color: #ffffff;
}
.cid-tgVGcjbWMt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tgVGcjbWMt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tgVGcjbWMt .modal-content,
.cid-tgVGcjbWMt .modal-dialog {
  height: auto;
}
.cid-tgVGcjbWMt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tgVGcjbWMt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tgVGcjbWMt .form-wrapper .mbr-form .form-group,
  .cid-tgVGcjbWMt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tgVGcjbWMt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tgVGcjbWMt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tgVGcjbWMt .mbr-text {
  text-align: center;
}
.cid-tgVGcjbWMt .pt-0 {
  padding-top: 0 !important;
}
.cid-tgVGcjbWMt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tgVGcjbWMt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tgVGcjbWMt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tgVGcjbWMt .modal-open {
  overflow: hidden;
}
.cid-tgVGcjbWMt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tgVGcjbWMt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tgVGcjbWMt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tgVGcjbWMt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tgVGcjbWMt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tgVGcjbWMt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tgVGcjbWMt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tgVGcjbWMt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tgVGcjbWMt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tgVGcjbWMt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tgVGcjbWMt .modal-backdrop.fade {
  opacity: 0;
}
.cid-tgVGcjbWMt .modal-backdrop.show {
  opacity: .5;
}
.cid-tgVGcjbWMt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tgVGcjbWMt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tgVGcjbWMt .modal-header {
    padding: 1rem;
  }
}
.cid-tgVGcjbWMt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tgVGcjbWMt .modal-header .close svg {
  fill: #353535;
}
.cid-tgVGcjbWMt .modal-header .close:hover {
  opacity: 1;
}
.cid-tgVGcjbWMt .modal-header .close:focus {
  outline: none;
}
.cid-tgVGcjbWMt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tgVGcjbWMt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tgVGcjbWMt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgVGcjbWMt .modal-body {
    padding: 1rem;
  }
}
.cid-tgVGcjbWMt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tgVGcjbWMt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgVGcjbWMt .modal-footer {
    padding: 1rem;
  }
}
.cid-tgVGcjbWMt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tgVGcjbWMt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tgVGcjbWMt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tgVGcjbWMt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tgVGcjbWMt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tgVGcjbWMt .modal-lg,
  .cid-tgVGcjbWMt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tgVGcjbWMt .modal-xl {
    max-width: 1140px;
  }
}
.cid-tgVGcjbWMt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tgVGcjbWMt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tgVGcjbWMt .form-group {
  margin-bottom: 1rem;
}
.cid-tgVGcjbWMt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tgVGcjbWMt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tgVGcjbWMt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tgVGcjbWMt .mbr-section-btn {
  margin: 0;
}
.cid-tgVGcjbWMt .mbr-section-btn .btn {
  margin: 0;
}
.cid-sLNCrJe5Kq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLNCrJe5Kq nav.navbar {
  position: fixed;
}
.cid-sLNCrJe5Kq .container,
.cid-sLNCrJe5Kq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .container,
  .cid-sLNCrJe5Kq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #6592e6 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:hover,
.cid-sLNCrJe5Kq .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLNCrJe5Kq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLNCrJe5Kq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLNCrJe5Kq .nav-link {
  position: relative;
}
.cid-sLNCrJe5Kq .nav-link:hover {
  color: #ffffff !important;
}
.cid-sLNCrJe5Kq .nav-link:hover:before {
  opacity: 1;
}
.cid-sLNCrJe5Kq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLNCrJe5Kq .container {
  display: flex;
  margin: auto;
}
.cid-sLNCrJe5Kq .iconfont-wrapper {
  color: #40b0bf !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLNCrJe5Kq .nav-item:focus,
.cid-sLNCrJe5Kq .nav-link:focus {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLNCrJe5Kq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLNCrJe5Kq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.opened {
  transition: all 0.3s;
}
.cid-sLNCrJe5Kq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLNCrJe5Kq .navbar .navbar-logo img {
  width: auto;
}
.cid-sLNCrJe5Kq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLNCrJe5Kq .navbar.collapsed {
  justify-content: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLNCrJe5Kq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLNCrJe5Kq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLNCrJe5Kq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLNCrJe5Kq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLNCrJe5Kq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLNCrJe5Kq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLNCrJe5Kq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown-item.active,
.cid-sLNCrJe5Kq .dropdown-item:active {
  background-color: transparent;
}
.cid-sLNCrJe5Kq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLNCrJe5Kq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLNCrJe5Kq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLNCrJe5Kq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLNCrJe5Kq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLNCrJe5Kq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar {
    height: 70px;
  }
  .cid-sLNCrJe5Kq .navbar.opened {
    height: auto;
  }
  .cid-sLNCrJe5Kq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-sLNCrJe5Kq .icons-menu {
    padding-right: 0;
  }
  .cid-sLNCrJe5Kq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tiKeqE8HZI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tiKeqE8HZI .title__wrap {
  margin-bottom: 30px;
}
.cid-tiKeqE8HZI .title__block {
  margin-bottom: 10px;
}
.cid-tiKeqE8HZI .mbr-section-title,
.cid-tiKeqE8HZI .text__time,
.cid-tiKeqE8HZI .mbr-text,
.cid-tiKeqE8HZI .text__author,
.cid-tiKeqE8HZI .text__hall {
  margin-bottom: 0;
}
.cid-tiKeqE8HZI .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-tiKeqE8HZI .buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cid-tiKeqE8HZI .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 10px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tiKeqE8HZI .mbr-section-btn .btn-secondary-outline:hover {
  color: #4479d9 !important;
}
.cid-tiKeqE8HZI .wrap {
  margin: 0;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.cid-tiKeqE8HZI .wrap:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.cid-tiKeqE8HZI .plpr_0 {
  padding-left: 0;
  padding-right: 0;
}
.cid-tiKeqE8HZI .nav-tabs .nav-item.open .nav-link:focus,
.cid-tiKeqE8HZI .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tiKeqE8HZI .nav-tabs {
  flex-wrap: wrap;
  border-bottom: none;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-tiKeqE8HZI .nav-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-tiKeqE8HZI .nav-tabs .nav-link {
  border-radius: 0 !important;
  color: #17161a;
  font-style: normal;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  margin-right: 25px;
  padding: 12px 0 !important;
}
.cid-tiKeqE8HZI .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tiKeqE8HZI .nav-tabs .nav-link.active {
  font-weight: 700;
  font-style: normal;
  background-color: transparent !important;
  border-bottom: 2px solid #d90a2c;
}
.cid-tiKeqE8HZI .nav-tabs .nav-link.active:hover {
  background-color: #d90a2c;
}
@media (max-width: 991px) {
  .cid-tiKeqE8HZI .align-right {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .cid-tiKeqE8HZI .buttons {
    justify-content: flex-start;
  }
}
.cid-tiKeqE8HZI .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-tiKeqE8HZI .mbr-text {
  color: #191f23;
}
.cid-tiKeqE8HZI .text__hall {
  color: #000000;
}
.cid-t84yY2Brzs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9eaf8;
}
.cid-t84yY2Brzs .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-t84yY2Brzs .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-t84yY2Brzs .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
}
.cid-t84yY2Brzs .footer-item {
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
  border-bottom: 1px solid #7F8678;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .cid-t84yY2Brzs .footer-item:nth-child(odd) {
    border-right: 1px solid #7F8678;
  }
}
@media (min-width: 1200px) {
  .cid-t84yY2Brzs .footer-item:not(:last-child) {
    border-right: 1px solid #7F8678;
  }
}
.cid-t84yY2Brzs .mbr-text {
  color: #000000;
}
.cid-t84yY2Brzs .link a {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .copyright {
  color: #3d3d3d;
}
.cid-t84yY2Brzs .text {
  color: #4479d9;
}
.cid-t84yY2Brzs .mbr-form-container {
  margin-top: 12px;
}
.cid-t84yY2Brzs .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.cid-t84yY2Brzs form .row {
  margin: 0;
  border: none !important;
}
.cid-t84yY2Brzs form .form-email {
  width: 100px;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 0;
}
.cid-t84yY2Brzs form .form-email input {
  padding: 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-t84yY2Brzs form .form-email input:hover,
.cid-t84yY2Brzs form .form-email input :focus,
.cid-t84yY2Brzs form .form-email input :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-t84yY2Brzs form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-t84yY2Brzs form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-t84yY2Brzs .copyright-container {
  margin-top: auto;
}
.cid-t84yY2Brzs .link {
  color: #353a3c;
}
.cid-t84yY2Brzs .label {
  color: #4479d9;
}
