body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 0.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.84rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #e43f3f !important;
}
.bg-danger {
  background-color: #12109f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #12109f !important;
  border-color: #12109f !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: #090850 !important;
  border-color: #090850 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #090850 !important;
  border-color: #090850 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #12109f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #090850 !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: #12109f !important;
  border-color: #12109f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #e43f3f !important;
}
.text-danger {
  color: #12109f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a61717 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #080742 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #e43f3f;
}
.alert-danger {
  background-color: #12109f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4542ec;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %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-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUtlf07Sxy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tUtlf07Sxy .carousel-caption {
  padding-top: 1rem;
  opacity: 1;
  bottom: 3.5rem;
  border-radius: 11px 90px 11px 90px;
  padding-left: 45px;
  padding-right: 45px;
  width: 70%;
}
.cid-tUtlf07Sxy .carousel {
  height: 22.8rem;
}
.cid-tUtlf07Sxy .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tUtlf07Sxy .carousel-item,
.cid-tUtlf07Sxy .carousel-inner {
  height: 100%;
}
.cid-tUtlf07Sxy .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tUtlf07Sxy .carousel-item img {
  object-fit: cover;
}
.cid-tUtlf07Sxy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tUtlf07Sxy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tUtlf07Sxy .carousel-control:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.cid-tUtlf07Sxy .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tUtlf07Sxy .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tUtlf07Sxy .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tUtlf07Sxy .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tUtlf07Sxy .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUtlf07Sxy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUtlf07Sxy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUtlf07Sxy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUtlf07Sxy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1rem !important;
}
.cid-tUtlf07Sxy .carousel-indicators li {
  max-width: 20px;
  height: 8px;
  width: 8px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUtlf07Sxy .carousel-indicators li.active,
.cid-tUtlf07Sxy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUtlf07Sxy .carousel-indicators li::after,
.cid-tUtlf07Sxy .carousel-indicators li::before {
  content: none;
}
.cid-tUtlf07Sxy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUtlf07Sxy .carousel-indicators {
    display: none !important;
  }
}
.cid-tUtlf07Sxy H5 {
  text-align: center;
}
.cid-tUtlf07Sxy P {
  color: #ffffff;
  text-align: center;
}
.cid-tUtlf07Sxy .sectionsubtitle {
  color: #6ec7f2;
  text-align: center;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tUtlf07Sxy .fadeIn {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .fadeInLeft {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .fadeInRight {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .fadeInDown {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .fadeInUp {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
.cid-tUtlf07Sxy .flipInX {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
.cid-tUtlf07Sxy .flipInY {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .fadeDistortion {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: fadeDistortion;
  animation-name: fadeDistortion;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tUtlf07Sxy .zoomIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@media only screen and (max-width: 600px) {
  .cid-tUtlf07Sxy .carousel-caption {
    width: 100%;
    margin-left: -45px;
  }
  .cid-tUtlf07Sxy .carousel-control {
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 100%;
    border-radius: 50%;
    transition: all 0.3s;
  }
}
.cid-6Xa9JbspoN {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ff0000;
  background: linear-gradient(225deg, #ff0000 0, #12109f 75%);
}
@media (max-width: 991px) {
  .cid-6Xa9JbspoN .btn-container {
    padding-top: 2rem;
  }
}
.cid-tUjBBoDyCJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tUjBBoDyCJ hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 32%;
}
.cid-tUjBBoDyCJ .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tUjBBoDyCJ .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #12109f;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 156px;
  }
  to {
    margin-left: 100%;
    width: 156px;
  }
}
.cid-69c35uTbe1 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-69c35uTbe1 .radius {
  border-radius: 20px;
}
.cid-69c35uTbe1 .dahserv7 .about-image {
  margin-left: 50px;
  margin-right: 60px;
}
.cid-69c35uTbe1 .dahserv7 .about-image .img {
  position: relative;
  max-width: 600px;
}
.cid-69c35uTbe1 .dahserv7 .about-image .image-1 {
  display: inline-block;
}
.cid-69c35uTbe1 .dahserv7 .about-image .img-2 {
  max-width: 50%;
  position: absolute;
  bottom: -50px;
  right: -150px;
  margin-right: 50px;
}
.cid-69c35uTbe1 .dahserv7 .about-image .year {
  max-width: 190px;
  padding: 25px;
  background: linear-gradient(90deg, #043387 0%, #e43f3f 49%, #e43f3f 82%);
  border-radius: 20px;
  position: absolute;
  right: 100px;
  bottom: -70px;
}
.cid-69c35uTbe1 .dahserv7 .about-image .year p {
  line-height: 1.4;
}
.cid-69c35uTbe1 .dahserv7 .text-content {
  max-width: 470px;
  margin-left: 50px;
  margin-right: auto;
}
.cid-69c35uTbe1 .dahserv7 .text-content .section-title {
  margin: 25px 0;
}
.cid-69c35uTbe1 .dahserv7 .text-content .blue-gradient-btn {
  margin-top: 15px;
  margin-bottom: 30px;
}
.cid-69c35uTbe1 .top-p {
  font-weight: 600;
  line-height: 1;
  margin-top: -3px;
  color: #4479d9;
}
.cid-69c35uTbe1 .section-title {
  font-weight: 700;
}
.cid-69c35uTbe1 p {
  margin-bottom: 15px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .cid-69c35uTbe1 .dahserv7 {
    padding-bottom: 50px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content .section-title {
    margin: 10px 0;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content .blue-gradient-btn {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img img {
    width: 100%;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img-2 {
    width: 220px;
    bottom: 10px;
    right: 10px;
    margin-right: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year {
    max-width: 100px;
    padding: 10px;
    left: 10px;
    bottom: 10px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year h2 {
    font-size: 25px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year p {
    line-height: 1.3;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cid-69c35uTbe1 .dahserv7 {
    padding-bottom: 70px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content .section-title {
    margin: 10px 0 15px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content .blue-gradient-btn {
    margin-top: 10px;
    margin-bottom: 0 !important;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    padding-top: 0 !important;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img img {
    width: 100%;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img-2 {
    width: 250px;
    bottom: 30px;
    right: 30px;
    margin-right: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year {
    max-width: 130px;
    padding: 20px 10px;
    right: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cid-69c35uTbe1 .dahserv7 {
    padding-bottom: 100px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content {
    max-width: 430px;
    margin-left: 10px;
  }
  .cid-69c35uTbe1 .dahserv7 .text-content .blue-gradient-btn {
    margin-bottom: 0;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image {
    margin-top: -50px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img-2 {
    width: 300px;
    position: absolute;
    bottom: -50px;
    right: -100px;
    margin-right: 30px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .img-2 img {
    width: 100%;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year {
    max-width: 140px;
    padding: 20px 15px;
    right: 70px;
    bottom: -50px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image .year p {
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1550px) {
  .cid-69c35uTbe1 .dahserv7 .text-content {
    max-width: 600px;
    margin-top: 50px;
  }
  .cid-69c35uTbe1 .dahserv7 .banner-content .text-content h1 {
    font-size: 56px;
  }
  .cid-69c35uTbe1 .dahserv7 .about-image {
    margin-left: 200px;
  }
}
.cid-69c35uTbe1 .yearp {
  color: #ffffff;
  text-align: center;
}
.cid-69c35uTbe1 .h2 {
  text-align: center;
  color: #ffffff;
}
.cid-tUtzkcQHgZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tUtzkcQHgZ .process-area.bg-color .container {
  max-width: 1140px;
}
.cid-tUtzkcQHgZ .process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
}
.cid-tUtzkcQHgZ .process-item::before {
  position: absolute;
  height: 280px;
  content: "";
  width: 90%;
  background-color: #0a4a9a;
  left: 0;
  right: 0;
  margin: auto;
  top: -125px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUtzkcQHgZ .process-item .icon {
  margin-bottom: 20px;
  position: relative;
}
.cid-tUtzkcQHgZ .process-item .icon i {
  background-color: #fff;
  text-align: center;
  font-size: 50px;
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  color: #0a4a9a;
  border-radius: 50px;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUtzkcQHgZ .process-item h3 {
  margin-top: 75px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cid-tUtzkcQHgZ .process-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cid-tUtzkcQHgZ .process-item:hover .icon i {
  background-color: #e73c3e;
  color: #ffffff;
}
.cid-tUtzkcQHgZ .process-item.bg-top1 {
  margin-top: 30px;
}
.cid-tUtzkcQHgZ .process-item.bg-top2 {
  margin-top: 0;
}
.cid-tUtzkcQHgZ .process-item.bg-top3 {
  margin-top: 0;
}
.cid-tUtzkcQHgZ .process-item.bg-top4 {
  margin-top: -30px;
}
.cid-tUtzkcQHgZ .process-item-two .text p {
  margin-bottom: 0;
  background-color: #fafafa;
}
.cid-tUtzkcQHgZ .section-title {
  text-align: center;
  margin-bottom: 45px;
}
.cid-tUtzkcQHgZ .section-title h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cid-tUtzkcQHgZ .section-title p {
  max-width: 570px;
  margin: auto;
}
.cid-tUtzkcQHgZ p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  font-family: roboto, sans-serif;
}
.cid-tUtzkcQHgZ H2 {
  color: #000000;
}
.cid-tUtzkcQHgZ P {
  color: #353535;
}
.cid-tUtzkcQHgZ SPAN {
  color: #e43f3f;
}
.cid-fxA0HbWeRv {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-fxA0HbWeRv .tabs-01 {
  border-radius: 4px;
}
.cid-fxA0HbWeRv .tabs-01 .nav {
  height: 100%;
}
.cid-fxA0HbWeRv .tabs-01 .nav a {
  padding: 20px 30px;
  display: inline-block;
  background-color: #ffffff;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s;
  color: #232323;
  border-bottom: 3px solid #232323;
  margin-top: 15px;
}
.cid-fxA0HbWeRv .tabs-01 .nav a i {
  margin-right: 5px;
}
.cid-fxA0HbWeRv .tabs-01 .nav a.active {
  color: #ffffff;
  background: #232323;
  width: 100%;
}
.cid-fxA0HbWeRv .tabs-01 .tab-content .tab-text {
  padding: 25px;
}
.cid-fxA0HbWeRv P {
  line-height: 1.5;
  margin: 0px;
}
.cid-fxA0HbWeRv H4 {
  color: #ff0000;
}
.cid-tUtNo0N0ZI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tUtNo0N0ZI .process-area.bg-color .container {
  max-width: 1140px;
}
.cid-tUtNo0N0ZI .process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
}
.cid-tUtNo0N0ZI .process-item::before {
  position: absolute;
  height: 280px;
  content: "";
  width: 90%;
  background-color: #0a4a9a;
  left: 0;
  right: 0;
  margin: auto;
  top: -125px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUtNo0N0ZI .process-item .icon {
  margin-bottom: 20px;
  position: relative;
}
.cid-tUtNo0N0ZI .process-item .icon i {
  background-color: #fff;
  text-align: center;
  font-size: 50px;
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  color: #0a4a9a;
  border-radius: 50px;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUtNo0N0ZI .process-item h3 {
  margin-top: 75px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cid-tUtNo0N0ZI .process-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cid-tUtNo0N0ZI .process-item:hover .icon i {
  background-color: #e73c3e;
  color: #ffffff;
}
.cid-tUtNo0N0ZI .process-item.bg-top1 {
  margin-top: 30px;
}
.cid-tUtNo0N0ZI .process-item.bg-top2 {
  margin-top: 0;
}
.cid-tUtNo0N0ZI .process-item.bg-top3 {
  margin-top: 0;
}
.cid-tUtNo0N0ZI .process-item.bg-top4 {
  margin-top: -30px;
}
.cid-tUtNo0N0ZI .process-item-two .text p {
  margin-bottom: 0;
  background-color: #ffffff;
}
.cid-tUtNo0N0ZI .section-title {
  text-align: center;
  margin-bottom: 45px;
}
.cid-tUtNo0N0ZI .section-title h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cid-tUtNo0N0ZI .section-title p {
  max-width: 570px;
  margin: auto;
}
.cid-tUtNo0N0ZI p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  font-family: roboto, sans-serif;
}
.cid-tUtNo0N0ZI H2 {
  color: #000000;
}
.cid-tUtNo0N0ZI P {
  color: #353535;
}
.cid-tUtNo0N0ZI SPAN {
  color: #e43f3f;
}
.cid-tUtMRrf4lM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tUtMRrf4lM img {
  width: 90%;
  margin: auto;
}
.cid-tUtMRrf4lM .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tUtMRrf4lM .card {
    max-width: 12.5%;
  }
}
.cid-hkDDtZt195 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name {
  z-index: 1;
  width: 270px;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-item-img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
  border: 2px solid #cbcbcb;
  display: flex;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-item-img-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.cid-hkDDtZt195 .dahotitle-title .sub-title {
  padding: 0px 82px;
  position: relative;
  display: inline-block;
}
.cid-hkDDtZt195 .dahotitle-title .sub-title:before,
.cid-hkDDtZt195 .dahotitle-title .sub-title:after {
  top: 15px;
  content: "";
  height: 3px;
  width: 75px;
  position: absolute;
  background-color: #e43f3f;
}
.cid-hkDDtZt195 .dahotitle-title .sub-title:before {
  left: 0;
}
.cid-hkDDtZt195 .dahotitle-title .sub-title:after {
  right: 0;
  display: none;
}
.cid-hkDDtZt195 .dahotitle-title.text-center .sub-title:after {
  display: block;
}
.cid-hkDDtZt195 .dahotitle-title h2 {
  padding: 10px 0px 20px;
}
.cid-hkDDtZt195 .testi12 {
  z-index: 1;
  overflow: hidden;
}
.cid-hkDDtZt195 .testi12 .dahotitle-title {
  margin: 0 auto;
  max-width: 470px;
}
.cid-hkDDtZt195 .daho12inner {
  padding: 30px 30px 0px 30px;
  background-color: #fafafa;
  -webkit-box-shadow: 1.045px 9.945px 60px 0px rgba(68, 68, 68, 0.15);
  box-shadow: 1.045px 9.945px 60px 0px rgba(68, 68, 68, 0.15);
}
.cid-hkDDtZt195 .daho12inner .dahotesti-text-item {
  padding-bottom: 35px;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-quote {
  right: 0px;
  width: 28px;
  bottom: 15px;
  height: 28px;
  border-radius: 100%;
  background-color: #fafafa;
  border: 2px solid #fafafa;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name h3 {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  padding-left: 48px;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name h3:before {
  left: 0;
  top: 12px;
  width: 40px;
  content: "";
  height: 3px;
  position: absolute;
  background-color: #fafafa;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name:before {
  left: -30px;
  z-index: -1;
  content: "";
  height: 50px;
  width: 215px;
  bottom: -15px;
  position: absolute;
  background-color: #e43f3f;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name .dahotesti-shape {
  top: -17px !important;
  width: 0;
  height: 0;
  right: 35px;
  content: "";
  position: absolute;
  border-bottom: 50px solid #e43f3f;
  border-right: 50px solid transparent;
}
.cid-hkDDtZt195 .daho12inner .dahotesti-name .dahotesti-shape:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 16px solid #e43f3f;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.8;
}
.cid-hkDDtZt195 SPAN {
  color: #e43f3f;
}
.cid-hkDDtZt195 H3 {
  color: #ffffff;
}
.cid-hkDDtZt195 P {
  color: #ffffff;
}
.cid-hkDDtZt195 .mbr-testi {
  color: #232323;
}
@media only screen and (max-width: 600px) {
  .cid-hkDDtZt195 .dahotitle-title .sub-title {
    padding: 0px 82px;
    position: relative;
    display: inline-block;
  }
}
.cid-tUtTya7fWM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tUtTya7fWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTya7fWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTya7fWM .google-map {
  height: 30rem;
  position: relative;
}
.cid-tUtTya7fWM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tUtTya7fWM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tUtTya7fWM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tUtTya7fWM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ewdiDITUij {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-ewdiDITUij .radius {
  border-radius: 6px;
}
.cid-ewdiDITUij .dahserv7 .about-image {
  margin-left: 50px;
  margin-right: 60px;
}
.cid-ewdiDITUij .dahserv7 .about-image .img {
  position: relative;
  max-width: 600px;
}
.cid-ewdiDITUij .dahserv7 .about-image .image-1 {
  display: inline-block;
}
.cid-ewdiDITUij .dahserv7 .about-image .img-2 {
  max-width: 50%;
  position: absolute;
  bottom: -50px;
  right: -150px;
  margin-right: 50px;
}
.cid-ewdiDITUij .dahserv7 .about-image .year {
  max-width: 190px;
  padding: 25px;
  background: linear-gradient(90deg, #000000 0%, #670da0 49%, #670da0 82%);
  border-radius: 6px;
  position: absolute;
  right: 100px;
  bottom: -70px;
}
.cid-ewdiDITUij .dahserv7 .about-image .year p {
  line-height: 1.4;
}
.cid-ewdiDITUij .dahserv7 .text-content {
  max-width: 470px;
  margin-left: 50px;
  margin-right: auto;
}
.cid-ewdiDITUij .dahserv7 .text-content .section-title {
  margin: 25px 0;
}
.cid-ewdiDITUij .dahserv7 .text-content .blue-gradient-btn {
  margin-top: 15px;
  margin-bottom: 30px;
}
.cid-ewdiDITUij .top-p {
  font-weight: 600;
  line-height: 1;
  margin-top: -3px;
  color: #12109f;
  text-align: left;
}
.cid-ewdiDITUij .section-title {
  font-weight: 700;
  text-align: left;
}
.cid-ewdiDITUij p {
  margin-bottom: 15px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .cid-ewdiDITUij .dahserv7 {
    padding-bottom: 50px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content .section-title {
    margin: 10px 0;
  }
  .cid-ewdiDITUij .dahserv7 .text-content .blue-gradient-btn {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img img {
    width: 100%;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img-2 {
    width: 220px;
    bottom: 10px;
    right: 10px;
    margin-right: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year {
    max-width: 100px;
    padding: 10px;
    left: 10px;
    bottom: 10px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year h2 {
    font-size: 25px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year p {
    line-height: 1.3;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cid-ewdiDITUij .dahserv7 {
    padding-bottom: 70px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content .section-title {
    margin: 10px 0 15px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content .blue-gradient-btn {
    margin-top: 10px;
    margin-bottom: 0 !important;
  }
  .cid-ewdiDITUij .dahserv7 .about-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    padding-top: 0 !important;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img img {
    width: 100%;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img-2 {
    width: 250px;
    bottom: 30px;
    right: 30px;
    margin-right: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year {
    max-width: 130px;
    padding: 20px 10px;
    right: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cid-ewdiDITUij .dahserv7 {
    padding-bottom: 100px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content {
    max-width: 430px;
    margin-left: 10px;
  }
  .cid-ewdiDITUij .dahserv7 .text-content .blue-gradient-btn {
    margin-bottom: 0;
  }
  .cid-ewdiDITUij .dahserv7 .about-image {
    margin-top: -50px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img-2 {
    width: 300px;
    position: absolute;
    bottom: -50px;
    right: -100px;
    margin-right: 30px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .img-2 img {
    width: 100%;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year {
    max-width: 140px;
    padding: 20px 15px;
    right: 70px;
    bottom: -50px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image .year p {
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1550px) {
  .cid-ewdiDITUij .dahserv7 .text-content {
    max-width: 600px;
    margin-top: 50px;
  }
  .cid-ewdiDITUij .dahserv7 .banner-content .text-content h1 {
    font-size: 56px;
  }
  .cid-ewdiDITUij .dahserv7 .about-image {
    margin-left: 200px;
  }
}
.cid-ewdiDITUij .yearp {
  color: #ffe161;
  text-align: center;
}
.cid-ewdiDITUij .h2 {
  text-align: center;
  color: #ffffff;
}
.cid-ewdiDITUij .section-p {
  text-align: left;
}
.cid-zjHTUiYq0h {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #12109f;
}
.cid-zjHTUiYq0h .dahointro {
  position: relative;
}
.cid-zjHTUiYq0h .dahointro .upper-content {
  position: relative;
  background: #ffffff;
  margin-top: -60px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:before {
  position: absolute;
  content: '';
  background: #232323;
  width: 1px;
  height: 245px;
  top: 50px;
  right: 0px;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column {
  position: relative;
  display: block;
  padding: 48px 50px 54px 50px;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:hover:after {
  height: 100%;
  top: 0px;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:last-child .single-item .inner-box:before {
  display: none;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-item .inner-box .dahoicon-box {
  position: relative;
  text-align: center;
  display: block;
  font-size: 100px;
  line-height: 100px;
  -webkit-background-clip: text !important;
  margin-bottom: 12px;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h .single-column:hover {
  background: #232323;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h .single-column .inner-box .dahoicon-box .mbr-iconfont:hover span {
  color: #ffffff;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-item .inner-box h3 {
  position: relative;
  display: block;
  margin-bottom: 13px;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-item .inner-box h3 a {
  display: inline-block;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:hover h3,
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:hover h3 a,
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:hover p {
  color: #ffffff !important;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h .dahointro .upper-content .single-column:hover .dahoicon-box {
  color: #ffffff !important;
  transition: all 500ms ease;
}
.cid-zjHTUiYq0h H3 {
  color: #232323;
  font-size: large;
  text-align: center;
}
.cid-zjHTUiYq0h P {
  text-align: center;
}
.cid-TaXY4KAIj2 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/xx-1.jpg");
}
.cid-TaXY4KAIj2 .colored-text {
  color: #ff0000;
}
.cid-TaXY4KAIj2 .feature-icon-wrap {
  position: relative;
  padding-bottom: 40px;
  margin: 0px;
}
.cid-TaXY4KAIj2 .feature-icon-wrap .left-side-icon {
  float: left;
}
.cid-TaXY4KAIj2 .back-icon {
  z-index: -1;
  position: absolute;
  padding-left: 40px;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  line-height: 100px;
}
.cid-TaXY4KAIj2 .feature-icon-wrap .features-text-right {
  padding-left: 40px;
  overflow: hidden;
}
.cid-TaXY4KAIj2 .features-text-right h3 {
  font-weight: 700;
  letter-spacing: 1px;
}
.cid-TaXY4KAIj2 .services-icons .left-side-icon i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #ffffff;
}
.cid-TaXY4KAIj2 .section-title h1 {
  font-weight: 300;
  margin: 0px;
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.cid-TaXY4KAIj2 p {
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
}
.cid-TaXY4KAIj2 .divided30 {
  width: 100%;
  height: 30px;
}
.cid-TaXY4KAIj2 .padding-bottom30 {
  padding-bottom: 30px;
}
.cid-TaXY4KAIj2 .margin-bottom30 {
  margin-bottom: 30px;
}
.cid-TaXY4KAIj2 h1,
.cid-TaXY4KAIj2 h2,
.cid-TaXY4KAIj2 h3,
.cid-TaXY4KAIj2 h4,
.cid-TaXY4KAIj2 h5,
.cid-TaXY4KAIj2 h6 {
  margin-top: 0px;
  font-family: 'Open Sans', sans-serif;
}
.cid-TaXY4KAIj2 .section-title {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.cid-TaXY4KAIj2 .mbr-headertitle5 {
  color: #ffffff;
}
.cid-TaXY4KAIj2 .mbr-text5 {
  color: #ffffff;
}
.cid-TaXY4KAIj2 .mbr-social5 {
  color: #ff0000;
}
.cid-TaXY4KAIj2 .mbr-text5-2 {
  color: #ffffff;
}
.cid-TaXY4KAIj2 .border-line {
  width: 40px;
  height: 1px;
  margin-top: 20px;
  display: block;
  text-align: center;
  background-color: #f32b56;
  margin-left: auto;
  margin-right: auto;
}
.cid-TaXY4KAIj2 .subtitle-caption {
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 25px;
}
.cid-tUv71XvQjy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tUv71XvQjy .process-area.bg-color .container {
  max-width: 1140px;
}
.cid-tUv71XvQjy .process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
}
.cid-tUv71XvQjy .process-item::before {
  position: absolute;
  height: 280px;
  content: "";
  width: 90%;
  background-color: #0a4a9a;
  left: 0;
  right: 0;
  margin: auto;
  top: -125px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUv71XvQjy .process-item .icon {
  margin-bottom: 20px;
  position: relative;
}
.cid-tUv71XvQjy .process-item .icon i {
  background-color: #fff;
  text-align: center;
  font-size: 50px;
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  color: #0a4a9a;
  border-radius: 50px;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUv71XvQjy .process-item h3 {
  margin-top: 75px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cid-tUv71XvQjy .process-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cid-tUv71XvQjy .process-item:hover .icon i {
  background-color: #e73c3e;
  color: #ffffff;
}
.cid-tUv71XvQjy .process-item.bg-top1 {
  margin-top: 30px;
}
.cid-tUv71XvQjy .process-item.bg-top2 {
  margin-top: 0;
}
.cid-tUv71XvQjy .process-item.bg-top3 {
  margin-top: 0;
}
.cid-tUv71XvQjy .process-item.bg-top4 {
  margin-top: -30px;
}
.cid-tUv71XvQjy .process-item-two .text p {
  margin-bottom: 0;
  background-color: #fafafa;
}
.cid-tUv71XvQjy .section-title {
  text-align: center;
  margin-bottom: 45px;
}
.cid-tUv71XvQjy .section-title h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cid-tUv71XvQjy .section-title p {
  max-width: 570px;
  margin: auto;
}
.cid-tUv71XvQjy p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  font-family: roboto, sans-serif;
}
.cid-tUv71XvQjy H2 {
  color: #000000;
}
.cid-tUv71XvQjy P {
  color: #353535;
}
.cid-tUv71XvQjy SPAN {
  color: #e43f3f;
}
.cid-weLyj7tl51 html,
.cid-weLyj7tl51 body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUuUctMOkH {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tUuUctMOkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUuUctMOkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUuUctMOkH .item {
  padding-bottom: 2rem;
}
.cid-tUuUctMOkH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUuUctMOkH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUuUctMOkH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUuUctMOkH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUuUctMOkH .carousel-control,
.cid-tUuUctMOkH .close {
  background: #1b1b1b;
}
.cid-tUuUctMOkH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUuUctMOkH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUuUctMOkH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUuUctMOkH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUuUctMOkH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUuUctMOkH .close::before {
  content: '\e91a';
}
.cid-tUuUctMOkH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUuUctMOkH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUuUctMOkH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUuUctMOkH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUuUctMOkH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUuUctMOkH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUuUctMOkH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUuUctMOkH .carousel-indicators li.active,
.cid-tUuUctMOkH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUuUctMOkH .carousel-indicators li::after,
.cid-tUuUctMOkH .carousel-indicators li::before {
  content: none;
}
.cid-tUuUctMOkH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUuUctMOkH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUuUctMOkH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUuUctMOkH .carousel-indicators {
    display: none;
  }
}
.cid-tUuUctMOkH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUuUctMOkH .carousel-inner > .active {
  display: block;
}
.cid-tUuUctMOkH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUuUctMOkH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUuUctMOkH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUuUctMOkH .carousel-control,
  .cid-tUuUctMOkH .carousel-indicators,
  .cid-tUuUctMOkH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUuUctMOkH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUuUctMOkH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUuUctMOkH .carousel-indicators .active,
.cid-tUuUctMOkH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUuUctMOkH .carousel-indicators .active {
  background: #fff;
}
.cid-tUuUctMOkH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUuUctMOkH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUuUctMOkH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUuUctMOkH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUuUctMOkH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUuUctMOkH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUuUctMOkH .carousel {
  width: 100%;
}
.cid-tUuUctMOkH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUuUctMOkH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUuUctMOkH .modal.fade .modal-dialog,
.cid-tUuUctMOkH .modal.in .modal-dialog {
  transform: none;
}
.cid-tUuUctMOkH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUuUctMOkH H6 {
  text-align: center;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-SobnGczHlx {
  background-image: linear-gradient(0deg, #ff0000 10%, #12109f 100%) !important;
  padding-top: 60px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-SobnGczHlx .row .form-wrapper {
    margin-top: 1rem;
  }
}
.cid-SobnGczHlx .map-wrapper {
  margin-top: 1rem;
}
.cid-SobnGczHlx .form-wrapper {
  margin-top: 0rem;
}
.cid-SobnGczHlx .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-SobnGczHlx .card-wrapper {
  display: flex;
  border-radius: 10px !important;
  background: #353535;
}
.cid-SobnGczHlx .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-SobnGczHlx .card-wrapper {
    padding: 1rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-SobnGczHlx .card-wrapper {
    padding: 1rem 1rem;
  }
}
.cid-SobnGczHlx .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #6592e6;
}
.cid-SobnGczHlx .google-map {
  height: 20rem;
  position: relative;
}
.cid-SobnGczHlx .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px !important;
}
.cid-SobnGczHlx .google-map [data-state-details] {
  color: #ff0000;
  height: 1em;
  margin-top: 1em;
  padding-left: 1rem;
  padding-right: 1rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-SobnGczHlx .google-map[data-state] {
  background: #ffb300;
}
.cid-SobnGczHlx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-SobnGczHlx .showAlerts {
  display: block !important;
}
.cid-SobnGczHlx .rowflexrev {
  display: -webkit-flex;
}
.cid-SobnGczHlx .ws-form-alerts {
  margin-top: 1rem;
}
.cid-SobnGczHlx .title {
  margin-bottom: 2rem;
}
.cid-SobnGczHlx .mbr-section-subtitle {
  color: #fafafa;
}
.cid-SobnGczHlx textarea.form-control {
  min-height: 188px;
}
.cid-SobnGczHlx LABEL {
  color: #232323;
  display: initial;
}
.cid-SobnGczHlx .mbr-section-terms {
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.cid-SobnGczHlx .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-SobnGczHlx .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-SobnGczHlx .mbr-section-gdpr {
  text-align: center;
  color: #fafafa;
  margin-bottom: 0px;
}
.cid-SobnGczHlx .alert {
  margin-bottom: 0;
}
.cid-SobnGczHlx .alert-success {
  background-color: #70c770;
}
.cid-SobnGczHlx .alert-danger {
  background-color: #ff4a52;
}
.cid-SobnGczHlx .btn {
  display: inline-flex;
}
.cid-SobnGczHlx .hidden {
  display: none;
}
.cid-SobnGczHlx .mbr-alert-success {
  text-align: center;
  color: #232323;
}
.cid-SobnGczHlx .mbr-alert-danger {
  text-align: center;
  color: #232323;
}
.cid-SobnGczHlx .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-SobnGczHlx input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-SobnGczHlx input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-SobnGczHlx input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-SobnGczHlx input,
.cid-SobnGczHlx textarea {
  background-color: #bbbbbb !important;
}
.cid-SobnGczHlx .form-control {
  border: 3.5px solid #6592e6 !important;
}
.cid-SobnGczHlx .form-control:hover {
  border: 3.5px solid #ffe161 !important;
}
.cid-SobnGczHlx .form-control:focus {
  border: 3.5px solid #ffe161 !important;
}
.cid-SobnGczHlx .mbr-section-title {
  color: #ffffff;
}
.cid-SobnGczHlx P {
  color: #fafafa;
  text-align: left;
}
.cid-SobnGczHlx .card-title {
  text-align: left;
  color: #ff0000;
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUuYoSpyQl {
  background-image: linear-gradient(0deg, #ff0000 10%, #12109f 100%) !important;
  padding-top: 60px;
  padding-bottom: 30px;
}
.cid-tUuYoSpyQl .row {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-tUuYoSpyQl .row .form-wrapper {
    margin-top: 1rem;
  }
}
.cid-tUuYoSpyQl .map-wrapper {
  margin-top: 1rem;
}
.cid-tUuYoSpyQl .form-wrapper {
  margin-top: 0rem;
}
.cid-tUuYoSpyQl .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tUuYoSpyQl .card-wrapper {
  display: flex;
  border-radius: 10px !important;
  background: #353535;
}
.cid-tUuYoSpyQl .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tUuYoSpyQl .card-wrapper {
    padding: 1rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUuYoSpyQl .card-wrapper {
    padding: 1rem 1rem;
  }
}
.cid-tUuYoSpyQl .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #6592e6;
}
.cid-tUuYoSpyQl .google-map {
  height: 20rem;
  position: relative;
}
.cid-tUuYoSpyQl .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px !important;
}
.cid-tUuYoSpyQl .google-map [data-state-details] {
  color: #ff0000;
  height: 1em;
  margin-top: 1em;
  padding-left: 1rem;
  padding-right: 1rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tUuYoSpyQl .google-map[data-state] {
  background: #ffb300;
}
.cid-tUuYoSpyQl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tUuYoSpyQl .showAlerts {
  display: block !important;
}
.cid-tUuYoSpyQl .rowflexrev {
  display: -webkit-flex;
}
.cid-tUuYoSpyQl .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tUuYoSpyQl .title {
  margin-bottom: 2rem;
}
.cid-tUuYoSpyQl .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tUuYoSpyQl textarea.form-control {
  min-height: 188px;
}
.cid-tUuYoSpyQl LABEL {
  color: #232323;
  display: initial;
}
.cid-tUuYoSpyQl .mbr-section-terms {
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.cid-tUuYoSpyQl .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tUuYoSpyQl .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tUuYoSpyQl .mbr-section-gdpr {
  text-align: center;
  color: #fafafa;
  margin-bottom: 0px;
}
.cid-tUuYoSpyQl .alert {
  margin-bottom: 0;
}
.cid-tUuYoSpyQl .alert-success {
  background-color: #70c770;
}
.cid-tUuYoSpyQl .alert-danger {
  background-color: #ff4a52;
}
.cid-tUuYoSpyQl .btn {
  display: inline-flex;
}
.cid-tUuYoSpyQl .hidden {
  display: none;
}
.cid-tUuYoSpyQl .mbr-alert-success {
  text-align: center;
  color: #232323;
}
.cid-tUuYoSpyQl .mbr-alert-danger {
  text-align: center;
  color: #232323;
}
.cid-tUuYoSpyQl .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tUuYoSpyQl input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tUuYoSpyQl input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tUuYoSpyQl input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tUuYoSpyQl input,
.cid-tUuYoSpyQl textarea {
  background-color: #bbbbbb !important;
}
.cid-tUuYoSpyQl .form-control {
  border: 3.5px solid #6592e6 !important;
}
.cid-tUuYoSpyQl .form-control:hover {
  border: 3.5px solid #ffe161 !important;
}
.cid-tUuYoSpyQl .form-control:focus {
  border: 3.5px solid #ffe161 !important;
}
.cid-tUuYoSpyQl .mbr-section-title {
  color: #ffffff;
}
.cid-tUuYoSpyQl P {
  color: #fafafa;
  text-align: left;
}
.cid-tUuYoSpyQl .card-title {
  text-align: left;
  color: #ff0000;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-WFdLXKMNLD {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-WFdLXKMNLD .table .name {
  padding-top: 24px;
}
.cid-WFdLXKMNLD .mbr-section-subtitle {
  color: #767676;
}
.cid-WFdLXKMNLD .container-table {
  margin: 0 auto;
}
.cid-WFdLXKMNLD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-WFdLXKMNLD .dataTables_wrapper {
  display: block;
}
.cid-WFdLXKMNLD .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-WFdLXKMNLD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-WFdLXKMNLD .table .thead-light th {
  background-color: #12109f;
  border-color: #12109f;
  color: #ffffff;
}
.cid-WFdLXKMNLD .table tr:hover {
  background-color: #bbbbbb;
  color: #fff;
}
.cid-WFdLXKMNLD table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #e43f3f;
  margin-bottom: 0;
}
.cid-WFdLXKMNLD table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-WFdLXKMNLD table th:hover {
  background: #e43f3f;
  color: #ffffff;
}
.cid-WFdLXKMNLD table td {
  border-top: 1px solid #e43f3f;
}
.cid-WFdLXKMNLD table.table {
  background: #ffffff;
}
.cid-WFdLXKMNLD .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-WFdLXKMNLD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-WFdLXKMNLD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-WFdLXKMNLD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-WFdLXKMNLD .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-WFdLXKMNLD .dataTables_filter {
    text-align: center;
  }
  .cid-WFdLXKMNLD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-WFdLXKMNLD .name head-item {
  color: #ffffff;
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tUw73dNhMX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tUw73dNhMX .process-area.bg-color .container {
  max-width: 1140px;
}
.cid-tUw73dNhMX .process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
}
.cid-tUw73dNhMX .process-item::before {
  position: absolute;
  height: 280px;
  content: "";
  width: 90%;
  background-color: #0a4a9a;
  left: 0;
  right: 0;
  margin: auto;
  top: -125px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUw73dNhMX .process-item .icon {
  margin-bottom: 20px;
  position: relative;
}
.cid-tUw73dNhMX .process-item .icon i {
  background-color: #fff;
  text-align: center;
  font-size: 50px;
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  color: #0a4a9a;
  border-radius: 50px;
  -webkit-transition: .5s;
  transition: 0.5s;
}
.cid-tUw73dNhMX .process-item h3 {
  margin-top: 75px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cid-tUw73dNhMX .process-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.cid-tUw73dNhMX .process-item:hover .icon i {
  background-color: #e73c3e;
  color: #ffffff;
}
.cid-tUw73dNhMX .process-item.bg-top1 {
  margin-top: 30px;
}
.cid-tUw73dNhMX .process-item.bg-top2 {
  margin-top: 0;
}
.cid-tUw73dNhMX .process-item.bg-top3 {
  margin-top: 0;
}
.cid-tUw73dNhMX .process-item.bg-top4 {
  margin-top: -30px;
}
.cid-tUw73dNhMX .process-item-two .text p {
  margin-bottom: 0;
  background-color: #ffffff;
}
.cid-tUw73dNhMX .section-title {
  text-align: center;
  margin-bottom: 45px;
}
.cid-tUw73dNhMX .section-title h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cid-tUw73dNhMX .section-title p {
  max-width: 570px;
  margin: auto;
}
.cid-tUw73dNhMX p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  font-family: roboto, sans-serif;
}
.cid-tUw73dNhMX H2 {
  color: #e43f3f;
}
.cid-tUw73dNhMX P {
  color: #353535;
}
.cid-tUw73dNhMX SPAN {
  color: #0a4a9a;
}
.cid-mPb2eE8J2H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-mPb2eE8J2H .header2 {
  text-align: center;
  margin: 0 -15px;
}
.cid-mPb2eE8J2H .header2 img {
  width: 100%;
  height: auto;
}
.cid-mPb2eE8J2H .header2 .header2-content {
  position: relative;
  background: #12109f;
  padding: 50px 30px 30px;
}
.cid-mPb2eE8J2H .header2 .header2-icon {
  display: block;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.cid-mPb2eE8J2H .header2 .header2-icon i {
  font-size: 30px;
  line-height: 70px;
  transform: rotate(-45deg);
}
.cid-mPb2eE8J2H .header2 .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.cid-mPb2eE8J2H .header2 .description {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 20px;
}
.cid-mPb2eE8J2H .header2 .read-more {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  transition: all 0.5s ease 0s;
}
.cid-mPb2eE8J2H .header2 .read-more:hover {
  text-decoration: none;
}
.cid-mPb2eE8J2H .header2.middle .header2-content {
  padding: 30px 30px 50px;
}
.cid-mPb2eE8J2H .header2.middle .header2-icon {
  bottom: -35px;
  top: auto;
}
@media only screen and (max-width: 990px) {
  .cid-mPb2eE8J2H .header2 .title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .cid-mPb2eE8J2H .header2 {
    margin: 0 0 30px 0;
  }
}
.cid-mPb2eE8J2H P {
  color: #ffffff;
}
.cid-mPb2eE8J2H H3 {
  color: #e6c63b;
}
.cid-mPb2eE8J2H .mbr-section-title {
  color: #fff0b0;
}
.cid-bTvtDjIYGw {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-bTvtDjIYGw .navbar-dropdown {
  position: relative !important;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  z-index: 1001;
}
.cid-bTvtDjIYGw .dropdown-item:hover,
.cid-bTvtDjIYGw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-bTvtDjIYGw .dropdown-item:hover span {
  color: white;
}
.cid-bTvtDjIYGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-bTvtDjIYGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-bTvtDjIYGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-bTvtDjIYGw .nav-link {
  position: relative;
}
.cid-bTvtDjIYGw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .container {
    flex-wrap: nowrap;
  }
}
.cid-bTvtDjIYGw .nav-item:focus,
.cid-bTvtDjIYGw .nav-link:focus {
  outline: none;
}
.cid-bTvtDjIYGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-bTvtDjIYGw .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  z-index: 110;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-bTvtDjIYGw .navbar.opened {
  transition: all 0.3s;
}
.cid-bTvtDjIYGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-bTvtDjIYGw .navbar .navbar-logo img {
  width: auto;
}
.cid-bTvtDjIYGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-bTvtDjIYGw .navbar.collapsed {
  justify-content: center;
}
.cid-bTvtDjIYGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-bTvtDjIYGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-bTvtDjIYGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-bTvtDjIYGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-bTvtDjIYGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-bTvtDjIYGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-bTvtDjIYGw .navbar.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 110;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-bTvtDjIYGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-bTvtDjIYGw .dropdown-item.active,
.cid-bTvtDjIYGw .dropdown-item:active {
  background-color: transparent;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-bTvtDjIYGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-bTvtDjIYGw .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-bTvtDjIYGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .navbar-buttons {
  min-width: 170px;
}
.cid-bTvtDjIYGw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-bTvtDjIYGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-bTvtDjIYGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-bTvtDjIYGw a.nav-link {
  display: flex;
}
.cid-bTvtDjIYGw .mbr-iconfont {
  color: #000000;
}
.cid-bTvtDjIYGw .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-bTvtDjIYGw .navbar {
    height: 70px;
  }
  .cid-bTvtDjIYGw .navbar.opened {
    height: auto;
  }
  .cid-bTvtDjIYGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-bTvtDjIYGw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-bTvtDjIYGw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-bTvtDjIYGw .social-row {
    justify-content: center;
  }
}
.cid-bTvtDjIYGw .floatleft {
  margin-left: auto !important;
}
.cid-bTvtDjIYGw .floatright {
  margin-right: auto !important;
}
.cid-bTvtDjIYGw .headerpadding {
  padding-top: 1%;
  padding-bottom: 1%;
}
@media (max-width: 991px) {
  .cid-bTvtDjIYGw .navbar-logo img {
    height: 3rem !important;
  }
  .cid-bTvtDjIYGw .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-bTvtDjIYGw .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-bTvtDjIYGw.navbar-short {
  min-height: 60px;
}
.cid-bTvtDjIYGw.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-bTvtDjIYGw.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-bTvtDjIYGw .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-bTvtDjIYGw .mbr-section-title {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .mbr-section-title span {
  color: #ffffff;
}
.cid-bTvtDjIYGw .mbr-section-title2 {
  color: #12109f;
}
.cid-bTvtDjIYGw p:hover {
  text-decoration: none !important;
}
.cid-bTvtDjIYGw .mbr-section-title2 span {
  color: #e43f3f;
}
.cid-bTvtDjIYGw .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-bTvtDjIYGw:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-bTvtDjIYGw .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-bTvtDjIYGw .mbr-text {
  color: #ffffff;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link:hover,
.cid-bTvtDjIYGw .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-bTvtDjIYGw .navbar-nav .nav-link {
  padding: 22px 15px;
  transition: .5s;
}
.cid-bTvtDjIYGw .bgtop {
  background-color: #12109f;
}
.cid-bTvtDjIYGw .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-bTvtDjIYGw .navbar-nav {
    display: block !important;
  }
  .cid-bTvtDjIYGw .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
}
.cid-bTvtDjIYGw .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tUvjxeMrYD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUvjxeMrYD .header2 {
  text-align: center;
  margin: 0 -15px;
}
.cid-tUvjxeMrYD .header2 img {
  width: 100%;
  height: auto;
}
.cid-tUvjxeMrYD .header2 .header2-content {
  position: relative;
  background: #e43f3f;
  padding: 50px 30px 30px;
}
.cid-tUvjxeMrYD .header2 .header2-icon {
  display: block;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.cid-tUvjxeMrYD .header2 .header2-icon i {
  font-size: 30px;
  line-height: 70px;
  transform: rotate(-45deg);
}
.cid-tUvjxeMrYD .header2 .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.cid-tUvjxeMrYD .header2 .description {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 20px;
}
.cid-tUvjxeMrYD .header2 .read-more {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  transition: all 0.5s ease 0s;
}
.cid-tUvjxeMrYD .header2 .read-more:hover {
  text-decoration: none;
}
.cid-tUvjxeMrYD .header2.middle .header2-content {
  padding: 30px 30px 50px;
}
.cid-tUvjxeMrYD .header2.middle .header2-icon {
  bottom: -35px;
  top: auto;
}
@media only screen and (max-width: 990px) {
  .cid-tUvjxeMrYD .header2 .title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .cid-tUvjxeMrYD .header2 {
    margin: 0 0 30px 0;
  }
}
.cid-tUvjxeMrYD P {
  color: #ffffff;
}
.cid-tUvjxeMrYD H3 {
  color: #e6c63b;
}
.cid-tUvjxeMrYD .mbr-section-title {
  color: #232323;
}
.cid-TQtJvMqlhu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-TQtJvMqlhu .colorcard2 {
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-TQtJvMqlhu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-TQtJvMqlhu .mbr-figure {
    padding-bottom: 3rem;
  }
}
.cid-TQtJvMqlhu P {
  text-align: left;
}
.cid-TQtJvMqlhu H1 {
  color: #232323;
}
.cid-TQtJvMqlhu H3 {
  color: #ff0000;
}
.cid-TQtJvMqlhu .mbr-text,
.cid-TQtJvMqlhu .mbr-section-btn {
  text-align: left;
}
.cid-TQtJvMqlhu .image-flip:hover .backside,
.cid-TQtJvMqlhu .image-flip.hover .backside {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: .25rem;
}
.cid-TQtJvMqlhu .image-flip:hover .frontside,
.cid-TQtJvMqlhu .image-flip.hover .frontside {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-TQtJvMqlhu .mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}
.cid-TQtJvMqlhu .frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}
.cid-TQtJvMqlhu .backside {
  position: absolute;
  top: 0;
  right: 30px;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 5px 7px 9px -4px #9e9e9e;
  -moz-box-shadow: 5px 7px 9px -4px #9e9e9e;
  box-shadow: 5px 7px 9px -4px #9e9e9e;
}
.cid-TQtJvMqlhu .frontside,
.cid-TQtJvMqlhu .backside {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}
.cid-TQtJvMqlhu .frontside .card,
.cid-TQtJvMqlhu .backside .card {
  min-height: 312px;
}
.cid-TQtJvMqlhu .backside .card a {
  font-size: 18px;
}
.cid-TQtJvMqlhu .frontside .card .card-body img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.cid-f0xQwlqxaT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-f0xQwlqxaT .xborder {
  border-style: solid;
  border-width: 0px 0px 0px 5px;
  border-color: #e43f3f;
  padding: 60px 60px 60px 60px;
  overflow: visible;
  background-color: #ffffff;
}
.cid-f0xQwlqxaT .btn {
  padding: 15px 55px 15px 55px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 5px 5px 5px 5px;
  float: right;
  margin-top: 65px;
  box-shadow: 29px 29px 60px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.cid-f0xQwlqxaT .section-title span {
  color: #e43f3f;
}
.cid-f0xQwlqxaT P {
  color: #353535;
}
@media only screen and (max-width: 480px) {
  .cid-f0xQwlqxaT .btn {
    float: left !important;
    padding: 6px !important;
  }
}
@media only screen and (max-width: 800px) {
  .cid-f0xQwlqxaT .btn {
    float: left !important;
    padding: 14px;
  }
}
.cid-f0xQwlqxaT .section-title {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  margin-bottom: 20px;
}
.cid-f0xQwlqxaT .border-divider {
  margin: auto;
  height: 4px;
  width: 30px;
  background: #2575fc;
  border-radius: 2px;
  position: relative;
  left: 13px;
}
.cid-f0xQwlqxaT .border-divider::before {
  content: "";
  left: -27px;
  position: absolute;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #2575fc;
  -webkit-box-shadow: 9px 0 0 0 #2575fc, 18px 0 0 0 #2575fc;
  box-shadow: 9px 0 0 0 #2575fc, 18px 0 0 0 #2575fc;
}
.cid-f0xQwlqxaT .mbr-text {
  color: #353535;
}
.cid-tUtTMRyq2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #12109f;
}
.cid-tUtTMRyq2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUtTMRyq2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUtTMRyq2n .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tUtTMRyq2n .row {
    text-align: center;
  }
  .cid-tUtTMRyq2n .row > div {
    margin: auto;
  }
  .cid-tUtTMRyq2n .social-row {
    justify-content: center;
  }
}
.cid-tUtTMRyq2n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUtTMRyq2n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUtTMRyq2n .list {
    margin-bottom: 0rem;
  }
}
.cid-tUtTMRyq2n .mbr-text {
  color: #ffffff;
}
.cid-tUtTMRyq2n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tUtTMRyq2n .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tUtTMRyq2n div > *:last-child {
    margin-top: 0 !important;
  }
}
