body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4d136a !important;
}
.bg-success {
  background-color: #f8d45d !important;
}
.bg-info {
  background-color: #6acbae !important;
}
.bg-warning {
  background-color: #4faa6f !important;
}
.bg-danger {
  background-color: #f22b4e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d136a !important;
  border-color: #4d136a !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: #180620 !important;
  border-color: #180620 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #180620 !important;
  border-color: #180620 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dc5069 !important;
  border-color: #dc5069 !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: #b2243d !important;
  border-color: #b2243d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b2243d !important;
  border-color: #b2243d !important;
}
.btn-info,
.btn-info:active {
  background-color: #6acbae !important;
  border-color: #6acbae !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: #3aa585 !important;
  border-color: #3aa585 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3aa585 !important;
  border-color: #3aa585 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f8d45d !important;
  border-color: #f8d45d !important;
  color: #524004 !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: #f4be0b !important;
  border-color: #f4be0b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #524004 !important;
  background-color: #f4be0b !important;
  border-color: #f4be0b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4faa6f !important;
  border-color: #4faa6f !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: #336f48 !important;
  border-color: #336f48 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #336f48 !important;
  border-color: #336f48 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f22b4e !important;
  border-color: #f22b4e !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: #bb0b2a !important;
  border-color: #bb0b2a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #bb0b2a !important;
  border-color: #bb0b2a !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: #4d136a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #180620 !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: #4d136a !important;
  border-color: #4d136a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dc5069;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b2243d !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: #dc5069 !important;
  border-color: #dc5069 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6acbae;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3aa585 !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: #6acbae !important;
  border-color: #6acbae !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f8d45d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #f4be0b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #524004 !important;
  background-color: #f8d45d !important;
  border-color: #f8d45d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4faa6f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #336f48 !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: #4faa6f !important;
  border-color: #4faa6f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f22b4e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #bb0b2a !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: #f22b4e !important;
  border-color: #f22b4e !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: #4d136a !important;
}
.text-secondary {
  color: #dc5069 !important;
}
.text-success {
  color: #f8d45d !important;
}
.text-info {
  color: #6acbae !important;
}
.text-warning {
  color: #4faa6f !important;
}
.text-danger {
  color: #f22b4e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0e0314 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a52139 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e5b20a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #36997c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2f6442 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ac0b27 !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: #4d136a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6acbae;
}
.alert-warning {
  background-color: #4faa6f;
}
.alert-danger {
  background-color: #f22b4e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4d136a;
  border-color: #4d136a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4d136a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9c26d6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a4d5b5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #feebee;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4d136a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4d136a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d136a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d136a;
}
.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: #4d136a;
  border-bottom-color: #4d136a;
}
.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: #4d136a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #dc5069 !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='%234d136a' %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-tdUgIC88P6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdUgIC88P6 nav.navbar {
  position: fixed;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdUgIC88P6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdUgIC88P6 .dropdown-item:hover,
.cid-tdUgIC88P6 .dropdown-item:focus {
  background: #4d136a !important;
  color: white !important;
}
.cid-tdUgIC88P6 .dropdown-item:hover span {
  color: white;
}
.cid-tdUgIC88P6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdUgIC88P6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdUgIC88P6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdUgIC88P6 .nav-link {
  position: relative;
}
.cid-tdUgIC88P6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tdUgIC88P6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown-menu,
.cid-tdUgIC88P6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdUgIC88P6 .nav-item:focus,
.cid-tdUgIC88P6 .nav-link:focus {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdUgIC88P6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdUgIC88P6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdUgIC88P6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdUgIC88P6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdUgIC88P6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar.collapsed {
  justify-content: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdUgIC88P6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdUgIC88P6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdUgIC88P6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdUgIC88P6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdUgIC88P6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdUgIC88P6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tdUgIC88P6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdUgIC88P6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown-item.active,
.cid-tdUgIC88P6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdUgIC88P6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdUgIC88P6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdUgIC88P6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdUgIC88P6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdUgIC88P6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #4d136a;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdUgIC88P6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar {
    height: 70px;
  }
  .cid-tdUgIC88P6 .navbar.opened {
    height: auto;
  }
  .cid-tdUgIC88P6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sol02MkdHT {
  padding-top: 225px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flomac-7-1920x1080.png");
}
.cid-sol02MkdHT .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sol02MkdHT .container {
  max-width: 1500px;
}
.cid-sol02MkdHT .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sol02MkdHT .container {
    padding: 0 4rem;
  }
}
.cid-sol02MkdHT .mbr-text,
.cid-sol02MkdHT .mbr-section-btn {
  color: #efeeee;
}
.cid-sol02MkdHT .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
  justify-content: space-between;
}
.cid-sol02MkdHT .btn .mbr-iconfont {
  order: 2;
}
.cid-sol02MkdHT .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-sol02MkdHT .align-left {
    text-align: center;
  }
  .cid-sol02MkdHT .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-srV9jcize8 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-stTfgilhQy {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/flomac-8-1920x1080.png");
}
@media (min-width: 1500px) {
  .cid-stTfgilhQy .container {
    max-width: 1400px;
  }
}
@media (min-width: 767px) {
  .cid-stTfgilhQy .container-fluid {
    padding: 0 3rem;
  }
}
.cid-stTfgilhQy .card1 {
  background: #ffffff;
}
.cid-stTfgilhQy .card2 {
  background: #ffffff;
}
.cid-stTfgilhQy .card3 {
  background: #ffffff;
}
.cid-stTfgilhQy .card4 {
  background: #ffffff;
}
.cid-stTfgilhQy .card5 {
  background: #ffffff;
}
.cid-stTfgilhQy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d136a;
  margin-bottom: 2rem;
}
.cid-stTfgilhQy .card-wrapper {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cid-stTfgilhQy .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-stTfgilhQy .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-stTfgilhQy .col-lg-3 {
    max-width: 20%;
  }
}
.cid-stTfgilhQy .mbr-section-title {
  color: #ffffff;
}
.cid-stTfgilhQy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stTfgilhQy .card-title,
.cid-stTfgilhQy .iconfont-wrapper {
  color: #4d136a;
}
.cid-stTfgilhQy .card-text {
  color: #4d136a;
}
.cid-tdUk26Igaj {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdUk26Igaj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdUk26Igaj .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tdUk26Igaj .carousel-item .wrap-img {
  text-align: center;
}
.cid-tdUk26Igaj .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-tdUk26Igaj .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #4d136a;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-tdUk26Igaj .carousel-control.carousel-control-prev {
  left: 29px;
}
.cid-tdUk26Igaj .carousel-control.carousel-control-prev:hover {
  left: 15px;
}
.cid-tdUk26Igaj .carousel-control.carousel-control-next {
  right: 29px;
}
.cid-tdUk26Igaj .carousel-control.carousel-control-next:hover {
  right: 15px;
}
.cid-tdUk26Igaj .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-tdUk26Igaj .carousel-control:hover {
  background-color: #4d136a;
}
@media (max-width: 767px) {
  .cid-tdUk26Igaj .carousel-control {
    display: none;
  }
  .cid-tdUk26Igaj .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-tdUk26Igaj .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-tdUk26Igaj .cloneditem-1,
.cid-tdUk26Igaj .cloneditem-2,
.cid-tdUk26Igaj .cloneditem-3,
.cid-tdUk26Igaj .cloneditem-4,
.cid-tdUk26Igaj .cloneditem-5 {
  display: none;
}
.cid-tdUk26Igaj .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tdUk26Igaj .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides2 .cloneditem-1,
  .cid-tdUk26Igaj .carousel-inner.slides2 .cloneditem-2,
  .cid-tdUk26Igaj .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides3 .cloneditem-1,
  .cid-tdUk26Igaj .carousel-inner.slides3 .cloneditem-2,
  .cid-tdUk26Igaj .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides4 .cloneditem-1,
  .cid-tdUk26Igaj .carousel-inner.slides4 .cloneditem-2,
  .cid-tdUk26Igaj .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides5 .cloneditem-1,
  .cid-tdUk26Igaj .carousel-inner.slides5 .cloneditem-2,
  .cid-tdUk26Igaj .carousel-inner.slides5 .cloneditem-3,
  .cid-tdUk26Igaj .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tdUk26Igaj .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-tdUk26Igaj .carousel-inner.slides6 .cloneditem-1,
  .cid-tdUk26Igaj .carousel-inner.slides6 .cloneditem-2,
  .cid-tdUk26Igaj .carousel-inner.slides6 .cloneditem-3,
  .cid-tdUk26Igaj .carousel-inner.slides6 .cloneditem-4,
  .cid-tdUk26Igaj .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-tdUk26Igaj .mbr-section-title {
  margin: 0;
}
.cid-tdUk26Igaj .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tdUk26Igaj .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tdUk26Igaj .slider-clients {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdUk26Igaj .slider-clients {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-tdUk26Igaj .carousel-control-prev {
    left: 15px !important;
  }
  .cid-tdUk26Igaj .carousel-control-prev:hover {
    left: 0 !important;
  }
  .cid-tdUk26Igaj .carousel-control-next {
    right: 15px !important;
  }
  .cid-tdUk26Igaj .carousel-control-next:hover {
    right: 0 !important;
  }
}
.cid-son5ufXZD4 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-10-1920x1080.png");
}
.cid-son5ufXZD4 h2,
.cid-son5ufXZD4 h3,
.cid-son5ufXZD4 h4,
.cid-son5ufXZD4 p {
  color: #ffffff;
}
.cid-son5ufXZD4 .mbr-overlay {
  z-index: -1;
}
.cid-son5ufXZD4 .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-son5ufXZD4 .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-son5ufXZD4 .form-control:focus,
.cid-son5ufXZD4 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-son5ufXZD4 .form-group {
  margin-bottom: 1rem;
}
.cid-son5ufXZD4 input::-webkit-input-placeholder,
.cid-son5ufXZD4 textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-son5ufXZD4 input:-moz-placeholder,
.cid-son5ufXZD4 textarea:-moz-placeholder {
  color: #656565;
}
.cid-son5ufXZD4 .jq-selectbox li,
.cid-son5ufXZD4 .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-son5ufXZD4 .jq-selectbox li:hover,
.cid-son5ufXZD4 .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-son5ufXZD4 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-son5ufXZD4 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-son5ufXZD4 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-son5ufXZD4 .mbr-text {
  color: #767676;
}
.cid-son5ufXZD4 .form-block {
  padding: 3rem;
  position: relative;
}
.cid-son5ufXZD4 .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-son5ufXZD4 .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-son5ufXZD4 a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-son5ufXZD4 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-son5ufXZD4 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-son5ufXZD4 textarea.form-control {
  resize: none;
}
.cid-son5ufXZD4 .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-son5ufXZD4 .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-son5ufXZD4 .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-son5ufXZD4 .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-son5ufXZD4 h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-son5ufXZD4 .block-content {
    padding: 0;
  }
  .cid-son5ufXZD4 .form-block {
    padding: 1rem;
  }
}
.cid-son5ufXZD4 H4 {
  text-align: center;
}
.cid-son5ufXZD4 .mbr-section-subtitle {
  text-align: left;
}
.cid-son5ufXZD4 .mbr-section-title,
.cid-son5ufXZD4 .mbr-section-btn {
  text-align: left;
}
.cid-son5ufXZD4 P {
  text-align: left;
}
.cid-srP906F4fT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srP906F4fT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-srP906F4fT .row {
    text-align: center;
  }
  .cid-srP906F4fT .row > div {
    margin: auto;
  }
  .cid-srP906F4fT .social-row {
    justify-content: center;
  }
}
.cid-srP906F4fT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-srP906F4fT .list {
  list-style: none;
  padding-left: 0;
  color: #4d136a;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srP906F4fT .list {
    margin-bottom: 0rem;
  }
}
.cid-srP906F4fT .mbr-text {
  color: #000000;
}
.cid-srP906F4fT .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-srP906F4fT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-srP906F4fT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-srP906F4fT .mbr-section-subtitle {
  color: #4d136a;
}
.cid-srP906F4fT H5 {
  color: #4d136a;
}
.cid-stNC0Hz97w {
  padding-top: 16rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/flomac-14-1920x1080.png");
}
.cid-stNC0Hz97w .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-stNC0Hz97w .row {
    flex-direction: column-reverse;
  }
  .cid-stNC0Hz97w .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-stNC0Hz97w .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-stNC0Hz97w .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-stNC0Hz97w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-stNC0Hz97w .mbr-text,
.cid-stNC0Hz97w .mbr-section-btn {
  color: #ffffff;
}
.cid-stNC0Hz97w .card-title {
  color: #ffffff;
}
.cid-ssyQHgxQVj {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ssyQHgxQVj .mbr-text {
  text-align: center;
}
.cid-ssyQHgxQVj .mbr-section-subtitle {
  text-align: center;
}
.cid-ssyQIAzuZu {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/flomac-2-1920x1080.png");
}
@media (min-width: 1500px) {
  .cid-ssyQIAzuZu .container {
    max-width: 1400px;
  }
}
@media (min-width: 767px) {
  .cid-ssyQIAzuZu .container-fluid {
    padding: 0 3rem;
  }
}
.cid-ssyQIAzuZu .card1 {
  background: #dc5069;
}
.cid-ssyQIAzuZu .card2 {
  background: #4faa6f;
}
.cid-ssyQIAzuZu .card3 {
  background: #f8d45d;
}
.cid-ssyQIAzuZu .card3 .mbr-iconfont {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .mbr-section-title {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .card-title,
.cid-ssyQIAzuZu .card3 .iconfont-wrapper {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .card-text {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .link {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card3 .card-text,
.cid-ssyQIAzuZu .card3 .link {
  color: #5e5e5e;
}
.cid-ssyQIAzuZu .card4 {
  background: #dc5069;
}
.cid-ssyQIAzuZu .card5 {
  background: #6acbae;
}
.cid-ssyQIAzuZu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ssyQIAzuZu .card-wrapper {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cid-ssyQIAzuZu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ssyQIAzuZu .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-ssyQIAzuZu .col-lg-3 {
    max-width: 20%;
  }
}
.cid-ssyQIAzuZu .mbr-section-title {
  color: #ffffff;
}
.cid-ssyQIAzuZu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ssyQIAzuZu .card-title,
.cid-ssyQIAzuZu .iconfont-wrapper {
  color: #ffffff;
}
.cid-ssyQIAzuZu .card-text {
  color: #082c4e;
}
.cid-ssyQIAzuZu .link {
  color: #ffffff;
}
.cid-ssyQIAzuZu .card-text,
.cid-ssyQIAzuZu .link {
  color: #ffffff;
}
.cid-stT76mBHJB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-stT76mBHJB .row {
  flex-direction: row-reverse;
}
.cid-stT76mBHJB .video-wrapper iframe {
  width: 100%;
}
.cid-stT76mBHJB .mbr-section-title,
.cid-stT76mBHJB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-stT76mBHJB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sopZGAxSqw {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-7-1920x1080.png");
}
.cid-sopZGAxSqw h2,
.cid-sopZGAxSqw h3,
.cid-sopZGAxSqw h4,
.cid-sopZGAxSqw p {
  color: #ffffff;
}
.cid-sopZGAxSqw .mbr-overlay {
  z-index: -1;
}
.cid-sopZGAxSqw .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sopZGAxSqw .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sopZGAxSqw .form-control:focus,
.cid-sopZGAxSqw .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sopZGAxSqw .form-group {
  margin-bottom: 1rem;
}
.cid-sopZGAxSqw input::-webkit-input-placeholder,
.cid-sopZGAxSqw textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sopZGAxSqw input:-moz-placeholder,
.cid-sopZGAxSqw textarea:-moz-placeholder {
  color: #656565;
}
.cid-sopZGAxSqw .jq-selectbox li,
.cid-sopZGAxSqw .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sopZGAxSqw .jq-selectbox li:hover,
.cid-sopZGAxSqw .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sopZGAxSqw .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sopZGAxSqw .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sopZGAxSqw .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sopZGAxSqw .mbr-text {
  color: #767676;
}
.cid-sopZGAxSqw .form-block {
  padding: 3rem;
  position: relative;
}
.cid-sopZGAxSqw .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-sopZGAxSqw .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-sopZGAxSqw a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sopZGAxSqw .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sopZGAxSqw .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sopZGAxSqw textarea.form-control {
  resize: none;
}
.cid-sopZGAxSqw .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-sopZGAxSqw .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sopZGAxSqw .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sopZGAxSqw .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sopZGAxSqw h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sopZGAxSqw .block-content {
    padding: 0;
  }
  .cid-sopZGAxSqw .form-block {
    padding: 1rem;
  }
}
.cid-sopZGAxSqw H4 {
  text-align: center;
}
.cid-sopZGAxSqw .mbr-section-subtitle {
  text-align: left;
}
.cid-sopZGAxSqw .mbr-section-title,
.cid-sopZGAxSqw .mbr-section-btn {
  text-align: left;
}
.cid-sopZGAxSqw P {
  text-align: left;
}
.cid-srP906F4fT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srP906F4fT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-srP906F4fT .row {
    text-align: center;
  }
  .cid-srP906F4fT .row > div {
    margin: auto;
  }
  .cid-srP906F4fT .social-row {
    justify-content: center;
  }
}
.cid-srP906F4fT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-srP906F4fT .list {
  list-style: none;
  padding-left: 0;
  color: #4d136a;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srP906F4fT .list {
    margin-bottom: 0rem;
  }
}
.cid-srP906F4fT .mbr-text {
  color: #000000;
}
.cid-srP906F4fT .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-srP906F4fT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-srP906F4fT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-srP906F4fT .mbr-section-subtitle {
  color: #4d136a;
}
.cid-srP906F4fT H5 {
  color: #4d136a;
}
.cid-tdUgIC88P6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdUgIC88P6 nav.navbar {
  position: fixed;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdUgIC88P6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdUgIC88P6 .dropdown-item:hover,
.cid-tdUgIC88P6 .dropdown-item:focus {
  background: #4d136a !important;
  color: white !important;
}
.cid-tdUgIC88P6 .dropdown-item:hover span {
  color: white;
}
.cid-tdUgIC88P6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdUgIC88P6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdUgIC88P6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdUgIC88P6 .nav-link {
  position: relative;
}
.cid-tdUgIC88P6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tdUgIC88P6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown-menu,
.cid-tdUgIC88P6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdUgIC88P6 .nav-item:focus,
.cid-tdUgIC88P6 .nav-link:focus {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdUgIC88P6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdUgIC88P6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdUgIC88P6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdUgIC88P6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdUgIC88P6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar.collapsed {
  justify-content: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdUgIC88P6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdUgIC88P6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdUgIC88P6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdUgIC88P6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdUgIC88P6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdUgIC88P6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tdUgIC88P6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdUgIC88P6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown-item.active,
.cid-tdUgIC88P6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdUgIC88P6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdUgIC88P6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdUgIC88P6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdUgIC88P6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdUgIC88P6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #4d136a;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdUgIC88P6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar {
    height: 70px;
  }
  .cid-tdUgIC88P6 .navbar.opened {
    height: auto;
  }
  .cid-tdUgIC88P6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ssyRrtuFjT {
  padding-top: 165px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-9-1920x1080.png");
}
.cid-ssyRrtuFjT .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-ssyRrtuFjT .container {
  max-width: 1500px;
}
.cid-ssyRrtuFjT .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-ssyRrtuFjT .container {
    padding: 0 4rem;
  }
}
.cid-ssyRrtuFjT .mbr-text,
.cid-ssyRrtuFjT .mbr-section-btn {
  color: #efeeee;
}
.cid-ssyRrtuFjT .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
  justify-content: space-between;
}
.cid-ssyRrtuFjT .btn .mbr-iconfont {
  order: 2;
}
.cid-ssyRrtuFjT .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-ssyRrtuFjT .align-left {
    text-align: center;
  }
  .cid-ssyRrtuFjT .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-stSX0OfuuO {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stSX0OfuuO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stSX0OfuuO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stSX0OfuuO .text-wrapper {
    padding: 2rem;
  }
}
.cid-st2UnZq4bt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/flomac-6-1920x1080.png");
}
@media (max-width: 991px) {
  .cid-st2UnZq4bt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-st2UnZq4bt .row {
  flex-direction: row-reverse;
}
.cid-st2UnZq4bt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-st2UnZq4bt .text-wrapper {
    padding: 2rem;
  }
}
.cid-st2UnZq4bt .mbr-section-title {
  color: #ffffff;
}
.cid-st2UnZq4bt .mbr-text {
  color: #ffffff;
}
.cid-st2Uqh2Mn2 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-st2Uqh2Mn2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-st2Uqh2Mn2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-st2Uqh2Mn2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-st2VLA1k7q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/flomac-6-1920x1080.png");
}
@media (max-width: 991px) {
  .cid-st2VLA1k7q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-st2VLA1k7q .row {
  flex-direction: row-reverse;
}
.cid-st2VLA1k7q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-st2VLA1k7q .text-wrapper {
    padding: 2rem;
  }
}
.cid-st2VLA1k7q .mbr-section-title {
  color: #ffffff;
}
.cid-st2VLA1k7q .mbr-text {
  color: #ffffff;
}
.cid-st2WhYUmVR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st2WhYUmVR .mbr-section-title {
  letter-spacing: .1em;
}
.cid-st2WhYUmVR .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-st2WhYUmVR .card-img span {
  font-size: 100px;
}
.cid-st2WhYUmVR .mbr-text,
.cid-st2WhYUmVR .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-st2WhYUmVR .mbr-section-title,
.cid-st2WhYUmVR .card-img {
  color: #232323;
  text-align: center;
}
.cid-st2WivVVa9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-st2WivVVa9 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-st2WivVVa9 .container {
    max-width: 1400px;
  }
}
.cid-st2WivVVa9 .card {
  margin: auto;
}
.cid-st2WivVVa9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d136a;
  margin-bottom: 2rem;
}
.cid-st2WivVVa9 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-st2WivVVa9 .row {
  justify-content: center;
}
.cid-st2WivVVa9 H3 {
  color: #232323;
}
.cid-st2WivVVa9 .card-title,
.cid-st2WivVVa9 .card-box {
  color: #232323;
}
.cid-ssz0dGTHRc {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-10-1920x1080.png");
}
.cid-ssz0dGTHRc h2,
.cid-ssz0dGTHRc h3,
.cid-ssz0dGTHRc h4,
.cid-ssz0dGTHRc p {
  color: #ffffff;
}
.cid-ssz0dGTHRc .mbr-overlay {
  z-index: -1;
}
.cid-ssz0dGTHRc .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-ssz0dGTHRc .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-ssz0dGTHRc .form-control:focus,
.cid-ssz0dGTHRc .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-ssz0dGTHRc .form-group {
  margin-bottom: 1rem;
}
.cid-ssz0dGTHRc input::-webkit-input-placeholder,
.cid-ssz0dGTHRc textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-ssz0dGTHRc input:-moz-placeholder,
.cid-ssz0dGTHRc textarea:-moz-placeholder {
  color: #656565;
}
.cid-ssz0dGTHRc .jq-selectbox li,
.cid-ssz0dGTHRc .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-ssz0dGTHRc .jq-selectbox li:hover,
.cid-ssz0dGTHRc .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-ssz0dGTHRc .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-ssz0dGTHRc .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-ssz0dGTHRc .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssz0dGTHRc .mbr-text {
  color: #767676;
}
.cid-ssz0dGTHRc .form-block {
  padding: 3rem;
  position: relative;
}
.cid-ssz0dGTHRc .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-ssz0dGTHRc .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-ssz0dGTHRc a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-ssz0dGTHRc .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-ssz0dGTHRc .input-group-btn {
  display: block;
  text-align: center;
}
.cid-ssz0dGTHRc textarea.form-control {
  resize: none;
}
.cid-ssz0dGTHRc .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-ssz0dGTHRc .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-ssz0dGTHRc .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ssz0dGTHRc .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssz0dGTHRc h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-ssz0dGTHRc .block-content {
    padding: 0;
  }
  .cid-ssz0dGTHRc .form-block {
    padding: 1rem;
  }
}
.cid-ssz0dGTHRc H4 {
  text-align: center;
}
.cid-ssz0dGTHRc .mbr-section-subtitle {
  text-align: left;
}
.cid-ssz0dGTHRc .mbr-section-title,
.cid-ssz0dGTHRc .mbr-section-btn {
  text-align: left;
}
.cid-ssz0dGTHRc P {
  text-align: left;
}
.cid-srP906F4fT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srP906F4fT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-srP906F4fT .row {
    text-align: center;
  }
  .cid-srP906F4fT .row > div {
    margin: auto;
  }
  .cid-srP906F4fT .social-row {
    justify-content: center;
  }
}
.cid-srP906F4fT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-srP906F4fT .list {
  list-style: none;
  padding-left: 0;
  color: #4d136a;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srP906F4fT .list {
    margin-bottom: 0rem;
  }
}
.cid-srP906F4fT .mbr-text {
  color: #000000;
}
.cid-srP906F4fT .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-srP906F4fT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-srP906F4fT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-srP906F4fT .mbr-section-subtitle {
  color: #4d136a;
}
.cid-srP906F4fT H5 {
  color: #4d136a;
}
.cid-tdUgIC88P6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdUgIC88P6 nav.navbar {
  position: fixed;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdUgIC88P6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdUgIC88P6 .dropdown-item:hover,
.cid-tdUgIC88P6 .dropdown-item:focus {
  background: #4d136a !important;
  color: white !important;
}
.cid-tdUgIC88P6 .dropdown-item:hover span {
  color: white;
}
.cid-tdUgIC88P6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdUgIC88P6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdUgIC88P6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdUgIC88P6 .nav-link {
  position: relative;
}
.cid-tdUgIC88P6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tdUgIC88P6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown-menu,
.cid-tdUgIC88P6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdUgIC88P6 .nav-item:focus,
.cid-tdUgIC88P6 .nav-link:focus {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdUgIC88P6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdUgIC88P6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdUgIC88P6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdUgIC88P6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdUgIC88P6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar.collapsed {
  justify-content: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdUgIC88P6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdUgIC88P6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdUgIC88P6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdUgIC88P6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdUgIC88P6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdUgIC88P6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tdUgIC88P6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdUgIC88P6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown-item.active,
.cid-tdUgIC88P6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdUgIC88P6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdUgIC88P6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdUgIC88P6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdUgIC88P6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdUgIC88P6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #4d136a;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdUgIC88P6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar {
    height: 70px;
  }
  .cid-tdUgIC88P6 .navbar.opened {
    height: auto;
  }
  .cid-tdUgIC88P6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ssz0M2NxsQ {
  padding-top: 225px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flomac-7-1920x1080.png");
}
.cid-ssz0M2NxsQ .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-ssz0M2NxsQ .container {
  max-width: 1500px;
}
.cid-ssz0M2NxsQ .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-ssz0M2NxsQ .container {
    padding: 0 4rem;
  }
}
.cid-ssz0M2NxsQ .mbr-text,
.cid-ssz0M2NxsQ .mbr-section-btn {
  color: #efeeee;
}
.cid-ssz0M2NxsQ .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
  justify-content: space-between;
}
.cid-ssz0M2NxsQ .btn .mbr-iconfont {
  order: 2;
}
.cid-ssz0M2NxsQ .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-ssz0M2NxsQ .align-left {
    text-align: center;
  }
  .cid-ssz0M2NxsQ .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-ssz0EVyqFJ {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-10-1920x1080.png");
}
.cid-ssz0EVyqFJ h2,
.cid-ssz0EVyqFJ h3,
.cid-ssz0EVyqFJ h4,
.cid-ssz0EVyqFJ p {
  color: #ffffff;
}
.cid-ssz0EVyqFJ .mbr-overlay {
  z-index: -1;
}
.cid-ssz0EVyqFJ .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-ssz0EVyqFJ .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-ssz0EVyqFJ .form-control:focus,
.cid-ssz0EVyqFJ .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-ssz0EVyqFJ .form-group {
  margin-bottom: 1rem;
}
.cid-ssz0EVyqFJ input::-webkit-input-placeholder,
.cid-ssz0EVyqFJ textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-ssz0EVyqFJ input:-moz-placeholder,
.cid-ssz0EVyqFJ textarea:-moz-placeholder {
  color: #656565;
}
.cid-ssz0EVyqFJ .jq-selectbox li,
.cid-ssz0EVyqFJ .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-ssz0EVyqFJ .jq-selectbox li:hover,
.cid-ssz0EVyqFJ .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-ssz0EVyqFJ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-ssz0EVyqFJ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-ssz0EVyqFJ .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-ssz0EVyqFJ .mbr-text {
  color: #767676;
}
.cid-ssz0EVyqFJ .form-block {
  padding: 3rem;
  position: relative;
}
.cid-ssz0EVyqFJ .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-ssz0EVyqFJ .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-ssz0EVyqFJ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-ssz0EVyqFJ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-ssz0EVyqFJ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-ssz0EVyqFJ textarea.form-control {
  resize: none;
}
.cid-ssz0EVyqFJ .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-ssz0EVyqFJ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-ssz0EVyqFJ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ssz0EVyqFJ .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssz0EVyqFJ h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-ssz0EVyqFJ .block-content {
    padding: 0;
  }
  .cid-ssz0EVyqFJ .form-block {
    padding: 1rem;
  }
}
.cid-ssz0EVyqFJ H4 {
  text-align: center;
}
.cid-ssz0EVyqFJ .mbr-section-subtitle {
  text-align: left;
}
.cid-ssz0EVyqFJ .mbr-section-title,
.cid-ssz0EVyqFJ .mbr-section-btn {
  text-align: left;
}
.cid-ssz0EVyqFJ P {
  text-align: left;
}
.cid-srP906F4fT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srP906F4fT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-srP906F4fT .row {
    text-align: center;
  }
  .cid-srP906F4fT .row > div {
    margin: auto;
  }
  .cid-srP906F4fT .social-row {
    justify-content: center;
  }
}
.cid-srP906F4fT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-srP906F4fT .list {
  list-style: none;
  padding-left: 0;
  color: #4d136a;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srP906F4fT .list {
    margin-bottom: 0rem;
  }
}
.cid-srP906F4fT .mbr-text {
  color: #000000;
}
.cid-srP906F4fT .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-srP906F4fT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-srP906F4fT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-srP906F4fT .mbr-section-subtitle {
  color: #4d136a;
}
.cid-srP906F4fT H5 {
  color: #4d136a;
}
.cid-tdUgIC88P6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdUgIC88P6 nav.navbar {
  position: fixed;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdUgIC88P6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdUgIC88P6 .dropdown-item:hover,
.cid-tdUgIC88P6 .dropdown-item:focus {
  background: #4d136a !important;
  color: white !important;
}
.cid-tdUgIC88P6 .dropdown-item:hover span {
  color: white;
}
.cid-tdUgIC88P6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdUgIC88P6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdUgIC88P6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdUgIC88P6 .nav-link {
  position: relative;
}
.cid-tdUgIC88P6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tdUgIC88P6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown-menu,
.cid-tdUgIC88P6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdUgIC88P6 .nav-item:focus,
.cid-tdUgIC88P6 .nav-link:focus {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdUgIC88P6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdUgIC88P6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdUgIC88P6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdUgIC88P6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdUgIC88P6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar.collapsed {
  justify-content: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdUgIC88P6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdUgIC88P6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdUgIC88P6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdUgIC88P6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdUgIC88P6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdUgIC88P6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tdUgIC88P6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdUgIC88P6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown-item.active,
.cid-tdUgIC88P6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdUgIC88P6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdUgIC88P6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdUgIC88P6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdUgIC88P6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdUgIC88P6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #4d136a;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdUgIC88P6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar {
    height: 70px;
  }
  .cid-tdUgIC88P6 .navbar.opened {
    height: auto;
  }
  .cid-tdUgIC88P6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-st338dYaol {
  padding-top: 225px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flomac-7-1920x1080.png");
}
.cid-st338dYaol .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-st338dYaol .container {
  max-width: 1500px;
}
.cid-st338dYaol .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-st338dYaol .container {
    padding: 0 4rem;
  }
}
.cid-st338dYaol .mbr-text,
.cid-st338dYaol .mbr-section-btn {
  color: #efeeee;
}
.cid-st338dYaol .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
  justify-content: space-between;
}
.cid-st338dYaol .btn .mbr-iconfont {
  order: 2;
}
.cid-st338dYaol .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-st338dYaol .align-left {
    text-align: center;
  }
  .cid-st338dYaol .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-stTrid3hGl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stTrid3hGl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stTrid3hGl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stTrid3hGl .text-wrapper {
    padding: 2rem;
  }
}
.cid-stTwRZvr56 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/liquidmetalflomac-1-1920x1080.png");
}
@media (max-width: 991px) {
  .cid-stTwRZvr56 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stTwRZvr56 .row {
  flex-direction: row-reverse;
}
.cid-stTwRZvr56 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stTwRZvr56 .text-wrapper {
    padding: 2rem;
  }
}
.cid-stTwRZvr56 .mbr-text {
  color: #ffffff;
}
.cid-stTwRZvr56 .mbr-section-title {
  color: #ffffff;
}
.cid-stTxi8xjjn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stTxi8xjjn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stTxi8xjjn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stTxi8xjjn .text-wrapper {
    padding: 2rem;
  }
}
.cid-stTxlXHXUI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/liquidmetalflomac-1-1920x1080.png");
}
@media (max-width: 991px) {
  .cid-stTxlXHXUI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stTxlXHXUI .row {
  flex-direction: row-reverse;
}
.cid-stTxlXHXUI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stTxlXHXUI .text-wrapper {
    padding: 2rem;
  }
}
.cid-stTxlXHXUI .mbr-text {
  color: #ffffff;
}
.cid-stTxlXHXUI .mbr-section-title {
  color: #ffffff;
}
.cid-stTZXcISkS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-stdraPzuck {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flomac-10-1920x1080.png");
}
.cid-stdraPzuck h2,
.cid-stdraPzuck h3,
.cid-stdraPzuck h4,
.cid-stdraPzuck p {
  color: #ffffff;
}
.cid-stdraPzuck .mbr-overlay {
  z-index: -1;
}
.cid-stdraPzuck .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stdraPzuck .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stdraPzuck .form-control:focus,
.cid-stdraPzuck .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stdraPzuck .form-group {
  margin-bottom: 1rem;
}
.cid-stdraPzuck input::-webkit-input-placeholder,
.cid-stdraPzuck textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stdraPzuck input:-moz-placeholder,
.cid-stdraPzuck textarea:-moz-placeholder {
  color: #656565;
}
.cid-stdraPzuck .jq-selectbox li,
.cid-stdraPzuck .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stdraPzuck .jq-selectbox li:hover,
.cid-stdraPzuck .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stdraPzuck .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stdraPzuck .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stdraPzuck .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stdraPzuck .mbr-text {
  color: #767676;
}
.cid-stdraPzuck .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stdraPzuck .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stdraPzuck .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stdraPzuck a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stdraPzuck .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stdraPzuck .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stdraPzuck textarea.form-control {
  resize: none;
}
.cid-stdraPzuck .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-stdraPzuck .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stdraPzuck .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stdraPzuck .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stdraPzuck h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stdraPzuck .block-content {
    padding: 0;
  }
  .cid-stdraPzuck .form-block {
    padding: 1rem;
  }
}
.cid-stdraPzuck H4 {
  text-align: center;
}
.cid-stdraPzuck .mbr-section-subtitle {
  text-align: left;
}
.cid-stdraPzuck .mbr-section-title,
.cid-stdraPzuck .mbr-section-btn {
  text-align: left;
}
.cid-stdraPzuck P {
  text-align: left;
}
.cid-srP906F4fT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-srP906F4fT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-srP906F4fT .row {
    text-align: center;
  }
  .cid-srP906F4fT .row > div {
    margin: auto;
  }
  .cid-srP906F4fT .social-row {
    justify-content: center;
  }
}
.cid-srP906F4fT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-srP906F4fT .list {
  list-style: none;
  padding-left: 0;
  color: #4d136a;
}
@media (max-width: 991px) {
  .cid-srP906F4fT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srP906F4fT .list {
    margin-bottom: 0rem;
  }
}
.cid-srP906F4fT .mbr-text {
  color: #000000;
}
.cid-srP906F4fT .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-srP906F4fT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-srP906F4fT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-srP906F4fT .mbr-section-subtitle {
  color: #4d136a;
}
.cid-srP906F4fT H5 {
  color: #4d136a;
}
.cid-tdUgIC88P6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdUgIC88P6 nav.navbar {
  position: fixed;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdUgIC88P6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdUgIC88P6 .dropdown-item:hover,
.cid-tdUgIC88P6 .dropdown-item:focus {
  background: #4d136a !important;
  color: white !important;
}
.cid-tdUgIC88P6 .dropdown-item:hover span {
  color: white;
}
.cid-tdUgIC88P6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdUgIC88P6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdUgIC88P6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdUgIC88P6 .nav-link {
  position: relative;
}
.cid-tdUgIC88P6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tdUgIC88P6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown-menu,
.cid-tdUgIC88P6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tdUgIC88P6 .nav-item:focus,
.cid-tdUgIC88P6 .nav-link:focus {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdUgIC88P6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdUgIC88P6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdUgIC88P6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdUgIC88P6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdUgIC88P6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdUgIC88P6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdUgIC88P6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar.collapsed {
  justify-content: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdUgIC88P6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdUgIC88P6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdUgIC88P6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdUgIC88P6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdUgIC88P6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdUgIC88P6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdUgIC88P6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdUgIC88P6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdUgIC88P6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdUgIC88P6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tdUgIC88P6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tdUgIC88P6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdUgIC88P6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdUgIC88P6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdUgIC88P6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdUgIC88P6 .dropdown-item.active,
.cid-tdUgIC88P6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdUgIC88P6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdUgIC88P6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdUgIC88P6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdUgIC88P6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdUgIC88P6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdUgIC88P6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdUgIC88P6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #4d136a;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdUgIC88P6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdUgIC88P6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdUgIC88P6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tdUgIC88P6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdUgIC88P6 .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-tdUgIC88P6 .navbar {
    height: 70px;
  }
  .cid-tdUgIC88P6 .navbar.opened {
    height: auto;
  }
  .cid-tdUgIC88P6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
