@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
.btn {
  border-width: 2px;
}
body {
  font-family: 'Poppins', sans-serif;
}
.display-1 {
  font-family: 'Oswald', sans-serif;;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing:1.5px;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Poppins', 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: 1.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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 3rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #506491 !important;
}
.bg-success {
  background-color: #0f35a8 !important;
}
.bg-info {
  background-color: #5c8ac1 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #506491 !important;
  border-color: #506491 !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: #313d59 !important;
  border-color: #313d59 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #313d59 !important;
  border-color: #313d59 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e91d4a !important;
  border-color: #e91d4a !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: #a0102f !important;
  border-color: #a0102f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a0102f !important;
  border-color: #a0102f !important;
}
.btn-info,
.btn-info:active {
  background-color: #5c8ac1 !important;
  border-color: #5c8ac1 !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: #375f90 !important;
  border-color: #375f90 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #375f90 !important;
  border-color: #375f90 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0f35a8 !important;
  border-color: #0f35a8 !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: #081c58 !important;
  border-color: #081c58 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #081c58 !important;
  border-color: #081c58 !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: #506491;
  color: #506491;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #313d59 !important;
  background-color: transparent !important;
  border-color: #313d59 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #506491 !important;
  border-color: #506491 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e91d4a;
  color: #e91d4a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a0102f !important;
  background-color: transparent !important;
  border-color: #a0102f !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e91d4a !important;
  border-color: #e91d4a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #5c8ac1;
  color: #5c8ac1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #375f90 !important;
  background-color: transparent !important;
  border-color: #375f90 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5c8ac1 !important;
  border-color: #5c8ac1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #0f35a8;
  color: #0f35a8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #081c58 !important;
  background-color: transparent !important;
  border-color: #081c58 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0f35a8 !important;
  border-color: #0f35a8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #506491 !important;
}
.text-secondary {
  color: #e91d4a !important;
}
.text-success {
  color: #0f35a8 !important;
}
.text-info {
  color: #5c8ac1 !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: #2c374f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #920e2b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #07174a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #325885 !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;
}
.nav-tabs .nav-link.active {
  color: #506491;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5c8ac1;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #506491;
  border-color: #506491;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #506491;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9aa7c7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4871ef;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b8cce4;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #506491 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #506491;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #506491;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #506491;
}
.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: #506491;
  border-bottom-color: #506491;
}
.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: #506491 !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: #e91d4a !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='%23506491' %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-tF99Vu7RGe {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tF99Vu7RGe .row {
  justify-content: space-between;
}
.cid-tF99Vu7RGe .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-tF99Vu7RGe .form-control:focus,
.cid-tF99Vu7RGe .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-tF99Vu7RGe .form-group {
  margin-bottom: 1rem;
}
.cid-tF99Vu7RGe input::-webkit-input-placeholder,
.cid-tF99Vu7RGe textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-tF99Vu7RGe input:-moz-placeholder,
.cid-tF99Vu7RGe textarea:-moz-placeholder {
  color: #353535;
}
.cid-tF99Vu7RGe .jq-selectbox li,
.cid-tF99Vu7RGe .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tF99Vu7RGe .jq-selectbox li:hover,
.cid-tF99Vu7RGe .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tF99Vu7RGe .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tF99Vu7RGe .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tF99Vu7RGe .mbr-text {
  color: #767676;
}
.cid-tF99Vu7RGe .form-block {
  padding: 3rem;
  position: relative;
}
.cid-tF99Vu7RGe .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-tF99Vu7RGe .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tF99Vu7RGe .form-block {
    padding: 1rem;
  }
}
.cid-tF99Vu7RGe H4 {
  color: #232323;
}
.cid-tF99Vu7RGe .mbr-section-title,
.cid-tF99Vu7RGe .mbr-section-btn {
  color: #ffffff;
}
.cid-tF99Vu7RGe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tF99Vu7RGe .form-text {
  color: #353535;
}
.cid-tF99Vu7RGe .text {
  color: #ffffff;
}
.cid-tF99Vu7RGe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF99Vu7RGe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6p1cggQM {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tD6p1cggQM nav.navbar {
  position: fixed;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tD6p1cggQM .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-tD6p1cggQM .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-tD6p1cggQM .dropdown-item:hover,
.cid-tD6p1cggQM .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-tD6p1cggQM .dropdown-item:hover span {
  color: white;
}
.cid-tD6p1cggQM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD6p1cggQM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD6p1cggQM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD6p1cggQM .nav-link {
  position: relative;
}
.cid-tD6p1cggQM .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-tD6p1cggQM .container {
    flex-wrap: nowrap;
  }
}
.cid-tD6p1cggQM .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD6p1cggQM .navbar-nav {
  padding: 5px !important;
}
.cid-tD6p1cggQM .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-tD6p1cggQM .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-tD6p1cggQM .dropdown-menu,
.cid-tD6p1cggQM .navbar.opened {
  background: #ffffff !important;
}
.cid-tD6p1cggQM .nav-item:focus,
.cid-tD6p1cggQM .nav-link:focus {
  outline: none;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD6p1cggQM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD6p1cggQM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD6p1cggQM .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border: none !important;
}
.cid-tD6p1cggQM .navbar.opened {
  transition: all 0.3s;
}
.cid-tD6p1cggQM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-tD6p1cggQM .navbar .navbar-logo img {
  width: auto;
}
.cid-tD6p1cggQM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD6p1cggQM .navbar.collapsed {
  justify-content: center;
}
.cid-tD6p1cggQM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD6p1cggQM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD6p1cggQM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD6p1cggQM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD6p1cggQM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD6p1cggQM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD6p1cggQM .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-tD6p1cggQM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD6p1cggQM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD6p1cggQM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD6p1cggQM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD6p1cggQM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD6p1cggQM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD6p1cggQM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD6p1cggQM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tD6p1cggQM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD6p1cggQM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD6p1cggQM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD6p1cggQM .dropdown-item.active,
.cid-tD6p1cggQM .dropdown-item:active {
  background-color: transparent;
}
.cid-tD6p1cggQM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD6p1cggQM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tD6p1cggQM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD6p1cggQM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD6p1cggQM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD6p1cggQM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD6p1cggQM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6p1cggQM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD6p1cggQM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .navbar {
    height: 70px;
  }
  .cid-tD6p1cggQM .navbar.opened {
    height: auto;
  }
  .cid-tD6p1cggQM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD6p1cggQM .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #506491;
}
.cid-tD6p1cggQM .mbr-section-title {
  color: #ffffff;
  max-width: 50%;
  margin-right: auto;
}
.cid-tD6p1cggQM .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-tD6p1cggQM .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-tD6p1cggQM .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-tD6p1cggQM .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-tD6p1cggQM .container {
    overflow: hidden;
  }
  .cid-tD6p1cggQM .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-tD6p1cggQM .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-tD6p1cggQM .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-tD6p1cggQM .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-tD6p1cggQM .navbar-nav {
    padding: 0 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tD6p1cggQM .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tD6p1cggQM .container {
    padding: 25px 15px !important;
  }
  .cid-tD6p1cggQM .container-head {
    padding: 10px !important;
  }
  .cid-tD6p1cggQM .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-tD6p1cggQM .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-tD6p1cggQM .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-tD6i1MAy04 {
  background-color: #e91d4a;
}
.cid-tD6i1MAy04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6i1MAy04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6i1MAy04 .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tD6i1MAy04 .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tD6i1MAy04 .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tD6i1MAy04 .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tD6i1MAy04 .content-container {
    flex-wrap: wrap;
  }
}
.cid-tD6i1MAy04 .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 65%;
}
@media (max-width: 991px) {
  .cid-tD6i1MAy04 .img-container {
    width: 100%;
    order: 3;
  }
}
.cid-tD6i1MAy04 .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tD6i1MAy04 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tD6i1MAy04 .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 35%;
  padding: 0 5.6% 0  5.6%;
  min-height: 640px;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tD6i1MAy04 .text-container {
    width: 100%;
    padding: 0 16% 0  16%;
    min-height: 0;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}
.cid-tD6i1MAy04 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tD6i1MAy04 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tD6i1MAy04 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tD6i1MAy04 .mbr-text {
    text-align: center !important;
  }
}
.cid-tD6i1MAy04 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cid-tD6i1MAy04 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tF99rSHmyA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f6f6f6;
  overflow: hidden;
}
.cid-tF99rSHmyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF99rSHmyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF99rSHmyA .container-fluid {
  max-width: 100% !important;
}
.cid-tF99rSHmyA .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tF99rSHmyA .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tF99rSHmyA .text-box {
  width: 100%;
  height: 100%;
  padding: 0 16% 0 10.5%;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA .text-box {
    padding: 0 7% 0 7%;
  }
}
.cid-tF99rSHmyA .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 12% 0 12.7% 0;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA .text-wrap {
    padding: 7% 0 8% 0;
  }
}
@media (max-width: 767px) {
  .cid-tF99rSHmyA .text-wrap {
    padding: 12% 0 14% 0;
  }
}
.cid-tF99rSHmyA .mbr-section-title {
  color: #303030;
}
.cid-tF99rSHmyA .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA .text-bottom {
    padding-top: 9%;
    margin-top: 40px;
  }
}
.cid-tF99rSHmyA .mbr-text {
  color: #303030;
}
.cid-tF99rSHmyA .mbr-section-btn {
  margin-top: 16px;
}
.cid-tF99rSHmyA .form-box {
  width: 100%;
  height: 100%;
  padding: 0 16% 0 10.5%;
  background-color: #ffe2da;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA .form-box {
    padding: 0 7% 0 7%;
  }
}
.cid-tF99rSHmyA .form-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 12% 0 12.7% 0;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA .form-wrap {
    padding: 7% 0 8% 0;
  }
}
@media (max-width: 767px) {
  .cid-tF99rSHmyA .form-wrap {
    padding: 12% 0 14% 0;
  }
}
.cid-tF99rSHmyA .form-title {
  color: #ff9370;
  margin-bottom: 20px;
}
.cid-tF99rSHmyA div.mbr-form {
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-tF99rSHmyA div.mbr-form {
    padding-top: 11%;
  }
}
@media (max-width: 767px) {
  .cid-tF99rSHmyA div.mbr-form {
    padding-top: 14%;
  }
}
.cid-tF99rSHmyA form {
  width: 100%;
}
.cid-tF99rSHmyA form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-tF99rSHmyA form p {
  color: #ff9370;
}
.cid-tF99rSHmyA form .form-group {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
.cid-tF99rSHmyA form .form-control {
  height: 44px;
  border: none !important;
  border-bottom: 2px solid #ff9370 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 5px 0;
  font-size: 19px;
  line-height: 28px;
  color: #ff9370;
  font-weight: 400;
  transition: .3s;
}
.cid-tF99rSHmyA form .form-control::-webkit-input-placeholder {
  color: #ff9370;
}
.cid-tF99rSHmyA form .form-control::-moz-placeholder {
  color: #ff9370;
}
.cid-tF99rSHmyA form .form-control:-moz-placeholder {
  color: #ff9370;
}
.cid-tF99rSHmyA form .form-control:-ms-input-placeholder {
  color: #ff9370;
}
.cid-tF99rSHmyA form select {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form textarea {
  height: 140px !important;
  min-height: 140px !important;
  padding: 5px 0;
  resize: none;
}
.cid-tF99rSHmyA form textarea::-webkit-input-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form textarea::-moz-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form textarea:-moz-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form textarea:-ms-input-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form input,
.cid-tF99rSHmyA form textarea {
  transition: .3s all;
}
.cid-tF99rSHmyA form input:active,
.cid-tF99rSHmyA form textarea:active,
.cid-tF99rSHmyA form input:focus,
.cid-tF99rSHmyA form textarea:focus {
  background-color: transparent !important;
  border-color: #ff9370 !important;
  outline: none !important;
}
.cid-tF99rSHmyA form input:active::-webkit-input-placeholder,
.cid-tF99rSHmyA form textarea:active::-webkit-input-placeholder,
.cid-tF99rSHmyA form input:focus::-webkit-input-placeholder,
.cid-tF99rSHmyA form textarea:focus::-webkit-input-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form input:active::-moz-placeholder,
.cid-tF99rSHmyA form textarea:active::-moz-placeholder,
.cid-tF99rSHmyA form input:focus::-moz-placeholder,
.cid-tF99rSHmyA form textarea:focus::-moz-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form input:active:-moz-placeholder,
.cid-tF99rSHmyA form textarea:active:-moz-placeholder,
.cid-tF99rSHmyA form input:focus:-moz-placeholder,
.cid-tF99rSHmyA form textarea:focus:-moz-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form input:active:-ms-input-placeholder,
.cid-tF99rSHmyA form textarea:active:-ms-input-placeholder,
.cid-tF99rSHmyA form input:focus:-ms-input-placeholder,
.cid-tF99rSHmyA form textarea:focus:-ms-input-placeholder {
  color: #ff9370 !important;
}
.cid-tF99rSHmyA form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tF99rSHmyA form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tF99rSHmyA form label {
  width: 100%;
  color: #ff9370;
  margin-bottom: 6px;
}
.cid-tF99rSHmyA form .form-check label {
  color: #ff9370;
}
.cid-tF99rSHmyA form .form-check-input {
  border-color: #ff9370 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tF99rSHmyA form .form-check-input:focus,
.cid-tF99rSHmyA form .form-check-input:hover {
  background-color: #ff9370 !important;
  border-color: #ff9370 !important;
}
.cid-tF99rSHmyA form .form-check-input:checked {
  border-color: #ff9370 !important;
  background-color: #ff9370 !important;
}
.cid-tDaqYgQMAG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ecede8;
}
.cid-tDaqYgQMAG .card-wrapper {
  background-position: center;
  padding: 1.4rem 1.8rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #354463;
}
.cid-tDaqYgQMAG .card-title {
  margin-bottom: 0.5rem;
}
.cid-tDaqYgQMAG .item1 {
  margin-bottom: 0.1rem;
}
.cid-tDaqYgQMAG ul {
  margin-bottom: 0rem;
}
.cid-tDaqYgQMAG .row {
  justify-content: center;
}
.cid-tDaqYgQMAG .list {
  padding: 0;
}
.cid-tDaqYgQMAG li {
  list-style: none;
}
.cid-tDaqYgQMAG .link-wrap {
  width: 100%;
}
.cid-tDaqYgQMAG .link {
  display: inline-block;
}
.cid-tDaqYgQMAG .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 0.6rem;
  font-weight: 600;
}
.cid-tDaqYgQMAG .link a:before {
  position: absolute;
  transition: all 0.3s;
  right: 0px;
  top: 55%;
  opacity: 0;
  transform: translateY(-50%);
  content: "\e909";
  font-family: "Moririse2" !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-tDaqYgQMAG .link a:hover:before {
  opacity: 1;
  transform: translateX(8px) translateY(-50%);
}
@media (max-width: 767px) {
  .cid-tDaqYgQMAG .card-wrapper {
    padding: 1.4rem 1rem 1rem;
  }
}
.cid-tDaqYgQMAG .card-title,
.cid-tDaqYgQMAG .card-box {
  text-align: center;
}
.cid-tDb36NSiGt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDb36NSiGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDb36NSiGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDb36NSiGt img {
  border-radius: 3rem;
}
.cid-tDb36NSiGt .row {
  flex-direction: row-reverse;
}
.cid-tDb36NSiGt .row {
  align-items: center;
}
.cid-tDb36NSiGt .mbr-section-title {
  color: #491414;
}
.cid-tDb36NSiGt .mbr-text,
.cid-tDb36NSiGt .mbr-section-btn {
  color: #491414;
}
.cid-tF9k98d3Dd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.png");
}
.cid-tF9k98d3Dd .cards {
  padding-right: 35px;
}
@media (max-width: 1200px) {
  .cid-tF9k98d3Dd .cards {
    padding: 0 0 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tF9k98d3Dd .cards {
    padding: 0 12px;
  }
}
.cid-tF9k98d3Dd .cards-wrapper {
  justify-content: center;
}
.cid-tF9k98d3Dd .card {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cid-tF9k98d3Dd .card {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .cid-tF9k98d3Dd .card {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.cid-tF9k98d3Dd .card .card-wrapper {
  padding: 16px 15px 43px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #fafafa;
}
.cid-tF9k98d3Dd .card .card-wrapper img {
  margin-top: 30px;
  margin-bottom: 19px;
  width: 51px;
  height: 51px;
  object-fit: cover;
}
.cid-tF9k98d3Dd .card .card-wrapper .mbr-card-title {
  margin: 0 0 8px 0;
}
.cid-tF9k98d3Dd .card .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-tF9k98d3Dd .features-content {
  padding-left: 85px;
}
@media (max-width: 992px) {
  .cid-tF9k98d3Dd .features-content {
    padding: 0 12px;
  }
}
.cid-tF9k98d3Dd .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-tF9k98d3Dd .mbr-section-title {
  margin: 29px 0 13.5px 0;
  color: #080808;
}
.cid-tF9k98d3Dd .mbr-text {
  margin-bottom: 38px;
  color: #ffffff;
}
.cid-tF9k98d3Dd .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tF9k98d3Dd .btn:hover {
  box-shadow: none;
}
.cid-tF9k98d3Dd .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-tF9k98d3Dd .mbr-card-desc {
  color: #65676c;
  text-align: center;
}
.cid-tF9k98d3Dd .mbr-section-title,
.cid-tF9k98d3Dd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tDaN41yddN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ecede8;
}
.cid-tDaN41yddN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDaN41yddN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDaN41yddN .row {
  justify-content: flex-start;
}
.cid-tDaN41yddN .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #bed3f9;
}
@media (max-width: 767px) {
  .cid-tDaN41yddN .content-container {
    flex-wrap: wrap;
  }
}
.cid-tDaN41yddN .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 40px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-tDaN41yddN .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-tDaN41yddN .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
  height: 480px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tDaN41yddN .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-tDaN41yddN .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tDaN41yddN .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-tDaN41yddN .label-text {
  color: #000000;
  margin: 0;
}
.cid-tDaN41yddN .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tDaN41yddN .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-tDaN41yddN .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-tDaN41yddN .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-tDaN41yddN .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-tDbpB42XQz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDbpB42XQz .item-subtitle {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  color: #17003b;
}
.cid-tDbpB42XQz .item-subtitle:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  left: 0;
  background: #6bffc7;
  z-index: -1;
}
.cid-tDbpB42XQz .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tDbpB42XQz .item-wrapper:hover .item-subtitle:before {
  width: 0%;
}
@media (min-width: 992px) {
  .cid-tDbpB42XQz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDbpB42XQz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDbpB42XQz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDbpB42XQz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDbpB42XQz b,
.cid-tDbpB42XQz strong {
  font-weight: 900;
}
.cid-tDbpB42XQz img,
.cid-tDbpB42XQz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDbpB42XQz .item:focus,
.cid-tDbpB42XQz span:focus {
  outline: none;
}
.cid-tDbpB42XQz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDbpB42XQz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDbpB42XQz .mbr-section-title {
  color: #17003b;
}
.cid-tDbpB42XQz .mbr-text,
.cid-tDbpB42XQz .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tDbpB42XQz .item-title {
  text-align: center;
  color: #17003b;
}
.cid-tDbpB42XQz .mbr-section-subtitle {
  color: #17003b;
}
.cid-tDbpB42XQz .item-subtitle,
.cid-tDbpB42XQz .item-content {
  text-align: center;
}
.cid-tDbpB42XQz .item-title DIV {
  text-align: center;
}
.cid-tDaZrNNPUE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1424.jpg");
}
.cid-tDaZrNNPUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDaZrNNPUE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDaZrNNPUE .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cid-tDaZrNNPUE .content-container {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .cid-tDaZrNNPUE .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-tDaZrNNPUE .item-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.cid-tDaZrNNPUE .col-img {
  height: 224px;
}
@media (max-width: 991px) {
  .cid-tDaZrNNPUE .col-img {
    height: 145px;
  }
}
.cid-tDaZrNNPUE .image-wrapper {
  width: 100%;
  height: 224px;
}
@media (max-width: 991px) {
  .cid-tDaZrNNPUE .image-wrapper {
    height: 145px;
  }
}
.cid-tDaZrNNPUE .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tDaZrNNPUE .col-text {
  flex-grow: 1;
}
.cid-tDaZrNNPUE .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 2.6em;
  min-height: 336px;
}
@media (max-width: 1199px) {
  .cid-tDaZrNNPUE .text-wrapper {
    min-height: 302px;
  }
}
@media (max-width: 991px) {
  .cid-tDaZrNNPUE .text-wrapper {
    min-height: 280px;
    padding: 2.5em 2em 1.8em 2em;
  }
}
.cid-tDaZrNNPUE .title-container {
  flex-grow: 1;
}
.cid-tDaZrNNPUE .mbr-section-title {
  color: #272727;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-tDaZrNNPUE .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tDaZrNNPUE .mbr-text {
  color: #272727;
  opacity: 0.7;
  margin-bottom: 0;
}
.cid-tDaZrNNPUE .mbr-section-btn {
  margin-top: 20px;
}
.cid-tDaZrNNPUE .author-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tDaZrNNPUE .author-container {
    flex-wrap: wrap;
  }
}
.cid-tDaZrNNPUE .item-name-wrap {
  display: flex;
  align-items: center;
  width: 45%;
}
@media (max-width: 767px) {
  .cid-tDaZrNNPUE .item-name-wrap {
    width: 100%;
  }
}
.cid-tDaZrNNPUE .author-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}
.cid-tDaZrNNPUE .author-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tDaZrNNPUE .name-text {
  color: #272727;
}
.cid-tDaZrNNPUE .text-item-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  width: 45%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tDaZrNNPUE .text-item-container {
    width: 100%;
    margin-top: 1rem;
    justify-content: flex-start;
  }
}
.cid-tDaZrNNPUE .text-item {
  display: flex;
  margin-bottom: 6px;
  margin-right: 6px;
  padding: 5px 4px;
  border-radius: 5px;
  background-color: #c4b2f6;
}
.cid-tDaZrNNPUE .label-text {
  color: #8c69ec;
  line-height: 1 !important;
}
.cid-tDbxxuq304 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tDbxxuq304 .mbr-section-subtitle {
  color: #767676;
}
.cid-tDbxxuq304 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-facebook:after {
  border-color: #3e5b98;
}
.cid-tDbxxuq304 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-twitter:after {
  border-color: #4da7de;
}
.cid-tDbxxuq304 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-googleplus:after {
  border-color: #dd4b39;
}
.cid-tDbxxuq304 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-vkontakte:after {
  border-color: #5a7fa6;
}
.cid-tDbxxuq304 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-odnoklassniki:after {
  border-color: #f48420;
}
.cid-tDbxxuq304 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-pinterest:after {
  border-color: #c92619;
}
.cid-tDbxxuq304 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-tDbxxuq304 .socicon-bg-mail:after {
  border-color: #134785;
}
.cid-tDbxxuq304 .btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  border: none !important;
}
.cid-tDbxxuq304 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-tDbxxuq304 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tDbxxuq304 [class^="socicon-"]:before,
.cid-tDbxxuq304 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-tDbxxuq304 .btn {
    font-size: 20px !important;
  }
}
.cid-tDnN1s2kCL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDnN1s2kCL .fb-page,
.cid-tDnN1s2kCL span,
.cid-tDnN1s2kCL iframe {
  width: 500px;
  height: 620px;
}
.cid-tDnN1s2kCL blockquote {
  display: none;
}
.cid-tDnN1s2kCL .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tDnQwoGNkr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDnQwoGNkr .twitter-wrapper,
.cid-tDnQwoGNkr iframe {
  min-height: 600px;
  max-height: 600px;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 455.7 455.7'%3E%3Crect width='455.7' height='455.7' fill='%2350ABF1'/%3E%3Cpath d='M60.4 337.8c30.3 19.2 66.3 30.4 104.9 30.4 108.3 0 196.2-87.8 196.2-196.2 0-2.7-0.1-5.4-0.2-8.1 3.9-3.1 28.2-22.5 34.1-35 0 0-19.7 8.2-38.9 10.1 0 0-0.1 0-0.1 0 0 0 0 0 0.1-0.1 1.8-1.2 26.6-18.1 30-38.2 0 0-13.9 7.4-33.4 13.9 -3.2 1.1-6.6 2.1-10.1 3.1 -12.6-13.4-30.4-21.8-50.2-21.8 -38 0-68.8 30.8-68.8 68.8 0 5.4 0.6 10.6 1.8 15.6 -5.3-0.2-86.2-4.8-141.3-71.4 0 0-32.9 44.9 19.6 91.1 0 0-16-0.6-29.7-8.9 0 0-5.1 54.4 54.4 68.3 0 0-11.7 4.4-30.4 1.3 0 0 10.4 44 63.3 48.1 0 0-41.8 37.7-101.1 28.9L60.4 337.8z' fill='%23FFF'/%3E%3C/svg%3E");
}
.cid-tDnQwoGNkr a.twitter-timeline {
  display: none;
}
.cid-tDnrgKYDhh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-tDnrgKYDhh .row {
  align-items: center;
  width: 100%;
}
.cid-tDnrgKYDhh .content-container {
  max-width: 720px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.cid-tDnrgKYDhh .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 40px;
}
.cid-tDnrgKYDhh .title-text {
  width: 100%;
}
.cid-tDnrgKYDhh .main-title {
  color: #ffffff;
}
.cid-tDnrgKYDhh .main-subtitle {
  margin-top: 24px;
  color: #ffffff;
}
.cid-tDnrgKYDhh form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tDnrgKYDhh form h1,
.cid-tDnrgKYDhh form h2,
.cid-tDnrgKYDhh form h3,
.cid-tDnrgKYDhh form h4,
.cid-tDnrgKYDhh form h5,
.cid-tDnrgKYDhh form h6 {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 56px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tDnrgKYDhh form h1,
  .cid-tDnrgKYDhh form h2,
  .cid-tDnrgKYDhh form h3,
  .cid-tDnrgKYDhh form h4,
  .cid-tDnrgKYDhh form h5,
  .cid-tDnrgKYDhh form h6 {
    margin-top: 24px;
    padding-top: 56px;
  }
}
.cid-tDnrgKYDhh form p {
  color: #ffffff;
}
.cid-tDnrgKYDhh form .mbr-section-btn {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.cid-tDnrgKYDhh form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}
.cid-tDnrgKYDhh form .form-group {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}
.cid-tDnrgKYDhh form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: none !important;
  border-radius: 8px !important;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
}
.cid-tDnrgKYDhh form .form-control::-webkit-input-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form .form-control::-moz-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form .form-control:-moz-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form .form-control:-ms-input-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form select {
  color: #ffffff !important;
}
.cid-tDnrgKYDhh form textarea {
  height: 160px;
}
.cid-tDnrgKYDhh form input:active,
.cid-tDnrgKYDhh form textarea:active,
.cid-tDnrgKYDhh form input:focus,
.cid-tDnrgKYDhh form textarea:focus {
  background-color: #0A0A0A !important;
  border-color: #ffffff !important;
}
.cid-tDnrgKYDhh form input:active::-webkit-input-placeholder,
.cid-tDnrgKYDhh form textarea:active::-webkit-input-placeholder,
.cid-tDnrgKYDhh form input:focus::-webkit-input-placeholder,
.cid-tDnrgKYDhh form textarea:focus::-webkit-input-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form input:active::-moz-placeholder,
.cid-tDnrgKYDhh form textarea:active::-moz-placeholder,
.cid-tDnrgKYDhh form input:focus::-moz-placeholder,
.cid-tDnrgKYDhh form textarea:focus::-moz-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form input:active:-moz-placeholder,
.cid-tDnrgKYDhh form textarea:active:-moz-placeholder,
.cid-tDnrgKYDhh form input:focus:-moz-placeholder,
.cid-tDnrgKYDhh form textarea:focus:-moz-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form input:active:-ms-input-placeholder,
.cid-tDnrgKYDhh form textarea:active:-ms-input-placeholder,
.cid-tDnrgKYDhh form input:focus:-ms-input-placeholder,
.cid-tDnrgKYDhh form textarea:focus:-ms-input-placeholder {
  color: #d8d5d1;
}
.cid-tDnrgKYDhh form .row {
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.cid-tDnrgKYDhh form .row [class*=col] {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.cid-tDnrgKYDhh form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 12px;
}
.cid-tDnrgKYDhh form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tDnrgKYDhh form .form-check-input:focus,
.cid-tDnrgKYDhh form .form-check-input:hover {
  border-color: #ffffff !important;
}
.cid-tDnrgKYDhh form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-toEnwKcUBk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3c4d75;
  overflow: hidden;
}
.cid-tD6p1cggQM {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tD6p1cggQM nav.navbar {
  position: fixed;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tD6p1cggQM .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-tD6p1cggQM .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-tD6p1cggQM .dropdown-item:hover,
.cid-tD6p1cggQM .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-tD6p1cggQM .dropdown-item:hover span {
  color: white;
}
.cid-tD6p1cggQM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD6p1cggQM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD6p1cggQM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD6p1cggQM .nav-link {
  position: relative;
}
.cid-tD6p1cggQM .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-tD6p1cggQM .container {
    flex-wrap: nowrap;
  }
}
.cid-tD6p1cggQM .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD6p1cggQM .navbar-nav {
  padding: 5px !important;
}
.cid-tD6p1cggQM .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-tD6p1cggQM .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 8px 8px !important;
  font-weight: 400 !important;
}
.cid-tD6p1cggQM .dropdown-menu,
.cid-tD6p1cggQM .navbar.opened {
  background: #ffffff !important;
}
.cid-tD6p1cggQM .nav-item:focus,
.cid-tD6p1cggQM .nav-link:focus {
  outline: none;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD6p1cggQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD6p1cggQM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD6p1cggQM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD6p1cggQM .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border: none !important;
}
.cid-tD6p1cggQM .navbar.opened {
  transition: all 0.3s;
}
.cid-tD6p1cggQM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-tD6p1cggQM .navbar .navbar-logo img {
  width: auto;
}
.cid-tD6p1cggQM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD6p1cggQM .navbar.collapsed {
  justify-content: center;
}
.cid-tD6p1cggQM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD6p1cggQM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD6p1cggQM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD6p1cggQM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD6p1cggQM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD6p1cggQM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD6p1cggQM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD6p1cggQM .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-tD6p1cggQM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD6p1cggQM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD6p1cggQM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD6p1cggQM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD6p1cggQM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD6p1cggQM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD6p1cggQM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD6p1cggQM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD6p1cggQM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tD6p1cggQM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD6p1cggQM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD6p1cggQM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD6p1cggQM .dropdown-item.active,
.cid-tD6p1cggQM .dropdown-item:active {
  background-color: transparent;
}
.cid-tD6p1cggQM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD6p1cggQM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD6p1cggQM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tD6p1cggQM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD6p1cggQM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD6p1cggQM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD6p1cggQM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD6p1cggQM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6p1cggQM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD6p1cggQM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6p1cggQM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD6p1cggQM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD6p1cggQM .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-tD6p1cggQM .navbar {
    height: 70px;
  }
  .cid-tD6p1cggQM .navbar.opened {
    height: auto;
  }
  .cid-tD6p1cggQM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD6p1cggQM .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #506491;
}
.cid-tD6p1cggQM .mbr-section-title {
  color: #ffffff;
  max-width: 50%;
  margin-right: auto;
}
.cid-tD6p1cggQM .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-tD6p1cggQM .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-tD6p1cggQM .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-tD6p1cggQM .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-tD6p1cggQM .container {
    overflow: hidden;
  }
  .cid-tD6p1cggQM .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-tD6p1cggQM .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-tD6p1cggQM .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-tD6p1cggQM .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-tD6p1cggQM .navbar-nav {
    padding: 0 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-tD6p1cggQM .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tD6p1cggQM .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tD6p1cggQM .container {
    padding: 25px 15px !important;
  }
  .cid-tD6p1cggQM .container-head {
    padding: 10px !important;
  }
  .cid-tD6p1cggQM .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-tD6p1cggQM .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-tD6p1cggQM .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-tDbGzbryXg {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-tDbGzbryXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDbGzbryXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDbGzbryXg .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tDbGzbryXg .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tDbGzbryXg .mbr-text {
  color: #FFFFFF;
}
.cid-tDbGzbryXg .mbr-section-btn {
  margin-top: 18px;
}
.cid-tDbGsCO8SF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #506491;
}
.cid-tDbGsCO8SF li {
  list-style: none;
  padding-bottom: 6px;
}
.cid-tDbGsCO8SF ul {
  color: #5758e0;
  padding: 0;
}
.cid-tDbGsCO8SF UL {
  color: #ffffff;
}
.cid-toEnwKcUBk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3c4d75;
  overflow: hidden;
}
