.btn {
  font-weight: 600;
}
body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.0625rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.078125rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.875rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.59375rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 3.25rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.84375rem;
    font-size: calc( 2.071875rem + (4.0625 - 2.071875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.071875rem + (4.0625 - 2.071875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.3rem;
    font-size: calc( 1.65625rem + (2.875 - 1.65625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.65625rem + (2.875 - 1.65625) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.825rem 3.75rem;
  border-radius: 100px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 100px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #ff4433 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1A7A90 !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1a7a90 !important;
  border-color: transparent !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #1a7a90 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #1a7a90 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #1a7a90 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-color: transparent !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1a7a90 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #1a7a90 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #1a7a90 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #1a7a90 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #0746c0 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0746c0 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0746c0 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff4433 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff4433 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ff4433 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #fafafa !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #fafafa !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-black,
.btn-black:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #232323 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: transparent !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #232323 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a7a90;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #0d3c47 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #1a7a90 !important;
  background-color: #1a7a90 !important;
  border-color: #1a7a90 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a7a90;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #0d3c47 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1a7a90 !important;
  background-color: #1a7a90 !important;
  border-color: #1a7a90 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a7a90;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #0d3c47 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #1a7a90 !important;
  background-color: #1a7a90 !important;
  border-color: #1a7a90 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #49923a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #2a5421 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #49923a !important;
  background-color: #49923a !important;
  border-color: #49923a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0746c0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #04286c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0746c0 !important;
  background-color: #0746c0 !important;
  border-color: #0746c0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4433;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #db1200 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ff4433 !important;
  background-color: #ff4433 !important;
  border-color: #ff4433 !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 {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #232323 !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 {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #fafafa !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1a7a90 !important;
}
.text-secondary {
  color: #1a7a90 !important;
}
.text-success {
  color: #49923a !important;
}
.text-info {
  color: #1a7a90 !important;
}
.text-warning {
  color: #0746c0 !important;
}
.text-danger {
  color: #ff4433 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a313a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ffffff !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9dd392 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0a313a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #03225e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cc1100 !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: #1a7a90;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1a7a90;
}
.alert-warning {
  background-color: #0746c0;
}
.alert-danger {
  background-color: #ff4433;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1a7a90;
  border-color: #1a7a90;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1a7a90;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4bc3de;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8ccc7f;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4bc3de;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #4e88f9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1a7a90 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1a7a90;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1a7a90;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1a7a90;
}
.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: #1a7a90;
  border-bottom-color: #1a7a90;
}
.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: #1a7a90 !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: #1a7a90 !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='%231a7a90' %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.2s;
  font-weight: 500;
  box-shadow: none !important;
}
.btn {
  margin: 0;
  font-weight: 600;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.text-secondary:hover {
  color: #dedede !important;
}
/*.btn-secondary:hover {
    color: #dedede !important;
}*/
.container {
  max-width: 1300px;
}
a.btn-primary:hover {
  color: #ffffff !important;
  background-color: #40b0bf !important;
}
.link {
  font-weight: 500;
}
.nav-item {
  transition-duration: .3s !important;
}
.nav-item:hover {
  transition-duration: .3s !important;
}
.navbar-toggler {
  border: transparent !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
body {
  line-height: 1.44em;
}
.mbr-section-title {
  letter-spacing: -1px;
  line-height: 1.07em;
  font-weight: 700;
}
.title {
  font-weight: 700;
}
.subtitle {
  font-weight: 500;
}
.mbr-section-subtitle {
  font-weight: 500;
}
.btn .mbr-iconfont {
  padding-right: 6px;
}
.cid-t4mhjtJ8U7 {
  padding-top: 12rem;
  padding-bottom: 24rem;
  background-image: url("../../../assets/images/background3-1500x583.png");
  overflow: hidden;
}
.cid-t4mhjtJ8U7 .mbr-text,
.cid-t4mhjtJ8U7 .mbr-section-btn {
  color: #ffffff;
}
.cid-t4mhjtJ8U7 .btn-white {
  color: #333333!important;
}
.cid-t4mhjtJ8U7 .image1 {
  position: absolute;
  right: 8%;
  top: 25%;
  height: 500px;
  width: auto;
  animation: rev 5s ease-in-out infinite;
}
.cid-t4mhjtJ8U7 .image2 {
  position: absolute;
  left: 8%;
  bottom: 20%;
  height: 500px;
  width: auto;
  animation: rev2 5s ease-in-out infinite;
}
@keyframes rev {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(10px) translateY(-10px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes rev2 {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(15px) translateY(5px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
.cid-t4mhjtJ8U7 svg {
  position: absolute;
  left: 50%;
  top: -150px;
  transform: translateX(-50%);
}
.cid-t4mhjtJ8U7 svg path {
  fill: #1a7a90;
}
@media (max-width: 1600px) {
  .cid-t4mhjtJ8U7 .image1 {
    top: 5%;
    height: 280px;
  }
  .cid-t4mhjtJ8U7 .image2 {
    bottom: 5%;
    height: 280px;
  }
}
@media (max-width: 992px) {
  .cid-t4mhjtJ8U7 svg {
    width: 1050px;
    height: 1050px;
  }
  .cid-t4mhjtJ8U7 .image1 {
    height: 220px;
  }
  .cid-t4mhjtJ8U7 .image2 {
    bottom: 15%;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .cid-t4mhjtJ8U7 svg {
    top: -120px;
  }
  .cid-t4mhjtJ8U7 .image1 {
    left: 50%;
    right: 50%;
    height: 180px;
    top: 3rem;
    transform: translateX(-50%);
    animation: none;
  }
  .cid-t4mhjtJ8U7 .image2 {
    right: 50%;
    left: 50%;
    bottom: 3rem;
    height: 180px;
    transform: translateX(-50%);
    animation: none;
  }
}
.cid-t4mhjtJ8U7 .mbr-section-title {
  color: #ffffff;
}
.cid-t4mhjtJ8U7 .mbr-section-subtitle {
  color: #dde8eb;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.6);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHAkT71n2i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sHAkT71n2i .date {
  margin: 67px 0 14px;
  color: #1d1d1f;
  font-weight: 700;
}
.cid-sHAkT71n2i .mbr-section-title {
  color: #000000;
  margin-bottom: 62px;
  font-weight: 700;
}
.cid-sHAkT71n2i .link {
  margin-top: 22px;
}
.cid-sHAkT71n2i .card-heading {
  line-height: 1.2;
  margin: 0px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cid-sHAkT71n2i .header {
    margin-bottom: 20px;
  }
  .cid-sHAkT71n2i .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-sHAkT71n2i .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-sHAkT71n2i .link {
    margin-bottom: 40px;
  }
}
.cid-sHAkT71n2i .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-sHAkT71n2i .mbr-section-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4c4c4c;
}
.cid-sHAkT71n2i .part {
  align-items: start;
}
.cid-sHAkT71n2i H3 {
  text-align: center;
}
.cid-sHAkT71n2i a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-sHAkT71n2i rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-sHAkT71n2i .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-sHAkT71n2i svg {
  margin-left: 15px;
}
.cid-sHAkT71n2i path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-sHAkT71n2i .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-sHAkT71n2i .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-sHAkT71n2i .card-heading,
.cid-sHAkT71n2i .link {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-sHAkT71n2i .top {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-sHAkT71n2i .top1 {
    padding-top: 60px;
  }
}
.cid-t4mnLteTmR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #1a7a90;
  overflow: hidden;
  position: relative;
}
.cid-t4mnLteTmR .section-about-header_background-glow {
  position: absolute;
  left: -40%;
  top: auto;
  right: auto;
  bottom: -70%;
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
  background-image: radial-gradient(circle farthest-side at 50% 50%, #004383 30%, rgba(0, 37, 73, 0));
}
.cid-t4mnLteTmR .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-t4mnLteTmR .mbr-section-title {
  color: #ffffff;
}
.cid-t4mnLteTmR .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t4mnJRdMwR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dde8eb;
}
@media (min-width: 992px) {
  .cid-t4mnJRdMwR .text-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-t4mnJRdMwR .text-wrapper {
    padding: 2rem 0;
  }
}
.cid-t4mnJRdMwR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t4mnJRdMwR .title {
  font-weight: 700;
  color: #ffffff;
}
.cid-t4mnJRdMwR .subtitle {
  padding-top: 11px;
  font-weight: 500;
}
.cid-t4mnJRdMwR .top {
  padding-top: 55px;
}
.cid-t4mnJRdMwR .number-left {
  padding-top: 4px;
  text-align: left;
  font-weight: 700;
}
.cid-t4mnJRdMwR .number-right {
  padding-top: 4px;
  text-align: right;
  font-weight: 700;
}
.cid-t4mnJRdMwR .row.justify-content-between {
  margin-bottom: 3px;
  margin: 0;
}
.cid-t4mnJRdMwR .title-left {
  text-align: right;
  color: #000000;
}
.cid-t4mnJRdMwR .subtitle-left {
  text-align: right;
  color: #4c4c4c;
}
.cid-t4mnJRdMwR .subtitle-right {
  color: #4c4c4c;
}
.cid-t4mnJRdMwR .title-right {
  color: #000000;
}
@media (max-width: 770px) {
  .cid-t4mnJRdMwR .bottom {
    margin-bottom: 55px;
  }
}
.cid-t4R9IvkmVq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t4R9IvkmVq .text {
  display: flex;
  flex-direction: row;
}
.cid-t4R9IvkmVq .card-title {
  margin-bottom: 14px;
}
.cid-t4R9IvkmVq .card-text {
  padding-bottom: 24px;
  font-weight: 500;
}
.cid-t4R9IvkmVq a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4R9IvkmVq rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4R9IvkmVq .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4R9IvkmVq svg {
  margin-left: 15px;
}
.cid-t4R9IvkmVq path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4R9IvkmVq .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4R9IvkmVq .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4R9IvkmVq img {
  max-width: 140px;
  height: auto;
}
.cid-t4R9IvkmVq .card-text,
.cid-t4R9IvkmVq .lin {
  color: #4c4c4c;
}
.cid-t4R9IvkmVq .mbr-iconfont {
  font-size: 110px;
  margin-right: 5px;
  color: #1a7a90;
}
.cid-t4R9IvkmVq .link a {
  background-image: none !important;
}
.cid-t4R9IvkmVq .padd-r {
  padding-right: 25px;
}
.cid-t4R9IvkmVq .padd-l {
  padding-left: 25px;
}
.cid-t4R9IvkmVq .b {
  margin-bottom: 51px;
}
@media (max-width: 770px) {
  .cid-t4R9IvkmVq .b1 {
    margin-bottom: 51px;
  }
  .cid-t4R9IvkmVq .padd-l,
  .cid-t4R9IvkmVq .padd-r {
    padding: 0;
  }
  .cid-t4R9IvkmVq .text {
    flex-direction: column;
  }
  .cid-t4R9IvkmVq .col-auto {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-t4R9IvkmVq .card-title,
  .cid-t4R9IvkmVq .lin,
  .cid-t4R9IvkmVq .link {
    text-align: center;
  }
}
.cid-t4mnOWDlj3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #dde8eb;
}
.cid-t4mnOWDlj3 img {
  border-radius: 0px;
}
.cid-t4mnOWDlj3 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4mnOWDlj3 .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4mnOWDlj3 p:last-child {
  margin-bottom: 0;
}
.cid-t4mnOWDlj3 .row {
  justify-content: center;
}
.cid-t4mnsdS8oj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-t4mnsdS8oj .list-group-item {
  background-color: transparent;
  color: #505050;
  text-align: left;
}
.cid-t4mnsdS8oj .plan-body {
  padding: 2rem;
}
.cid-t4mnsdS8oj .plan-header {
  padding: 1rem;
  padding-top: 3rem;
}
.cid-t4mnsdS8oj .plan-price {
  background: #1a7a90;
  padding: 3rem 1rem;
  margin-top: 3rem;
}
.cid-t4mnsdS8oj .price {
  color: #1a7a90;
  text-align: center;
}
.cid-t4mnsdS8oj .plan {
  word-break: break-word;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.05);
}
.cid-t4mnsdS8oj .plan .list-group-item {
  position: relative;
  justify-content: center;
  padding-left: 2rem;
  border: 0;
}
.cid-t4mnsdS8oj .plan .list-group-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  font-weight: 900;
  content: "✓";
  color: #1a7a90;
}
.cid-t4mnsdS8oj .plan .list-group-item-x::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  font-weight: 900;
  content: "X";
  color: #A8111E;
}
.cid-t4mnsdS8oj .plan .list-group-item-ty::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  font-weight: 900;
  content: "✓";
  color: #FEA621;
}
@media (max-width: 991px) {
  .cid-t4mnsdS8oj .plan {
    margin-bottom: 2rem;
  }
}
.cid-t4mnsdS8oj .price,
.cid-t4mnsdS8oj .plan-price {
  text-align: center;
  color: #ffffff;
}
.cid-t4mnsdS8oj H3 {
  text-align: center;
  color: #000000;
}
.cid-t4mnsdS8oj H4 {
  text-align: center;
  color: #282b2f;
}
.cid-t4mnsdS8oj .plan-title {
  color: #1a7a90;
}
.cid-t4mn2kxpbP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t4mn2kxpbP .container {
  pointer-events: none;
  z-index: 1;
}
.cid-t4mn2kxpbP .subtitle__block,
.cid-t4mn2kxpbP .title__block,
.cid-t4mn2kxpbP .buttons__block {
  pointer-events: all;
}
.cid-t4mn2kxpbP .subtitle__block {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 18px;
}
.cid-t4mn2kxpbP .subtitle__block SPAN {
  color: #ff4433;
}
.cid-t4mn2kxpbP .mbr-section-subtitle {
  display: inline-block;
}
.cid-t4mn2kxpbP .mbr-section-title {
  margin-top: 25px;
  color: #233d63;
}
.cid-t4mn2kxpbP .mbr-text {
  margin-top: 35px;
}
.cid-t4mn2kxpbP .inner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 33px;
}
.cid-t4mn2kxpbP .inner__buttons .mbr-section-btn {
  display: inline-block;
}
.cid-t4mn2kxpbP .inner__buttons .mbr-section-btn .btn-info {
  border: none !important;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(-135deg, #1a7a90 0%, rgba(26, 122, 144, 0.85) 100%) !important;
}
.cid-t4mn2kxpbP .inner__buttons .mbr-section-btn .btn-info:hover {
  border-color: transparent !important;
}
.cid-t4mn2kxpbP .inner__buttons .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 5px;
  vertical-align: -5px;
}
@media (max-width: 550px) {
  .cid-t4mn2kxpbP .inner__buttons .mbr-section-btn {
    width: 100%;
  }
}
.cid-t4mn2kxpbP .mbr-figure {
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-t4mn2kxpbP .mbr-figure:hover {
  color: #1a7a90;
  cursor: pointer;
}
.cid-t4mn2kxpbP .mbr-figure:hover .mbr-media {
  border-color: #1a7a90;
  color: #1a7a90;
}
@media (max-width: 575px) {
  .cid-t4mn2kxpbP .mbr-figure {
    margin: 0;
    margin-top: 10px;
    max-width: 350px;
    width: 100%;
  }
}
.cid-t4mn2kxpbP .mbr-media {
  display: inline-flex;
  color: #dbdbdb;
  align-items: center;
  justify-content: center;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease-in-out;
}
.cid-t4mn2kxpbP .mbr-media span {
  font-size: 22px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}
.cid-t4mn2kxpbP .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-t4mn2kxpbP .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.cid-t4mn2kxpbP .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t4mn2kxpbP .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t4mn2kxpbP .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-t4mn2kxpbP a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-t4mn2kxpbP a.close:hover {
  color: #ffffff;
}
.cid-t4mn2kxpbP .animation__background .triangle {
  position: absolute;
  top: 13%;
  right: 44%;
  animation: rotatedHalf 40s infinite linear;
}
.cid-t4mn2kxpbP .animation__background .triangle2 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  animation: rotated 23s infinite linear;
  width: 55px;
  height: 55px;
}
.cid-t4mn2kxpbP .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #0746c0;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 36%;
  animation: animationOne 25s infinite linear;
}
.cid-t4mn2kxpbP .animation__background .circle2 {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1a7a90;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: 8%;
  animation: animationTwo 27s infinite linear;
}
.cid-t4mn2kxpbP .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 30%;
  background: #ff4433;
  border-radius: 50%;
  animation: animationOne 21s infinite linear;
}
.cid-t4mn2kxpbP .animation__background .circle4 {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #49923a;
  border-radius: 50%;
  bottom: 42%;
  left: 6%;
  animation: animationTwo 31s infinite linear;
}
.cid-t4mn2kxpbP .animation__background .circle5 {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #1a7a90;
  border-radius: 50%;
  top: 12%;
  right: 6%;
  animation: animationTwo 35s infinite linear;
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-t4mn2kxpbP .subtitle__block SPAN {
  color: #ff4433;
}
.cid-t4mn2kxpbP .mbr-section-title,
.cid-t4mn2kxpbP .subtitle__wrap {
  color: #1a7a90;
}
.cid-t4mjv3kmmm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #1a7a90;
  overflow: hidden;
  position: relative;
}
.cid-t4mjv3kmmm .section-about-header_background-glow {
  position: absolute;
  left: -40%;
  top: auto;
  right: auto;
  bottom: -70%;
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
  background-image: radial-gradient(circle farthest-side at 50% 50%, #004383 30%, rgba(0, 37, 73, 0));
}
.cid-t4mjv3kmmm .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-t4mjv3kmmm .mbr-section-title {
  color: #ffffff;
}
.cid-t4mjv3kmmm .btn {
  padding: 1.6rem 3.5rem;
  font-weight: 400;
}
.cid-t4mjv3kmmm .mbr-section-title,
.cid-t4mjv3kmmm .mbr-section-btn {
  text-align: center;
}
.cid-t4mmSGw2Hj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #338ba0;
}
.cid-t4mmSGw2Hj .card-wrapper {
  background: none;
  display: block;
}
.cid-t4mmSGw2Hj .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-t4mmSGw2Hj .mbr-iconfont {
  display: block;
  font-size: 110px;
  margin-right: 15px;
  height: 100%;
  margin-bottom: 29px;
}
.cid-t4mmSGw2Hj .link a {
  background-image: none !important;
}
.cid-t4mmSGw2Hj .mbr-section-subtitle {
  padding: 0;
  margin: 0;
  padding-bottom: 20px;
}
.cid-t4mmSGw2Hj .card-title {
  font-weight: 700;
  margin-bottom: 14px;
}
.cid-t4mmSGw2Hj .lin {
  font-weight: 500;
}
.cid-t4mmSGw2Hj a {
  padding: 0;
  border: 0px;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
  padding-left: 0;
  padding-right: 0;
  word-break: normal;
  justify-content: center;
}
.cid-t4mmSGw2Hj .card-title,
.cid-t4mmSGw2Hj .lin {
  color: #1d1d1f;
}
.cid-t4mmSGw2Hj .padd {
  padding-top: 68px;
}
@media (max-width: 990px) {
  .cid-t4mmSGw2Hj .padd {
    padding-top: 0;
  }
  .cid-t4mmSGw2Hj .b {
    margin-bottom: 60px;
  }
}
.cid-t4mmSGw2Hj .link {
  margin-top: 24px;
}
.cid-t4mmSGw2Hj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mmSGw2Hj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mmSGw2Hj svg {
  margin-left: 15px;
}
.cid-t4mmSGw2Hj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mmSGw2Hj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mmSGw2Hj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mmSGw2Hj .icon1 {
  color: #dde8eb;
}
.cid-t4mmSGw2Hj .icon2 {
  color: #59d3f1;
}
.cid-t4mmSGw2Hj .icon3 {
  color: #dde8eb;
}
.cid-t4mmSGw2Hj .icon4 {
  color: #ffbf4f;
}
.cid-t4mmSGw2Hj .small-bottom,
.cid-t4mmSGw2Hj .link {
  text-align: left;
  color: #b2b2b2;
}
.cid-t4mmSGw2Hj .card-title,
.cid-t4mmSGw2Hj .iconfont-wrapper {
  color: #ffffff;
}
@media (max-width: 770px) {
  .cid-t4mmSGw2Hj .b1 {
    margin-bottom: 60px;
  }
  .cid-t4mmSGw2Hj .card-title {
    text-align: center;
  }
  .cid-t4mmSGw2Hj .lin {
    text-align: center;
  }
  .cid-t4mmSGw2Hj .link {
    text-align: center;
  }
  .cid-t4mmSGw2Hj .mbr-iconfont {
    margin-right: 0;
  }
  .cid-t4mmSGw2Hj .iconfont-wrapper {
    text-align: center;
  }
}
.cid-t4mmSGw2Hj h5.small-bottom,
.cid-t4mmSGw2Hj .link {
  color: #dde8eb;
}
.cid-sHAlaYsSIi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sHAlaYsSIi .mbr-section-title {
  width: 100%;
  text-align: left;
  padding-right: 280px;
  margin-bottom: 62px;
  font-weight: 700;
}
.cid-sHAlaYsSIi .mbr-section-subtitle {
  width: 100%;
  text-align: left;
  padding-right: 280px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4c4c4c;
}
.cid-sHAlaYsSIi img {
  border-radius: 50%;
  height: 128px;
  width: 128px;
  margin: 0;
}
.cid-sHAlaYsSIi .small {
  font-weight: 700;
  margin-top: 19px;
  margin-bottom: 40px;
}
.cid-sHAlaYsSIi .user_name {
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: #4c4c4c;
}
.cid-sHAlaYsSIi .user_desc {
  font-weight: 700;
  text-align: left;
}
.cid-sHAlaYsSIi .mbri-left:before {
  content: "\f053";
}
.cid-sHAlaYsSIi .mbri-right:before {
  content: "\f054";
}
.cid-sHAlaYsSIi .carousel-control-next,
.cid-sHAlaYsSIi .carousel-control-prev {
  color: #4c4c4c;
}
.cid-sHAlaYsSIi .title-block {
  justify-content: space-between;
}
.cid-sHAlaYsSIi .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHAlaYsSIi .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sHAlaYsSIi .carousel-item .wrap-img {
  text-align: center;
}
.cid-sHAlaYsSIi .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
}
.cid-sHAlaYsSIi .carousel-controls {
  width: 100%;
}
.cid-sHAlaYsSIi .carousel-controls .carousel-control {
  width: 45px;
  height: 45px;
}
.cid-sHAlaYsSIi .carousel-controls .carousel-control.carousel-control-prev {
  right: 3.9rem;
}
.cid-sHAlaYsSIi .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sHAlaYsSIi .cloneditem-1,
.cid-sHAlaYsSIi .cloneditem-2,
.cid-sHAlaYsSIi .cloneditem-3,
.cid-sHAlaYsSIi .cloneditem-4 {
  display: none;
}
.cid-sHAlaYsSIi .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: 0px;
  padding-left: 0px;
  width: 100%;
}
.cid-sHAlaYsSIi .container {
  margin-bottom: 2.7rem;
}
.cid-sHAlaYsSIi .controls-wrapper {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sHAlaYsSIi .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides2 .cloneditem-1,
  .cid-sHAlaYsSIi .carousel-inner.slides2 .cloneditem-2,
  .cid-sHAlaYsSIi .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides3 .cloneditem-1,
  .cid-sHAlaYsSIi .carousel-inner.slides3 .cloneditem-2,
  .cid-sHAlaYsSIi .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides4 .cloneditem-1,
  .cid-sHAlaYsSIi .carousel-inner.slides4 .cloneditem-2,
  .cid-sHAlaYsSIi .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides5 .cloneditem-1,
  .cid-sHAlaYsSIi .carousel-inner.slides5 .cloneditem-2,
  .cid-sHAlaYsSIi .carousel-inner.slides5 .cloneditem-3,
  .cid-sHAlaYsSIi .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sHAlaYsSIi .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sHAlaYsSIi .carousel-inner.slides6 .cloneditem-1,
  .cid-sHAlaYsSIi .carousel-inner.slides6 .cloneditem-2,
  .cid-sHAlaYsSIi .carousel-inner.slides6 .cloneditem-3,
  .cid-sHAlaYsSIi .carousel-inner.slides6 .cloneditem-4,
  .cid-sHAlaYsSIi .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sHAlaYsSIi .card-box {
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  pointer-events: none;
  transition: 0.3s;
}
.cid-sHAlaYsSIi .wrap-img:hover .card-box {
  background-color: transparent;
}
.cid-sHAlaYsSIi .wrap-img:hover .soc-item-1 {
  opacity: 0;
}
.cid-sHAlaYsSIi .wrap-img:hover .soc-item-2 {
  opacity: 1;
}
.cid-sHAlaYsSIi .soc-item {
  margin-bottom: 0.3rem;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 100;
  bottom: 0;
}
.cid-sHAlaYsSIi .soc-item span {
  font-size: 1rem;
}
.cid-sHAlaYsSIi .soc-item-1 {
  transition: 0.3s;
}
.cid-sHAlaYsSIi .soc-item-2 {
  opacity: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.cid-sHAlaYsSIi .soc-item-2 span {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sHAlaYsSIi .col-lg-2 {
    padding: 0rem;
  }
  .cid-sHAlaYsSIi .title-block {
    margin: 0;
  }
  .cid-sHAlaYsSIi .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 0px;
    width: 50%;
  }
  .cid-sHAlaYsSIi .carousel-controls {
    position: absolute;
    top: -6rem;
    left: 7.5rem;
  }
  .cid-sHAlaYsSIi .container {
    margin-bottom: 7rem;
  }
}
@media (min-width: 770px) and (max-width: 1200px) {
  .cid-sHAlaYsSIi .carousel-controls {
    position: absolute;
    top: 1rem;
    right: 10%;
  }
}
@media (min-width: 1200px) {
  .cid-sHAlaYsSIi .carousel-controls {
    position: absolute;
    top: 1rem;
    right: 20px;
  }
}
.cid-sHAlaYsSIi .wrapper {
  padding: 0rem;
}
@media (min-width: 767px) {
  .cid-sHAlaYsSIi .row {
    padding: 0 1rem;
  }
}
.cid-sHAlaYsSIi .icon-left {
  margin-right: 0.1rem;
}
.cid-sHAlaYsSIi .icon-right {
  margin-left: 0.1rem;
}
.cid-sHAlaYsSIi .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
  border: 1px solid #dbdbdb;
}
.cid-sHAlaYsSIi .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-sHAlaYsSIi H3 {
  color: #1d1d1f;
}
.cid-sHAlaYsSIi .svg-right {
  color: #a6a6a6;
}
.cid-sHAlaYsSIi .svg-left {
  transform: matrix(-1, 0, 0, 1, 0, 0);
  color: #a6a6a6;
  position: absolute;
  right: 30px;
  top: 9px;
}
.cid-sHAlaYsSIi rect {
  transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  transform: translateX(9px);
  stroke-width: .1;
  transform-origin: right;
  fill: #4c4c4c;
}
.cid-sHAlaYsSIi polygon {
  fill: #4c4c4c;
  transform-origin: right;
  transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  clip-path: inset(0 0 0 0);
  visibility: visible;
  color: #a6a6a6;
}
.cid-sHAlaYsSIi .swiper-left:hover .swiper-left {
  font-family: "dm sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.04px;
  text-align: center;
  vertical-align: baseline;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-out;
}
.cid-sHAlaYsSIi .swiper-left:hover .svg-left {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.cid-sHAlaYsSIi .swiper-left:hover rect {
  fill: #4c4c4c;
  stroke-width: 0.1px;
  transform: matrix(1, 0, 0, 1, 32, 0);
  transform-origin: 53.02px 13.5px;
}
.cid-sHAlaYsSIi .swiper-left:hover polygon {
  transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  transform: translateX(0);
  clip-path: inset(50% 0 50% 0);
}
.cid-sHAlaYsSIi .swiper-right:hover .swiper-right {
  font-family: "dm sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.04px;
  text-align: center;
  vertical-align: baseline;
  color: #1d1d1f;
  border-bottom-color: #1d1d1f;
  border-left-color: #1d1d1f;
  border-right-color: #1d1d1f;
  border-top-color: #1d1d1f;
  outline-color: #1d1d1f;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-out;
}
.cid-sHAlaYsSIi .swiper-right:hover rect {
  fill: #4c4c4c;
  stroke-width: 0.1px;
  transform: matrix(1, 0, 0, 1, 32, 0);
  transform-origin: 53.02px 13.5px;
}
.cid-sHAlaYsSIi .swiper-right:hover polygon {
  transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  transform: translateX(0);
  clip-path: inset(50% 0 50% 0);
  fill: #4c4c4c;
}
.cid-sHAlaYsSIi .carousel.slide {
  margin-left: -15px;
  margin-right: -15px;
}
.cid-sHAlaYsSIi .user_text {
  text-align: left;
}
.cid-sHAlaYsSIi .description {
  padding-right: 143px;
}
.cid-sHAlaYsSIi .carousel-control-prev {
  left: auto;
}
@media (max-width: 770px) {
  .cid-sHAlaYsSIi .carousel-controls {
    position: initial;
  }
  .cid-sHAlaYsSIi .padd {
    padding-left: 15px;
  }
  .cid-sHAlaYsSIi .description {
    padding-right: 15px;
  }
  .cid-sHAlaYsSIi .mbr-section-title {
    padding-right: 0px;
    margin-bottom: 10px;
  }
  .cid-sHAlaYsSIi .mbr-section-subtitle {
    padding-right: 0px;
  }
  .cid-sHAlaYsSIi .carousel-control-prev {
    left: 3em;
  }
  .cid-sHAlaYsSIi .carousel-control-next {
    right: 1em;
  }
  .cid-sHAlaYsSIi .carousel-inner {
    margin-top: 60px;
  }
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
.cid-t4SFzDzcCh.popup-builder {
  background-color: #ffffff;
}
.cid-t4SFzDzcCh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4SFzDzcCh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4SFzDzcCh .modal-content,
.cid-t4SFzDzcCh .modal-dialog {
  height: auto;
}
.cid-t4SFzDzcCh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4SFzDzcCh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4SFzDzcCh .form-wrapper .mbr-form .form-group,
  .cid-t4SFzDzcCh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4SFzDzcCh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4SFzDzcCh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SFzDzcCh .mbr-text {
  text-align: center;
}
.cid-t4SFzDzcCh .pt-0 {
  padding-top: 0 !important;
}
.cid-t4SFzDzcCh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4SFzDzcCh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4SFzDzcCh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4SFzDzcCh .modal-open {
  overflow: hidden;
}
.cid-t4SFzDzcCh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4SFzDzcCh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4SFzDzcCh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4SFzDzcCh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t4SFzDzcCh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4SFzDzcCh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4SFzDzcCh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4SFzDzcCh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t4SFzDzcCh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4SFzDzcCh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4SFzDzcCh .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4SFzDzcCh .modal-backdrop.show {
  opacity: .5;
}
.cid-t4SFzDzcCh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t4SFzDzcCh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SFzDzcCh .modal-header {
    padding: 1rem;
  }
}
.cid-t4SFzDzcCh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4SFzDzcCh .modal-header .close svg {
  fill: #353535;
}
.cid-t4SFzDzcCh .modal-header .close:hover {
  opacity: 1;
}
.cid-t4SFzDzcCh .modal-header .close:focus {
  outline: none;
}
.cid-t4SFzDzcCh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4SFzDzcCh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4SFzDzcCh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SFzDzcCh .modal-body {
    padding: 1rem;
  }
}
.cid-t4SFzDzcCh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4SFzDzcCh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SFzDzcCh .modal-footer {
    padding: 1rem;
  }
}
.cid-t4SFzDzcCh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4SFzDzcCh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4SFzDzcCh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4SFzDzcCh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4SFzDzcCh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4SFzDzcCh .modal-lg,
  .cid-t4SFzDzcCh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4SFzDzcCh .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4SFzDzcCh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4SFzDzcCh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t4SFzDzcCh .form-group {
  margin-bottom: 1rem;
}
.cid-t4SFzDzcCh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4SFzDzcCh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4SFzDzcCh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t4SFzDzcCh .mbr-section-btn {
  margin: 0;
}
.cid-t4SFzDzcCh .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SVfRiqC2.popup-builder {
  background-color: #ffffff;
}
.cid-t4SVfRiqC2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4SVfRiqC2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4SVfRiqC2 .modal-content,
.cid-t4SVfRiqC2 .modal-dialog {
  height: auto;
}
.cid-t4SVfRiqC2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4SVfRiqC2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4SVfRiqC2 .form-wrapper .mbr-form .form-group,
  .cid-t4SVfRiqC2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4SVfRiqC2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4SVfRiqC2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SVfRiqC2 .mbr-text {
  text-align: center;
}
.cid-t4SVfRiqC2 .pt-0 {
  padding-top: 0 !important;
}
.cid-t4SVfRiqC2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4SVfRiqC2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4SVfRiqC2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4SVfRiqC2 .modal-open {
  overflow: hidden;
}
.cid-t4SVfRiqC2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4SVfRiqC2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4SVfRiqC2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4SVfRiqC2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t4SVfRiqC2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4SVfRiqC2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4SVfRiqC2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4SVfRiqC2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t4SVfRiqC2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4SVfRiqC2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4SVfRiqC2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4SVfRiqC2 .modal-backdrop.show {
  opacity: .5;
}
.cid-t4SVfRiqC2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t4SVfRiqC2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SVfRiqC2 .modal-header {
    padding: 1rem;
  }
}
.cid-t4SVfRiqC2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4SVfRiqC2 .modal-header .close svg {
  fill: #353535;
}
.cid-t4SVfRiqC2 .modal-header .close:hover {
  opacity: 1;
}
.cid-t4SVfRiqC2 .modal-header .close:focus {
  outline: none;
}
.cid-t4SVfRiqC2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4SVfRiqC2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4SVfRiqC2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SVfRiqC2 .modal-body {
    padding: 1rem;
  }
}
.cid-t4SVfRiqC2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4SVfRiqC2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4SVfRiqC2 .modal-footer {
    padding: 1rem;
  }
}
.cid-t4SVfRiqC2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4SVfRiqC2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4SVfRiqC2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4SVfRiqC2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4SVfRiqC2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4SVfRiqC2 .modal-lg,
  .cid-t4SVfRiqC2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4SVfRiqC2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4SVfRiqC2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4SVfRiqC2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t4SVfRiqC2 .form-group {
  margin-bottom: 1rem;
}
.cid-t4SVfRiqC2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4SVfRiqC2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4SVfRiqC2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t4SVfRiqC2 .mbr-section-btn {
  margin: 0;
}
.cid-t4SVfRiqC2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SVfRiqC2 LABEL {
  text-align: left;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.4);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-t4oEUxwYae {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4oEUxwYae .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4oEUxwYae .list {
  color: #1d1d1f;
}
.cid-t4oEUxwYae ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4oEUxwYae li {
  padding-bottom: 0.5rem;
}
.cid-t4oEUxwYae .mbr-section-subtitle {
  color: #000000;
}
.cid-t4oEUxwYae P {
  color: #4c4c4c;
}
.cid-t4oFX3Vx1X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4oFX3Vx1X img {
  border-radius: 0px;
}
.cid-t4oFX3Vx1X .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4oFX3Vx1X .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4oFX3Vx1X p:last-child {
  margin-bottom: 0;
}
.cid-t4oFX3Vx1X .row {
  justify-content: center;
}
.cid-t4oGXW1oJW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4oGXW1oJW .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4oGXW1oJW .list {
  color: #1d1d1f;
}
.cid-t4oGXW1oJW ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4oGXW1oJW li {
  padding-bottom: 0.5rem;
}
.cid-t4oGXW1oJW .mbr-section-subtitle {
  color: #000000;
}
.cid-t4oGXW1oJW P {
  color: #4c4c4c;
}
.cid-t4oIc4dvgq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4oIc4dvgq .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4oIc4dvgq .list {
  color: #1d1d1f;
}
.cid-t4oIc4dvgq ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4oIc4dvgq li {
  padding-bottom: 0.5rem;
}
.cid-t4oIc4dvgq .mbr-section-subtitle {
  color: #000000;
}
.cid-t4oIc4dvgq P {
  color: #4c4c4c;
}
.cid-t4oIQKwfQw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4oIQKwfQw img {
  border-radius: 0px;
}
.cid-t4oIQKwfQw .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4oIQKwfQw .mbr-text {
  padding-bottom: 30px;
  color: #1d1d1f;
  font-weight: 500;
}
.cid-t4oIQKwfQw p:last-child {
  margin-bottom: 0;
}
.cid-t4oIQKwfQw .row {
  justify-content: center;
}
.cid-t4pHhsxUvn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4pHhsxUvn .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4pHhsxUvn .list {
  color: #1d1d1f;
}
.cid-t4pHhsxUvn ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4pHhsxUvn li {
  padding-bottom: 0.5rem;
}
.cid-t4pHhsxUvn .mbr-section-subtitle {
  color: #000000;
}
.cid-t4pHhsxUvn P {
  color: #4c4c4c;
}
.cid-t4pNJ2PQ1t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4pNJ2PQ1t img {
  border-radius: 0px;
}
.cid-t4pNJ2PQ1t .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4pNJ2PQ1t .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4pNJ2PQ1t p:last-child {
  margin-bottom: 0;
}
.cid-t4pNJ2PQ1t .row {
  justify-content: center;
}
.cid-t4pRN22ypT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4pRN22ypT img {
  border-radius: 0px;
}
.cid-t4pRN22ypT .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4pRN22ypT .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4pRN22ypT p:last-child {
  margin-bottom: 0;
}
.cid-t4pRN22ypT .row {
  justify-content: center;
}
.cid-t4pVNyt0eb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4pVNyt0eb .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4pVNyt0eb .list {
  color: #1d1d1f;
}
.cid-t4pVNyt0eb ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4pVNyt0eb li {
  padding-bottom: 0.5rem;
}
.cid-t4pVNyt0eb .mbr-section-subtitle {
  color: #000000;
}
.cid-t4pVNyt0eb P {
  color: #4c4c4c;
}
.cid-t4q5YrcGFD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4q5YrcGFD .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4q5YrcGFD .list {
  color: #1d1d1f;
}
.cid-t4q5YrcGFD ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4q5YrcGFD li {
  padding-bottom: 0.5rem;
}
.cid-t4q5YrcGFD .mbr-section-subtitle {
  color: #000000;
}
.cid-t4q5YrcGFD P {
  color: #4c4c4c;
}
.cid-t4qdMBHYqk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4qdMBHYqk img {
  border-radius: 0px;
}
.cid-t4qdMBHYqk .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4qdMBHYqk .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4qdMBHYqk p:last-child {
  margin-bottom: 0;
}
.cid-t4qdMBHYqk .row {
  justify-content: center;
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.4);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-t4mDJsybvK {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t4mDJsybvK img {
  border-radius: 0px;
}
.cid-t4mDJsybvK .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4mDJsybvK .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4mDJsybvK p:last-child {
  margin-bottom: 0;
}
.cid-t4mDJsybvK .row {
  justify-content: center;
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.4);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-t4mDr16wjR {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4mDr16wjR img {
  border-radius: 0px;
}
.cid-t4mDr16wjR .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4mDr16wjR .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4mDr16wjR p:last-child {
  margin-bottom: 0;
}
.cid-t4mDr16wjR .row {
  justify-content: center;
}
.cid-t4mDrxPpN2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4mDrxPpN2 img {
  border-radius: 0px;
}
.cid-t4mDrxPpN2 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4mDrxPpN2 .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4mDrxPpN2 p:last-child {
  margin-bottom: 0;
}
.cid-t4mDrxPpN2 .row {
  justify-content: center;
}
.cid-t4mDrGHHkU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4mDrGHHkU img {
  border-radius: 0px;
}
.cid-t4mDrGHHkU .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4mDrGHHkU .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4mDrGHHkU p:last-child {
  margin-bottom: 0;
}
.cid-t4mDrGHHkU .row {
  justify-content: center;
}
.cid-t4mDrPGOAH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4mDrPGOAH .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4mDrPGOAH .list {
  color: #1d1d1f;
}
.cid-t4mDrPGOAH ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4mDrPGOAH li {
  padding-bottom: 0.5rem;
}
.cid-t4mDrPGOAH .mbr-section-subtitle {
  color: #1a7a90;
}
.cid-t4mDrPGOAH P {
  color: #4c4c4c;
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
.cid-t4rBlXD8Dq {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4rBlXD8Dq .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4rBlXD8Dq .list {
  color: #1d1d1f;
}
.cid-t4rBlXD8Dq ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4rBlXD8Dq li {
  padding-bottom: 0.5rem;
}
.cid-t4rBlXD8Dq .mbr-section-subtitle {
  color: #000000;
}
.cid-t4rBlXD8Dq P {
  color: #4c4c4c;
}
.cid-t4rDeoTKoF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4rDeoTKoF img {
  border-radius: 0px;
}
.cid-t4rDeoTKoF .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4rDeoTKoF .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4rDeoTKoF p:last-child {
  margin-bottom: 0;
}
.cid-t4rDeoTKoF .row {
  justify-content: center;
}
.cid-t4rDeoTKoF P {
  color: #000000;
}
.cid-t4rHcuzu07 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4rHcuzu07 img {
  border-radius: 0px;
}
.cid-t4rHcuzu07 .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4rHcuzu07 .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4rHcuzu07 p:last-child {
  margin-bottom: 0;
}
.cid-t4rHcuzu07 .row {
  justify-content: center;
}
.cid-t4rI1oI9Fg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4rI1oI9Fg .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4rI1oI9Fg .list {
  color: #1d1d1f;
}
.cid-t4rI1oI9Fg ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4rI1oI9Fg li {
  padding-bottom: 0.5rem;
}
.cid-t4rI1oI9Fg .mbr-section-subtitle {
  color: #000000;
}
.cid-t4rI1oI9Fg P {
  color: #4c4c4c;
}
.cid-t4silxTBHI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4silxTBHI .mbr-text {
  color: #1d1d1f;
  text-align: left;
}
.cid-t4silxTBHI .list {
  color: #1d1d1f;
}
.cid-t4silxTBHI ul {
  list-style-position: inside;
  padding: 0;
}
.cid-t4silxTBHI li {
  padding-bottom: 0.5rem;
}
.cid-t4silxTBHI .mbr-section-subtitle {
  color: #000000;
}
.cid-t4silxTBHI P {
  color: #4c4c4c;
}
.cid-t4swUfJWsv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4swUfJWsv img {
  border-radius: 0px;
}
.cid-t4swUfJWsv .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4swUfJWsv .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4swUfJWsv p:last-child {
  margin-bottom: 0;
}
.cid-t4swUfJWsv .row {
  justify-content: center;
}
.cid-t4syaH5Y2q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4syaH5Y2q img {
  border-radius: 0px;
}
.cid-t4syaH5Y2q .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4syaH5Y2q .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4syaH5Y2q p:last-child {
  margin-bottom: 0;
}
.cid-t4syaH5Y2q .row {
  justify-content: center;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.4);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
.cid-t4QK9pMaRI {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4QK9pMaRI img {
  border-radius: 0px;
}
.cid-t4QK9pMaRI .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4QK9pMaRI .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4QK9pMaRI p:last-child {
  margin-bottom: 0;
}
.cid-t4QK9pMaRI .row {
  justify-content: center;
}
.cid-t4QLa6yFYA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4QLa6yFYA img {
  border-radius: 0px;
}
.cid-t4QLa6yFYA .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4QLa6yFYA .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4QLa6yFYA p:last-child {
  margin-bottom: 0;
}
.cid-t4QLa6yFYA .row {
  justify-content: center;
}
.cid-t4QNgTfzMX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4QNgTfzMX img {
  border-radius: 0px;
}
.cid-t4QNgTfzMX .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-bottom: 17px;
  font-weight: 700;
}
.cid-t4QNgTfzMX .mbr-text {
  padding-bottom: 30px;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t4QNgTfzMX p:last-child {
  margin-bottom: 0;
}
.cid-t4QNgTfzMX .row {
  justify-content: center;
}
.cid-sHKWYLKmZ1 {
  z-index: 1000;
  width: 100%;
}
.cid-sHKWYLKmZ1 nav.navbar {
  position: fixed;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover,
.cid-sHKWYLKmZ1 .dropdown-item:focus {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 2em 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHKWYLKmZ1 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sHKWYLKmZ1 .container {
  display: flex;
  margin: auto;
}
.cid-sHKWYLKmZ1 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown-menu,
.cid-sHKWYLKmZ1 .navbar.opened {
  background: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 .nav-item:focus,
.cid-sHKWYLKmZ1 .nav-link:focus {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHKWYLKmZ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHKWYLKmZ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(26, 122, 144, 0.4);
}
.cid-sHKWYLKmZ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHKWYLKmZ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sHKWYLKmZ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHKWYLKmZ1 .navbar.collapsed {
  justify-content: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHKWYLKmZ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHKWYLKmZ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHKWYLKmZ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHKWYLKmZ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHKWYLKmZ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHKWYLKmZ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHKWYLKmZ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHKWYLKmZ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHKWYLKmZ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHKWYLKmZ1 .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-sHKWYLKmZ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHKWYLKmZ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHKWYLKmZ1 .dropdown-item.active,
.cid-sHKWYLKmZ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sHKWYLKmZ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHKWYLKmZ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a7a90;
}
.cid-sHKWYLKmZ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHKWYLKmZ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHKWYLKmZ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHKWYLKmZ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHKWYLKmZ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHKWYLKmZ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHKWYLKmZ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHKWYLKmZ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHKWYLKmZ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHKWYLKmZ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHKWYLKmZ1 .navbar {
    height: 70px;
  }
  .cid-sHKWYLKmZ1 .navbar.opened {
    height: auto;
  }
  .cid-sHKWYLKmZ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHKWYLKmZ1 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sHKWYLKmZ1 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sHKWYLKmZ1 a {
  display: inline;
  font-weight: bold;
}
.cid-sHKWYLKmZ1 img {
  display: inline;
  padding-right: 10px;
}
.cid-sHKWYLKmZ1 .dropdown-toggle:after {
  display: none;
}
.cid-sHKWYLKmZ1 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sHKWYLKmZ1 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sHKWYLKmZ1 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sHKWYLKmZ1 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sHKWYLKmZ1 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sHKWYLKmZ1 ul {
  counter-reset: counter;
  margin: auto;
}
.cid-sHKWYLKmZ1 .nav-link::before {
  position: relative;
  display: block;
  top: -15px;
  left: 13px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero) ".";
  color: #1a7a90;
  -webkit-transition: color 0.35s ease-out;
  -o-transition: color 0.35s ease-out;
  transition: color 0.35s ease-out;
}
.cid-sHKWYLKmZ1 .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-sHKWYLKmZ1 .nav-item:hover .nav-link::before {
  color: currentColor;
}
.cid-sHKWYLKmZ1 ul li {
  height: 100px;
  display: flex;
}
.cid-sHKWYLKmZ1 a.text-white:hover {
  color: #ffffff !important;
}
.cid-sHKWYLKmZ1 a.text-primary:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-secondary:hover {
  color: #b2b2b2 !important;
}
.cid-sHKWYLKmZ1 a.text-success:hover {
  color: #49923a !important;
}
.cid-sHKWYLKmZ1 a.text-info:hover {
  color: #1a7a90 !important;
}
.cid-sHKWYLKmZ1 a.text-warning:hover {
  color: #0746c0 !important;
}
.cid-sHKWYLKmZ1 a.text-danger:hover {
  color: #cc1100 !important;
}
.cid-sHKWYLKmZ1 a.text-black:hover {
  color: #000000 !important;
}
@media (max-width: 970px) {
  .cid-sHKWYLKmZ1 ul li {
    height: 50px;
    display: list-item;
  }
}
.cid-sHKWYLKmZ1 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapsing .nav-link {
  margin: 0.667em 1em !important;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-item {
  height: 50px;
}
.cid-sHKWYLKmZ1 .navbar-collapse.collapse.show .nav-link {
  margin: 0.667em 1em !important;
}
.cid-t4mlzy9bPy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-t4mlzy9bPy .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-t4mlzy9bPy .first-column .mbr-text {
  margin: 0;
}
.cid-t4mlzy9bPy .form-group {
  max-width: 100%;
}
.cid-t4mlzy9bPy .form-group,
.cid-t4mlzy9bPy .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-t4mlzy9bPy .form-control {
  font-size: 22px;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  line-height: 45px;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .col + .mbr-section-btn .btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col,
.cid-t4mlzy9bPy .dragArea > *:nth-last-child(2).col-auto,
.cid-t4mlzy9bPy .col + .mbr-section-btn,
.cid-t4mlzy9bPy .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-t4mlzy9bPy img {
  width: auto;
  display: inline-block;
}
.cid-t4mlzy9bPy .title {
  display: inline;
  font-weight: 500;
  color: #ffffff;
}
.cid-t4mlzy9bPy .margin {
  margin: 0px;
  align-items: center;
}
.cid-t4mlzy9bPy .counter {
  color: #fff;
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  width: 100%;
}
.cid-t4mlzy9bPy .bottom {
  margin-bottom: 0px;
}
.cid-t4mlzy9bPy .number {
  background-color: #333335;
  padding: 20px;
  margin-right: 15px;
  border-radius: 50%;
  color: #59d3f1;
}
.cid-t4mlzy9bPy .mbr-text {
  font-weight: 700;
  padding-bottom: 42px;
}
.cid-t4mlzy9bPy .desc {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .desc2 {
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.cid-t4mlzy9bPy .description2 {
  font-weight: 500;
}
.cid-t4mlzy9bPy .description4 {
  margin-bottom: 20px;
  font-weight: 500;
  color: #b2b2b2;
}
.cid-t4mlzy9bPy .link {
  margin-top: 23px;
}
.cid-t4mlzy9bPy .mbr-form {
  padding: 0;
}
.cid-t4mlzy9bPy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t4mlzy9bPy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t4mlzy9bPy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy svg {
  margin-left: 15px;
  color: currentColor;
}
.cid-t4mlzy9bPy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t4mlzy9bPy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t4mlzy9bPy .link:hover g {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t4mlzy9bPy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t4mlzy9bPy .form-control:hover {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #dbdbdb !important;
  box-shadow: none;
}
.cid-t4mlzy9bPy .form {
  margin-right: 0;
  margin-left: 0;
}
.cid-t4mlzy9bPy input[type=email]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=text]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=date]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=time]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=radio]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=checkbox]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=number]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=url]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=password]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameFirst]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input[type=nameLast]::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy textarea::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy select::placeholder {
  color: #ffffff;
}
.cid-t4mlzy9bPy input.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy textarea.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy select.form-control {
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label,
.cid-t4mlzy9bPy .form-check {
  width: 100%;
  padding: .6rem 0;
}
.cid-t4mlzy9bPy .form-control-label {
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy select option {
  color: #000000;
}
.cid-t4mlzy9bPy .link,
.cid-t4mlzy9bPy .form-group {
  padding: 0 !important;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12.form-group {
  padding: .6rem 0 !important;
  display: flex;
  flex-direction: column;
}
.cid-t4mlzy9bPy .form-check {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-t4mlzy9bPy .col-lg-12.col-md-12.col-sm-12 {
  padding: .6rem 0 !important;
}
.cid-t4mlzy9bPy .text-secondary:hover {
  color: #ffffff !important;
}
@media (max-width: 990px) {
  .cid-t4mlzy9bPy .first-column {
    margin-bottom: 30px;
  }
  .cid-t4mlzy9bPy .second-column {
    margin-bottom: 30px;
  }
}
.cid-t4mlzy9bPy button {
  padding: 0;
}
.cid-t4mlzy9bPy .b {
  font-weight: 500;
}
.cid-t4mlzy9bPy .link a {
  background-image: none !important;
}
.cid-t4mlzy9bPy .description3 {
  text-align: left;
}
