body {
  font-family: 'Spline Sans', sans-serif;
}
.display-1 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #253c57 !important;
}
.bg-success {
  background-color: #bee1e6 !important;
}
.bg-info {
  background-color: #415d7d !important;
}
.bg-warning {
  background-color: #eeff42 !important;
}
.bg-danger {
  background-color: #fd7578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #253c57 !important;
  border-color: #253c57 !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: #34557b !important;
  border-color: #34557b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #34557b !important;
  border-color: #34557b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ee494d !important;
  border-color: #ee494d !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: #f2787b !important;
  border-color: #f2787b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f2787b !important;
  border-color: #f2787b !important;
}
.btn-info,
.btn-info:active {
  background-color: #415d7d !important;
  border-color: #415d7d !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: #52769f !important;
  border-color: #52769f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #52769f !important;
  border-color: #52769f !important;
}
.btn-success,
.btn-success:active {
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
  color: #2e6e77 !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: #3c909c !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #2e6e77 !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
  color: #3c4200 !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: #6a7500 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3c4200 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fd7578 !important;
  border-color: #fd7578 !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: #fea7a9 !important;
  border-color: #fea7a9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #fea7a9 !important;
  border-color: #fea7a9 !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: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #253c57;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #34557b !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: #253c57 !important;
  border-color: #253c57 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee494d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #f2787b !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: #ee494d !important;
  border-color: #ee494d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #415d7d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #52769f !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: #415d7d !important;
  border-color: #415d7d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bee1e6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e3f2f4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #2e6e77 !important;
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eeff42;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f3ff75 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3c4200 !important;
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd7578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #fea7a9 !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: #fd7578 !important;
  border-color: #fd7578 !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: #3d3d3d !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: #ffffff !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: #253c57 !important;
}
.text-secondary {
  color: #ee494d !important;
}
.text-success {
  color: #bee1e6 !important;
}
.text-info {
  color: #415d7d !important;
}
.text-warning {
  color: #eeff42 !important;
}
.text-danger {
  color: #fd7578 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #070b0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bf1216 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #74bfca !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1e2b3a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c7db00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #fc1016 !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: #253c57;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #415d7d;
}
.alert-warning {
  background-color: #eeff42;
}
.alert-danger {
  background-color: #fd7578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #253c57;
  border-color: #253c57;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #253c57;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4b7ab0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #809dbd;
}
.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: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #253c57 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #253c57;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #253c57;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #253c57;
}
.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: #253c57;
  border-bottom-color: #253c57;
}
.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: #253c57 !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: #ee494d !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='%23253c57' %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-sV8vjHZb4A {
  z-index: 1000;
  width: 100%;
  position: relative;
  height: 60px;
}
.cid-sV8vjHZb4A nav.navbar {
  position: fixed;
}
.cid-sV8vjHZb4A .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-sV8vjHZb4A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sV8vjHZb4A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sV8vjHZb4A .dropdown-item:hover,
.cid-sV8vjHZb4A .dropdown-item:focus {
  background: #253c57 !important;
  color: white !important;
}
.cid-sV8vjHZb4A .dropdown-item:hover span {
  color: white;
}
.cid-sV8vjHZb4A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sV8vjHZb4A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sV8vjHZb4A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .5em !important;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sV8vjHZb4A .nav-link {
  position: relative;
}
.cid-sV8vjHZb4A .nav-link:hover,
.cid-sV8vjHZb4A .nav-link:focus {
  color: #89AEB3 !important;
}
.cid-sV8vjHZb4A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sV8vjHZb4A .container {
    flex-wrap: nowrap;
  }
}
.cid-sV8vjHZb4A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sV8vjHZb4A .navbar-caption {
  font-weight: 400;
}
.cid-sV8vjHZb4A .dropdown-menu,
.cid-sV8vjHZb4A .navbar.opened {
  background: #ffffff !important;
}
.cid-sV8vjHZb4A .nav-item:focus,
.cid-sV8vjHZb4A .nav-link:focus {
  outline: none;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sV8vjHZb4A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sV8vjHZb4A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sV8vjHZb4A .navbar {
  min-height: 63px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sV8vjHZb4A .navbar.opened {
  transition: all 0.3s;
}
.cid-sV8vjHZb4A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sV8vjHZb4A .navbar .navbar-logo img {
  width: auto;
}
.cid-sV8vjHZb4A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sV8vjHZb4A .navbar.collapsed {
  justify-content: center;
}
.cid-sV8vjHZb4A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sV8vjHZb4A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sV8vjHZb4A .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-sV8vjHZb4A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sV8vjHZb4A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sV8vjHZb4A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sV8vjHZb4A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sV8vjHZb4A .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-sV8vjHZb4A .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-sV8vjHZb4A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sV8vjHZb4A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sV8vjHZb4A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sV8vjHZb4A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sV8vjHZb4A .navbar.navbar-short {
  min-height: 60px;
}
.cid-sV8vjHZb4A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sV8vjHZb4A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sV8vjHZb4A .navbar-brand {
  min-height: 63px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sV8vjHZb4A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sV8vjHZb4A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sV8vjHZb4A .dropdown-item.active,
.cid-sV8vjHZb4A .dropdown-item:active {
  background-color: transparent;
}
.cid-sV8vjHZb4A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sV8vjHZb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sV8vjHZb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sV8vjHZb4A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sV8vjHZb4A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sV8vjHZb4A .navbar-buttons {
  text-align: center;
}
.cid-sV8vjHZb4A .navbar-buttons .btn {
  font-weight: 400;
  margin: 0;
  padding: 6px 12px;
  border-radius: 0 !important;
}
.cid-sV8vjHZb4A .navbar-buttons .btn:hover {
  color: #89AEB3 !important;
}
.cid-sV8vjHZb4A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sV8vjHZb4A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sV8vjHZb4A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sV8vjHZb4A .icons-menu .iconfont-wrapper {
  padding-right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sV8vjHZb4A .navbar {
    height: 63px;
  }
  .cid-sV8vjHZb4A .navbar.opened {
    height: auto;
  }
  .cid-sV8vjHZb4A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sV8vjHZb4A .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
}
.cid-sV8w6Wn8vc {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (min-width: 992px) {
  .cid-sV8w6Wn8vc .display-1 {
    font-size: 120px;
  }
  .cid-sV8w6Wn8vc .display-2 {
    font-size: 40px;
  }
  .cid-sV8w6Wn8vc .display-5 {
    font-size: 29px;
  }
}
.cid-sV8w6Wn8vc .mbr-section-subtitle {
  font-weight: 300;
}
.cid-sV8w6Wn8vc .mbr-section-btn {
  z-index: 3;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  bottom: -55px;
}
@media (max-width: 991px) {
  .cid-sV8w6Wn8vc .mbr-section-btn {
    width: 100%;
    bottom: 0px;
  }
}
.cid-sV8w6Wn8vc .btn-success {
  color: #18293D !important;
}
.cid-sV8w6Wn8vc .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 110px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0;
}
.cid-sV8w6Wn8vc .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
@media (max-width: 991px) {
  .cid-sV8w6Wn8vc .btn {
    width: 50%;
    min-height: 80px;
  }
}
@media (max-width: 767px) {
  .cid-sV8w6Wn8vc .btn {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.cid-sV8w6Wn8vc .one:hover {
  background: #EeFF42 !important;
  border-color: #EeFF42 !important;
}
.cid-sV8w6Wn8vc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sV8w6Wn8vc .soc-item {
  align-items: center;
  padding: 0.5rem 0.5rem 0.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  font-size: 16px;
  background: #000000;
  cursor: pointer;
  margin-right: 1.5rem;
  height: 25px;
  width: 25px;
}
.cid-sV8w6Wn8vc .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sV8vkg6TO5 {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-sV8vkg6TO5 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sV8vkg6TO5 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-sV8vkg6TO5 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-sV8vkg6TO5 .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .text {
    min-width: 615px;
    transform: translate(-25%, 3rem);
  }
}
.cid-sV8vkg6TO5 .text-wrapper {
  background: #bee1e6;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-sV8vkg6TO5 .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .display-1 {
    font-size: 65px;
  }
  .cid-sV8vkg6TO5 .display-5 {
    font-size: 29px;
  }
}
.cid-sV8vkg6TO5 .mbr-section-btn {
  background: #bee1e6;
  margin-left: 0;
  margin-right: 0;
}
.cid-sV8vkg6TO5 .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-sV8vkg6TO5 .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-sV8vshH89y {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sV8vshH89y .btn {
  width: 100%;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  margin: 0;
  padding: 0 45px;
  min-height: 40px;
}
.cid-sV8vshH89y .btn:hover {
  opacity: .7;
}
.cid-sV8vshH89y .mbr-section-btn {
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .cid-sV8vshH89y .display-1 {
    font-size: 65px;
  }
  .cid-sV8vshH89y .display-5 {
    font-size: 29px;
  }
  .cid-sV8vshH89y .display-7 {
    font-size: 24px;
  }
  .cid-sV8vshH89y .display-4 {
    font-weight: 300;
  }
}
@media (min-width: 992px) {
  .cid-sV8vshH89y .form {
    padding: 45px 40px 0 60px;
  }
}
.cid-sV8vshH89y .form-control,
.cid-sV8vshH89y .field-input {
  padding-left: 12px;
  padding-right: 12px;
  min-height: 40px;
  font-size: 16px;
  border-radius: 0;
  border: 2px solid transparent;
  box-shadow: none;
}
.cid-sV8vshH89y .form-control:hover {
  box-shadow: none;
  outline: none;
  border: 1px solid transparent !important;
}
.cid-sV8vshH89y .form-control:focus {
  box-shadow: none;
  outline: none;
  border: 2px solid #3899ec !important;
}
.cid-sV8vshH89y .form-group {
  position: relative;
}
.cid-sV8vshH89y .info {
  position: absolute;
  left: 10px;
  top: -5px;
  font-size: 10px;
  background-color: #fff;
}
.cid-sV8vsLBCZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #415d7d;
  overflow: hidden;
}
.cid-sV8vsLBCZG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sV8vsLBCZG .mbr-text {
  font-weight: 300;
}
.cid-v0XNwkD68B.popup-builder {
  background-color: #ffffff;
}
.cid-v0XNwkD68B.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v0XNwkD68B.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v0XNwkD68B .modal-content,
.cid-v0XNwkD68B .modal-dialog {
  height: auto;
}
.cid-v0XNwkD68B .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v0XNwkD68B .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v0XNwkD68B .form-wrapper .mbr-form .form-group,
  .cid-v0XNwkD68B .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v0XNwkD68B .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v0XNwkD68B .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-v0XNwkD68B .mbr-text {
  text-align: left;
}
.cid-v0XNwkD68B .pt-0 {
  padding-top: 0 !important;
}
.cid-v0XNwkD68B .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v0XNwkD68B .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v0XNwkD68B .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v0XNwkD68B .modal-open {
  overflow: hidden;
}
.cid-v0XNwkD68B .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v0XNwkD68B .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v0XNwkD68B .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v0XNwkD68B .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-v0XNwkD68B .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v0XNwkD68B .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v0XNwkD68B .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v0XNwkD68B .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-v0XNwkD68B .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v0XNwkD68B .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v0XNwkD68B .modal-backdrop.fade {
  opacity: 0;
}
.cid-v0XNwkD68B .modal-backdrop.show {
  opacity: .5;
}
.cid-v0XNwkD68B .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-v0XNwkD68B .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v0XNwkD68B .modal-header {
    padding: 1rem;
  }
}
.cid-v0XNwkD68B .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v0XNwkD68B .modal-header .close svg {
  fill: #353535;
}
.cid-v0XNwkD68B .modal-header .close:hover {
  opacity: 1;
}
.cid-v0XNwkD68B .modal-header .close:focus {
  outline: none;
}
.cid-v0XNwkD68B .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v0XNwkD68B .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v0XNwkD68B .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0XNwkD68B .modal-body {
    padding: 1rem;
  }
}
.cid-v0XNwkD68B .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-v0XNwkD68B .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0XNwkD68B .modal-footer {
    padding: 1rem;
  }
}
.cid-v0XNwkD68B .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v0XNwkD68B .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v0XNwkD68B .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v0XNwkD68B .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v0XNwkD68B .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v0XNwkD68B .modal-lg,
  .cid-v0XNwkD68B .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v0XNwkD68B .modal-xl {
    max-width: 1140px;
  }
}
.cid-v0XNwkD68B .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v0XNwkD68B .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-v0XNwkD68B .form-group {
  margin-bottom: 1rem;
}
.cid-v0XNwkD68B .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v0XNwkD68B .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v0XNwkD68B .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-v0XNwkD68B .mbr-section-btn {
  margin: 0;
}
.cid-v0XNwkD68B .mbr-section-btn .btn {
  margin: 0;
}
.cid-sV8vjHZb4A {
  z-index: 1000;
  width: 100%;
  position: relative;
  height: 60px;
}
.cid-sV8vjHZb4A nav.navbar {
  position: fixed;
}
.cid-sV8vjHZb4A .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-sV8vjHZb4A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sV8vjHZb4A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sV8vjHZb4A .dropdown-item:hover,
.cid-sV8vjHZb4A .dropdown-item:focus {
  background: #253c57 !important;
  color: white !important;
}
.cid-sV8vjHZb4A .dropdown-item:hover span {
  color: white;
}
.cid-sV8vjHZb4A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sV8vjHZb4A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sV8vjHZb4A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .5em !important;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sV8vjHZb4A .nav-link {
  position: relative;
}
.cid-sV8vjHZb4A .nav-link:hover,
.cid-sV8vjHZb4A .nav-link:focus {
  color: #89AEB3 !important;
}
.cid-sV8vjHZb4A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sV8vjHZb4A .container {
    flex-wrap: nowrap;
  }
}
.cid-sV8vjHZb4A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sV8vjHZb4A .navbar-caption {
  font-weight: 400;
}
.cid-sV8vjHZb4A .dropdown-menu,
.cid-sV8vjHZb4A .navbar.opened {
  background: #ffffff !important;
}
.cid-sV8vjHZb4A .nav-item:focus,
.cid-sV8vjHZb4A .nav-link:focus {
  outline: none;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sV8vjHZb4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sV8vjHZb4A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sV8vjHZb4A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sV8vjHZb4A .navbar {
  min-height: 63px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sV8vjHZb4A .navbar.opened {
  transition: all 0.3s;
}
.cid-sV8vjHZb4A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sV8vjHZb4A .navbar .navbar-logo img {
  width: auto;
}
.cid-sV8vjHZb4A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sV8vjHZb4A .navbar.collapsed {
  justify-content: center;
}
.cid-sV8vjHZb4A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sV8vjHZb4A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sV8vjHZb4A .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-sV8vjHZb4A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sV8vjHZb4A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sV8vjHZb4A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sV8vjHZb4A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sV8vjHZb4A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sV8vjHZb4A .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-sV8vjHZb4A .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-sV8vjHZb4A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sV8vjHZb4A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sV8vjHZb4A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sV8vjHZb4A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sV8vjHZb4A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sV8vjHZb4A .navbar.navbar-short {
  min-height: 60px;
}
.cid-sV8vjHZb4A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sV8vjHZb4A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sV8vjHZb4A .navbar-brand {
  min-height: 63px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sV8vjHZb4A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sV8vjHZb4A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sV8vjHZb4A .dropdown-item.active,
.cid-sV8vjHZb4A .dropdown-item:active {
  background-color: transparent;
}
.cid-sV8vjHZb4A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sV8vjHZb4A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sV8vjHZb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sV8vjHZb4A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sV8vjHZb4A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sV8vjHZb4A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sV8vjHZb4A .navbar-buttons {
  text-align: center;
}
.cid-sV8vjHZb4A .navbar-buttons .btn {
  font-weight: 400;
  margin: 0;
  padding: 6px 12px;
  border-radius: 0 !important;
}
.cid-sV8vjHZb4A .navbar-buttons .btn:hover {
  color: #89AEB3 !important;
}
.cid-sV8vjHZb4A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sV8vjHZb4A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sV8vjHZb4A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sV8vjHZb4A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sV8vjHZb4A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sV8vjHZb4A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sV8vjHZb4A .icons-menu .iconfont-wrapper {
  padding-right: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sV8vjHZb4A .navbar {
    height: 63px;
  }
  .cid-sV8vjHZb4A .navbar.opened {
    height: auto;
  }
  .cid-sV8vjHZb4A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sV8vjHZb4A .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
}
.cid-v0XQnXL25t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02050a;
}
.cid-v0XQnXL25t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0XQnXL25t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0XQnXL25t .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper {
    margin: 3px 0;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper .item {
    margin-bottom: 6px;
  }
  .cid-v0XQnXL25t .items-wrapper .item:last-child {
    margin-bottom: 0 !important;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper {
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper {
    padding: 48px 24px;
    margin-bottom: 6px;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .card-price {
  width: 100%;
  margin-bottom: 24px;
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .item-img {
  border: 11px solid #02050a;
  background-color: #02050a;
  overflow: hidden;
  box-shadow: 10px 14px 50px #24262b;
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .item-img {
    border: 6px solid #02050a;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
  height: 400px;
  width: 390px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
    height: 350px;
    width: 320px;
  }
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
    height: 350px;
    width: 180px;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card_1 {
  background-color: #ff9340;
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card_2 {
  background-color: #415d7d;
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box {
  margin-top: -10rem;
  padding: 64px;
  background-color: #f5f8ff;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box {
    padding: 48px 24px;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 24px;
}
@media (max-width: 1440px) {
  .cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text {
    width: 100%;
  }
}
.cid-v0XQnXL25t .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0XQnXL25t .card-title {
  color: #000000;
}
.cid-v0XQnXL25t .card-text {
  color: #000000;
}
.cid-v0XQnXL25t .card-price {
  color: #ffffff;
}
.cid-v0XZA2RmNz {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v0XZA2RmNz .decor-wrap {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v0XZA2RmNz .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-v0XZA2RmNz .decor_1 {
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 0 0 40% 0;
  background-color: #ffffff;
  z-index: 1;
}
.cid-v0XZA2RmNz .decor_2 {
  right: -35%;
  bottom: 0;
  width: 200vh;
  height: 80%;
  border-radius: 100% 100% 0 0;
  background-color: #f4f4f2;
}
.cid-v0XZA2RmNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0XZA2RmNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0XZA2RmNz .row {
  position: relative;
  z-index: 2;
}
.cid-v0XZA2RmNz .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0XZA2RmNz .content-wrapper .mbr-section-title {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-v0XZA2RmNz .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v0XZA2RmNz .content-wrapper .text-wrapper {
  padding-right: 32%;
}
@media (max-width: 992px) {
  .cid-v0XZA2RmNz .content-wrapper .text-wrapper {
    padding-right: 0;
  }
}
.cid-v0XZA2RmNz .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0XZA2RmNz .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v0XZA2RmNz .image-wrapper {
    margin-top: 46px;
  }
}
.cid-v0XZA2RmNz .image-wrapper img {
  height: 800px;
  width: 150%;
  transform: rotate(-8deg);
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0XZA2RmNz .image-wrapper img {
    height: 350px;
    transform: none;
    width: 100%;
  }
}
.cid-v0XZA2RmNz .mbr-section-title {
  color: #212529;
}
.cid-v0XZA2RmNz .mbr-text {
  color: #51565c;
}
.cid-v1Eug2FE2o.popup-builder {
  background-color: #ffffff;
}
.cid-v1Eug2FE2o.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1Eug2FE2o.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1Eug2FE2o .modal-content,
.cid-v1Eug2FE2o .modal-dialog {
  height: auto;
}
.cid-v1Eug2FE2o .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1Eug2FE2o .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1Eug2FE2o .form-wrapper .mbr-form .form-group,
  .cid-v1Eug2FE2o .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1Eug2FE2o .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .mbr-text {
  text-align: center;
}
.cid-v1Eug2FE2o .pt-0 {
  padding-top: 0 !important;
}
.cid-v1Eug2FE2o .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1Eug2FE2o .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1Eug2FE2o .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1Eug2FE2o .modal-open {
  overflow: hidden;
}
.cid-v1Eug2FE2o .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1Eug2FE2o .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1Eug2FE2o .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1Eug2FE2o .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1Eug2FE2o .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1Eug2FE2o .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1Eug2FE2o .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1Eug2FE2o .modal-backdrop.show {
  opacity: .5;
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1Eug2FE2o .modal-header {
    padding: 1rem;
  }
}
.cid-v1Eug2FE2o .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1Eug2FE2o .modal-header .close svg {
  fill: #353535;
}
.cid-v1Eug2FE2o .modal-header .close:hover {
  opacity: 1;
}
.cid-v1Eug2FE2o .modal-header .close:focus {
  outline: none;
}
.cid-v1Eug2FE2o .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v1Eug2FE2o .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1Eug2FE2o .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1Eug2FE2o .modal-body {
    padding: 1rem;
  }
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1Eug2FE2o .modal-footer {
    padding: 1rem;
  }
}
.cid-v1Eug2FE2o .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1Eug2FE2o .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1Eug2FE2o .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1Eug2FE2o .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1Eug2FE2o .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1Eug2FE2o .modal-lg,
  .cid-v1Eug2FE2o .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1Eug2FE2o .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1Eug2FE2o .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .form-group {
  margin-bottom: 1rem;
}
.cid-v1Eug2FE2o .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1Eug2FE2o .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1Eug2FE2o .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-v1Eug2FE2o .mbr-section-btn {
  margin: 0;
}
.cid-v1Eug2FE2o .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1Eug2FE2o P {
  text-align: center;
}
.cid-sV8vsLBCZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #415d7d;
  overflow: hidden;
}
.cid-sV8vsLBCZG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sV8vsLBCZG .mbr-text {
  font-weight: 300;
}
