body {
  font-family: Jost;
}
.display-1 {
  font-family: 'font';
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'bruum';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'bryant1';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'bryant1';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'bryant1';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00b5ae !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #6a2c90 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00b5ae !important;
  border-color: #00b5ae !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #005e5b !important;
  border-color: #005e5b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #005e5b !important;
  border-color: #005e5b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #abdc4e !important;
  border-color: #abdc4e !important;
  color: #1a2407 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #80b023 !important;
  border-color: #80b023 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1a2407 !important;
  background-color: #80b023 !important;
  border-color: #80b023 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6a2c90 !important;
  border-color: #6a2c90 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #39184e !important;
  border-color: #39184e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #39184e !important;
  border-color: #39184e !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: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00b5ae;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #005e5b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00b5ae !important;
  border-color: #00b5ae !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #abdc4e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #80b023 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1a2407 !important;
  background-color: #abdc4e !important;
  border-color: #abdc4e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6a2c90;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #39184e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6a2c90 !important;
  border-color: #6a2c90 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00b5ae !important;
}
.text-secondary {
  color: #abdc4e !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #6a2c90 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #004f4c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #76a420 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #301442 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #00b5ae;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6a2c90;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00b5ae;
  border-color: #00b5ae;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00b5ae;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #36fff7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #aa6ad1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'bryant1';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #00b5ae !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'bryant1';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #00b5ae;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00b5ae;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00b5ae;
}
.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: #00b5ae;
  border-bottom-color: #00b5ae;
}
.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: #000000 !important;
  background-color: #00b5ae !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #abdc4e !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='%2300b5ae' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-soc6Qx2njA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-soc6Qx2njA .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-soc6Qx2njA .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-soc6Qx2njA .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-soc6Qx2njA .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-soc6Qx2njA .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-soc6Qx2njA .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-soc6Qx2njA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-soc6Qx2njA .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-soc6Qx2njA .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-soc6Qx2njA .navbar.collapsed.opened .navbar-collapse.show,
.cid-soc6Qx2njA .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-soc6Qx2njA .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-soc6Qx2njA .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-soc6Qx2njA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-soc6Qx2njA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soc6Qx2njA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soc6Qx2njA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soc6Qx2njA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soc6Qx2njA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-soc6Qx2njA .navbar {
    flex-wrap: nowrap;
  }
  .cid-soc6Qx2njA .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-soc6Qx2njA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soc6Qx2njA .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-soc6Qx2njA .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-soc6Qx2njA .navbar.opened .navbar-collapse.show,
  .cid-soc6Qx2njA .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-soc6Qx2njA .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-soc6Qx2njA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-soc6Qx2njA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soc6Qx2njA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soc6Qx2njA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soc6Qx2njA .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-soc6Qx2njA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soc6Qx2njA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-soc6Qx2njA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-soc6Qx2njA .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-soc6Qx2njA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-soc6Qx2njA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-soc6Qx2njA .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soc6Qx2njA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soc6Qx2njA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soc6Qx2njA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-soc6Qx2njA .dropdown-item.active,
.cid-soc6Qx2njA .dropdown-item:active {
  background-color: transparent;
}
.cid-soc6Qx2njA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-soc6Qx2njA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soc6Qx2njA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soc6Qx2njA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-soc6Qx2njA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soc6Qx2njA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soc6Qx2njA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-soc6Qx2njA .navbar-buttons {
  text-align: center;
}
.cid-soc6Qx2njA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soc6Qx2njA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-soc6Qx2njA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soc6Qx2njA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soc6Qx2njA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soc6Qx2njA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soc6Qx2njA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soc6Qx2njA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soc6Qx2njA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soc6Qx2njA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soc6Qx2njA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-soc6Qx2njA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-soc6Qx2njA a.nav-link:focus {
  outline: none;
}
.cid-soc6Qx2njA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-soc6Qx2njA .nav-link:hover,
.cid-soc6Qx2njA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soc6Qx2njA .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-soc6Qx2njA .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sobCo6vWzJ {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/objetos-escondidos2-1920x1080.png");
}
.cid-sobCo6vWzJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sobCo6vWzJ .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-sobCo6vWzJ .mbr-section-title {
  color: #ffffff;
}
.cid-sobCo6vWzJ .mbr-text,
.cid-sobCo6vWzJ .mbr-section-btn {
  color: #ffffff;
}
.cid-svqZS7eN1U {
  padding-top: 105px;
  padding-bottom: 120px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-svqZS7eN1U H1 {
  color: #00b5ae;
}
.cid-svqZS7eN1U .mbr-text,
.cid-svqZS7eN1U .mbr-section-btn {
  color: #767676;
}
.cid-svqZS7eN1U .img1 {
  box-shadow: 0 10px 55px 5px rgba(191, 228, 121, 0.35);
  border-radius: 10px;
}
.cid-svqZS7eN1U .relative {
  position: relative;
}
.cid-svqZS7eN1U .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-svqZS7eN1U .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-svqZS7eN1U .card-img2 .img2 {
  width: 120%;
}
.cid-svqZS7eN1U .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-svqZS7eN1U .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-svqZS7eN1U .img2 {
  box-shadow: 0 10px 55px 5px rgba(191, 228, 121, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-svHZpw7XuV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-svHZpw7XuV .mbr-media {
  position: relative;
}
.cid-svHZpw7XuV .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-svHZpw7XuV .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-svHZpw7XuV .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-svHZpw7XuV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-svHZpw7XuV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-svHZpw7XuV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-svHZpw7XuV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-svHZpw7XuV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-swzVhew5Oa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #00b5ae;
}
.cid-swzVhew5Oa .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-swzVhew5Oa .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-swzVhew5Oa .align-center {
    text-align: center;
  }
}
.cid-swzVhew5Oa H1 {
  text-align: center;
}
.cid-svHZlr94vZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00b5ae;
}
.cid-svHZlr94vZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-spZ6JqAaDV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-spZ6JqAaDV .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-spZ6JqAaDV .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-spZ6JqAaDV .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spZ6JqAaDV .card-wrapper {
    padding: 4rem;
  }
}
.cid-spZ6JqAaDV .card-title {
  color: #00b5ae;
}
.cid-spZ7Eak4h9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spZ7Eak4h9 .wrapper {
  overflow: hidden;
}
.cid-spZ7Eak4h9 .wrapper img {
  transition: all .5s;
}
.cid-spZ7Eak4h9 .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-spZ7Eak4h9 .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-spZ7Eak4h9 .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 28rem;
}
.cid-spZ7Eak4h9 .wrapper .mbr-overlay {
  background: #00b5ae;
  opacity: 0.6;
  border-top-right-radius: 25%;
  z-index: 1;
}
.cid-spZ7Eak4h9 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-spZ7Eak4h9 .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-spZ7Eak4h9 .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-spZ7Eak4h9 .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-spZ7Eak4h9 .main-title {
  color: #00b5ae;
}
.cid-sofKJJPhwf {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-sofJNIPzvp .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-sofJNIPzvp .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-sofJNIPzvp .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sofJNIPzvp .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sofJNIPzvp .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sofJNIPzvp .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sofJNIPzvp .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sofJNIPzvp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sofJNIPzvp .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sofJNIPzvp .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sofJNIPzvp .navbar.collapsed.opened .navbar-collapse.show,
.cid-sofJNIPzvp .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sofJNIPzvp .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sofJNIPzvp .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sofJNIPzvp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sofJNIPzvp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sofJNIPzvp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sofJNIPzvp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sofJNIPzvp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sofJNIPzvp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sofJNIPzvp .navbar {
    flex-wrap: nowrap;
  }
  .cid-sofJNIPzvp .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sofJNIPzvp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sofJNIPzvp .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sofJNIPzvp .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sofJNIPzvp .navbar.opened .navbar-collapse.show,
  .cid-sofJNIPzvp .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sofJNIPzvp .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sofJNIPzvp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sofJNIPzvp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sofJNIPzvp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sofJNIPzvp .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sofJNIPzvp .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sofJNIPzvp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sofJNIPzvp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sofJNIPzvp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sofJNIPzvp .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-sofJNIPzvp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sofJNIPzvp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sofJNIPzvp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sofJNIPzvp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sofJNIPzvp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sofJNIPzvp .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sofJNIPzvp .dropdown-item.active,
.cid-sofJNIPzvp .dropdown-item:active {
  background-color: transparent;
}
.cid-sofJNIPzvp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sofJNIPzvp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sofJNIPzvp .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sofJNIPzvp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-sofJNIPzvp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sofJNIPzvp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sofJNIPzvp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sofJNIPzvp .navbar-buttons {
  text-align: center;
}
.cid-sofJNIPzvp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sofJNIPzvp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sofJNIPzvp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sofJNIPzvp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sofJNIPzvp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sofJNIPzvp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sofJNIPzvp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sofJNIPzvp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sofJNIPzvp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sofJNIPzvp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sofJNIPzvp .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sofJNIPzvp a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sofJNIPzvp a.nav-link:focus {
  outline: none;
}
.cid-sofJNIPzvp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sofJNIPzvp .nav-link:hover,
.cid-sofJNIPzvp .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sofJNIPzvp .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sofJNIPzvp .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-spSj9ACNpD {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-spSj9ACNpD .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-spSj9ACNpD .social-list a:focus {
  text-decoration: none;
}
.cid-spY4OppSDp {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-spY4OppSDp .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-spY4OppSDp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-spY4OppSDp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spY4OppSDp .card-wrapper {
    padding: 4rem;
  }
}
.cid-spY4OppSDp .card-title {
  color: #00b5ae;
}
.cid-spSeLK3fNY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spSeLK3fNY img,
.cid-spSeLK3fNY .item-img {
  width: 100%;
}
.cid-spSeLK3fNY .item:focus,
.cid-spSeLK3fNY span:focus {
  outline: none;
}
.cid-spSeLK3fNY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-spSeLK3fNY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f9f4f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-spSeLK3fNY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-spSeLK3fNY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-spSeLK3fNY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-spSeLK3fNY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-spSeLK3fNY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-spSeLK3fNY .mbr-section-title {
  color: #00b5ae;
}
.cid-spSeLK3fNY .mbr-text,
.cid-spSeLK3fNY .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-spSeLK3fNY .item-title {
  text-align: center;
  color: #00b5ae;
}
.cid-spSeLK3fNY .item-subtitle {
  text-align: left;
}
.cid-spSeLK3fNY .mbr-section-subtitle {
  color: #00b5ae;
}
.cid-spSelYhaQ6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spSk861xHk {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-spSk861xHk .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-spSk861xHk .social-list a:focus {
  text-decoration: none;
}
.cid-spSelYAwjZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-spSelYAwjZ .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-spSelYAwjZ .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-spSelYAwjZ .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spSelYAwjZ .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spSelYAwjZ .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-spSelYAwjZ .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse.show,
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-spSelYAwjZ .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-spSelYAwjZ .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spSelYAwjZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-spSelYAwjZ .navbar {
    flex-wrap: nowrap;
  }
  .cid-spSelYAwjZ .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-spSelYAwjZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse.show,
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-spSelYAwjZ .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spSelYAwjZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spSelYAwjZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-spSelYAwjZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-spSelYAwjZ .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-spSelYAwjZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spSelYAwjZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spSelYAwjZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spSelYAwjZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spSelYAwjZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spSelYAwjZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spSelYAwjZ .dropdown-item.active,
.cid-spSelYAwjZ .dropdown-item:active {
  background-color: transparent;
}
.cid-spSelYAwjZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spSelYAwjZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spSelYAwjZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spSelYAwjZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-spSelYAwjZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spSelYAwjZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spSelYAwjZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spSelYAwjZ .navbar-buttons {
  text-align: center;
}
.cid-spSelYAwjZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSelYAwjZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spSelYAwjZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-spSelYAwjZ a.nav-link:focus {
  outline: none;
}
.cid-spSelYAwjZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spSelYAwjZ .nav-link:hover,
.cid-spSelYAwjZ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spSelYAwjZ .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-spSelYAwjZ .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-spSelYAwjZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-spSelYAwjZ .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-spSelYAwjZ .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-spSelYAwjZ .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spSelYAwjZ .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spSelYAwjZ .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-spSelYAwjZ .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse.show,
.cid-spSelYAwjZ .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-spSelYAwjZ .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-spSelYAwjZ .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spSelYAwjZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spSelYAwjZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-spSelYAwjZ .navbar {
    flex-wrap: nowrap;
  }
  .cid-spSelYAwjZ .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-spSelYAwjZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse.show,
  .cid-spSelYAwjZ .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-spSelYAwjZ .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spSelYAwjZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spSelYAwjZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spSelYAwjZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-spSelYAwjZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-spSelYAwjZ .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-spSelYAwjZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spSelYAwjZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spSelYAwjZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spSelYAwjZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spSelYAwjZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spSelYAwjZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spSelYAwjZ .dropdown-item.active,
.cid-spSelYAwjZ .dropdown-item:active {
  background-color: transparent;
}
.cid-spSelYAwjZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spSelYAwjZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spSelYAwjZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spSelYAwjZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-spSelYAwjZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spSelYAwjZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spSelYAwjZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spSelYAwjZ .navbar-buttons {
  text-align: center;
}
.cid-spSelYAwjZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSelYAwjZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spSelYAwjZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSelYAwjZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spSelYAwjZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-spSelYAwjZ a.nav-link:focus {
  outline: none;
}
.cid-spSelYAwjZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spSelYAwjZ .nav-link:hover,
.cid-spSelYAwjZ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spSelYAwjZ .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-spSelYAwjZ .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-spXBHAROpe {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-spXBHAROpe .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-spXBHAROpe .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-spXBHAROpe .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spXBHAROpe .card-wrapper {
    padding: 4rem;
  }
}
.cid-spXBHAROpe .card-title {
  color: #00b5ae;
}
.cid-spSlOiFLbL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spSlOiFLbL .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spSlOiFLbL .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-spSlOiFLbL .carousel-item .wrap-img {
  text-align: center;
}
.cid-spSlOiFLbL .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-spSlOiFLbL .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #444444;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-spSlOiFLbL .carousel-control.carousel-control-prev {
  left: 29px;
}
.cid-spSlOiFLbL .carousel-control.carousel-control-prev:hover {
  left: 15px;
}
.cid-spSlOiFLbL .carousel-control.carousel-control-next {
  right: 29px;
}
.cid-spSlOiFLbL .carousel-control.carousel-control-next:hover {
  right: 15px;
}
.cid-spSlOiFLbL .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-spSlOiFLbL .carousel-control:hover {
  background-color: #00b5ae;
}
@media (max-width: 767px) {
  .cid-spSlOiFLbL .carousel-control {
    display: none;
  }
  .cid-spSlOiFLbL .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-spSlOiFLbL .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-spSlOiFLbL .cloneditem-1,
.cid-spSlOiFLbL .cloneditem-2,
.cid-spSlOiFLbL .cloneditem-3,
.cid-spSlOiFLbL .cloneditem-4,
.cid-spSlOiFLbL .cloneditem-5 {
  display: none;
}
.cid-spSlOiFLbL .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-spSlOiFLbL .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides2 .cloneditem-1,
  .cid-spSlOiFLbL .carousel-inner.slides2 .cloneditem-2,
  .cid-spSlOiFLbL .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides3 .cloneditem-1,
  .cid-spSlOiFLbL .carousel-inner.slides3 .cloneditem-2,
  .cid-spSlOiFLbL .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides4 .cloneditem-1,
  .cid-spSlOiFLbL .carousel-inner.slides4 .cloneditem-2,
  .cid-spSlOiFLbL .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides5 .cloneditem-1,
  .cid-spSlOiFLbL .carousel-inner.slides5 .cloneditem-2,
  .cid-spSlOiFLbL .carousel-inner.slides5 .cloneditem-3,
  .cid-spSlOiFLbL .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-spSlOiFLbL .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-spSlOiFLbL .carousel-inner.slides6 .cloneditem-1,
  .cid-spSlOiFLbL .carousel-inner.slides6 .cloneditem-2,
  .cid-spSlOiFLbL .carousel-inner.slides6 .cloneditem-3,
  .cid-spSlOiFLbL .carousel-inner.slides6 .cloneditem-4,
  .cid-spSlOiFLbL .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-spSlOiFLbL .mbr-section-title {
  margin: 0;
}
.cid-spSlOiFLbL .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-spSlOiFLbL .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-spSlOiFLbL .slider-clients {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spSlOiFLbL .slider-clients {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-spSlOiFLbL .carousel-control-prev {
    left: 15px !important;
  }
  .cid-spSlOiFLbL .carousel-control-prev:hover {
    left: 0 !important;
  }
  .cid-spSlOiFLbL .carousel-control-next {
    right: 15px !important;
  }
  .cid-spSlOiFLbL .carousel-control-next:hover {
    right: 0 !important;
  }
}
.cid-spSlOiFLbL .mbr-section-title,
.cid-spSlOiFLbL .underline {
  color: #00b5ae;
}
.cid-spSlOiFLbL .mbr-section-subtitle {
  color: #6a2c90;
}
.cid-spSmG4hP9A {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #6a2c90, #6a2c90);
}
.cid-spSmG4hP9A .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-spSmG4hP9A .social-list a:focus {
  text-decoration: none;
}
.cid-sq31pVNqZj.popup-builder {
  background-color: #ffffff;
}
.cid-sq31pVNqZj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sq31pVNqZj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sq31pVNqZj .modal-content,
.cid-sq31pVNqZj .modal-dialog {
  height: auto;
}
.cid-sq31pVNqZj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sq31pVNqZj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sq31pVNqZj .form-wrapper .mbr-form .form-group,
  .cid-sq31pVNqZj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sq31pVNqZj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sq31pVNqZj .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-sq31pVNqZj .mbr-text {
  text-align: center;
}
.cid-sq31pVNqZj .pt-0 {
  padding-top: 0 !important;
}
.cid-sq31pVNqZj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sq31pVNqZj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sq31pVNqZj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sq31pVNqZj .modal-open {
  overflow: hidden;
}
.cid-sq31pVNqZj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sq31pVNqZj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sq31pVNqZj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sq31pVNqZj .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-sq31pVNqZj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sq31pVNqZj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sq31pVNqZj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sq31pVNqZj .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-sq31pVNqZj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sq31pVNqZj .modal-backdrop.fade {
  opacity: 0;
}
.cid-sq31pVNqZj .modal-backdrop.show {
  opacity: .5;
}
.cid-sq31pVNqZj .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sq31pVNqZj .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sq31pVNqZj .modal-header .close:hover {
  opacity: 1;
}
.cid-sq31pVNqZj .modal-header .close:focus {
  outline: none;
}
.cid-sq31pVNqZj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sq31pVNqZj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sq31pVNqZj .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sq31pVNqZj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sq31pVNqZj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sq31pVNqZj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sq31pVNqZj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sq31pVNqZj .modal-sm {
    max-width: 300px;
  }
  .cid-sq31pVNqZj .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sq31pVNqZj .modal-lg,
  .cid-sq31pVNqZj .modal-xl {
    max-width: 800px;
  }
  .cid-sq31pVNqZj .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sq31pVNqZj .modal-xl {
    max-width: 1140px;
  }
  .cid-sq31pVNqZj .container {
    max-width: 1140px;
  }
}
.cid-sq31pVNqZj .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sq31pVNqZj .container {
    max-width: 720px;
  }
}
.cid-sq31pVNqZj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sq31pVNqZj .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-sq31pVNqZj .form-group {
  margin-bottom: 1rem;
}
.cid-sq31pVNqZj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sq31pVNqZj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sq31pVNqZj .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-spY830zojH {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-spY830zojH .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-spY830zojH .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-spY830zojH .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spY830zojH .card-wrapper {
    padding: 4rem;
  }
}
.cid-spY830zojH .card-title {
  color: #00b5ae;
}
.cid-spSvr4jfCJ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spSvr4jfCJ .card .card-img {
  overflow: hidden;
}
.cid-spSvr4jfCJ .card .card-img img {
  transition: all .5s;
}
.cid-spSvr4jfCJ .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-spSvr4jfCJ .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-spSvr4jfCJ .card {
  height: 100%;
}
.cid-spSvr4jfCJ .card .card-wrapper {
  height: 100%;
}
.cid-spSvr4jfCJ .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-spSvr4jfCJ .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-spSvr4jfCJ .card .card-box .card-title {
  margin: 0;
}
.cid-spSvr4jfCJ .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spSvr4jfCJ .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-spSvr4jfCJ .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-spSvr4jfCJ .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-spSvr4jfCJ .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spSvr4jfCJ .card .card-footer .icons-list {
  margin: 0;
}
.cid-spSvr4jfCJ .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-spSvr4jfCJ .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-spSvr4jfCJ .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-spSvr4jfCJ .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-spSvr4jfCJ .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-spSvr4jfCJ .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-spSvr4jfCJ .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-spSvr4jfCJ .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-spSvr4jfCJ .main-title {
  color: #00b5ae;
}
.cid-spSpOTX6Zo {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-spSpOTX6Zo .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-spSpOTX6Zo .social-list a:focus {
  text-decoration: none;
}
.cid-spSpOUJUMS .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-spSpOUJUMS .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-spSpOUJUMS .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-spSpOUJUMS .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spSpOUJUMS .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spSpOUJUMS .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-spSpOUJUMS .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spSpOUJUMS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-spSpOUJUMS .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-spSpOUJUMS .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-spSpOUJUMS .navbar.collapsed.opened .navbar-collapse.show,
.cid-spSpOUJUMS .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-spSpOUJUMS .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-spSpOUJUMS .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-spSpOUJUMS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spSpOUJUMS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spSpOUJUMS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spSpOUJUMS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spSpOUJUMS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spSpOUJUMS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-spSpOUJUMS .navbar {
    flex-wrap: nowrap;
  }
  .cid-spSpOUJUMS .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-spSpOUJUMS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spSpOUJUMS .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-spSpOUJUMS .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-spSpOUJUMS .navbar.opened .navbar-collapse.show,
  .cid-spSpOUJUMS .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-spSpOUJUMS .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-spSpOUJUMS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spSpOUJUMS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spSpOUJUMS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spSpOUJUMS .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spSpOUJUMS .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spSpOUJUMS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spSpOUJUMS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-spSpOUJUMS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-spSpOUJUMS .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-spSpOUJUMS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spSpOUJUMS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spSpOUJUMS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spSpOUJUMS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spSpOUJUMS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spSpOUJUMS .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spSpOUJUMS .dropdown-item.active,
.cid-spSpOUJUMS .dropdown-item:active {
  background-color: transparent;
}
.cid-spSpOUJUMS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spSpOUJUMS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spSpOUJUMS .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spSpOUJUMS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-spSpOUJUMS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spSpOUJUMS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spSpOUJUMS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spSpOUJUMS .navbar-buttons {
  text-align: center;
}
.cid-spSpOUJUMS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spSpOUJUMS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-spSpOUJUMS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spSpOUJUMS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSpOUJUMS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spSpOUJUMS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spSpOUJUMS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSpOUJUMS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spSpOUJUMS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spSpOUJUMS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spSpOUJUMS .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spSpOUJUMS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-spSpOUJUMS a.nav-link:focus {
  outline: none;
}
.cid-spSpOUJUMS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spSpOUJUMS .nav-link:hover,
.cid-spSpOUJUMS .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spSpOUJUMS .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-spSpOUJUMS .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-spY43uu2bI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-spY43uu2bI .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-spY43uu2bI .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-spY43uu2bI .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spY43uu2bI .card-wrapper {
    padding: 4rem;
  }
}
.cid-spY43uu2bI .card-title {
  color: #00b5ae;
}
.cid-spTguYRxcz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-spTguYRxcz .mbr-section-subtitle {
  color: #767676;
}
.cid-spTguZiWaN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-spTguZiWaN H1 {
  color: #00b5ae;
  text-align: center;
}
.cid-spTguZiWaN .mbr-text,
.cid-spTguZiWaN .mbr-section-btn {
  color: #716c80;
}
.cid-spTguZiWaN H3 {
  color: #716c80;
}
.cid-srtrcqreWQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-spTguZKNbP {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-spTguZKNbP .mbr-section-subtitle {
  color: #767676;
}
.cid-spTguZKNbP .formoid {
  margin: auto;
}
.cid-spTguZKNbP .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-spTguZKNbP .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-spTguZKNbP a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-spTguZKNbP a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-spTguZKNbP .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-spTguZKNbP .form-group,
  .cid-spTguZKNbP .input-group-btn,
  .cid-spTguZKNbP .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-spTguZKNbP .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-spTgv06JZ8 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-spTgv0gf4x .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-spTgv0gf4x .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-spTgv0gf4x .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-spTgv0gf4x .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spTgv0gf4x .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spTgv0gf4x .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-spTgv0gf4x .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spTgv0gf4x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-spTgv0gf4x .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-spTgv0gf4x .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-spTgv0gf4x .navbar.collapsed.opened .navbar-collapse.show,
.cid-spTgv0gf4x .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-spTgv0gf4x .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-spTgv0gf4x .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-spTgv0gf4x .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spTgv0gf4x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spTgv0gf4x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spTgv0gf4x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spTgv0gf4x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spTgv0gf4x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-spTgv0gf4x .navbar {
    flex-wrap: nowrap;
  }
  .cid-spTgv0gf4x .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-spTgv0gf4x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spTgv0gf4x .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-spTgv0gf4x .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-spTgv0gf4x .navbar.opened .navbar-collapse.show,
  .cid-spTgv0gf4x .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-spTgv0gf4x .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-spTgv0gf4x .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spTgv0gf4x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spTgv0gf4x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spTgv0gf4x .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spTgv0gf4x .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spTgv0gf4x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spTgv0gf4x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-spTgv0gf4x .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-spTgv0gf4x .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-spTgv0gf4x .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spTgv0gf4x .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spTgv0gf4x .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spTgv0gf4x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spTgv0gf4x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spTgv0gf4x .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spTgv0gf4x .dropdown-item.active,
.cid-spTgv0gf4x .dropdown-item:active {
  background-color: transparent;
}
.cid-spTgv0gf4x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spTgv0gf4x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spTgv0gf4x .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spTgv0gf4x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-spTgv0gf4x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spTgv0gf4x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spTgv0gf4x ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spTgv0gf4x .navbar-buttons {
  text-align: center;
}
.cid-spTgv0gf4x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spTgv0gf4x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-spTgv0gf4x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spTgv0gf4x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spTgv0gf4x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spTgv0gf4x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spTgv0gf4x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spTgv0gf4x nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spTgv0gf4x nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spTgv0gf4x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spTgv0gf4x .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spTgv0gf4x a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-spTgv0gf4x a.nav-link:focus {
  outline: none;
}
.cid-spTgv0gf4x .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spTgv0gf4x .nav-link:hover,
.cid-spTgv0gf4x .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spTgv0gf4x .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-spTgv0gf4x .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-spTgv0LAlU {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-spTgv0LAlU .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-spTgv0LAlU .social-list a:focus {
  text-decoration: none;
}
.cid-srt67moXaq {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-srt67moXaq .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-srt67moXaq .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-srt67moXaq .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srt67moXaq .card-wrapper {
    padding: 4rem;
  }
}
.cid-srt67moXaq .card-title {
  color: #00b5ae;
}
.cid-srt67prKPr .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-srt67prKPr .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-srt67prKPr .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-srt67prKPr .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-srt67prKPr .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-srt67prKPr .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-srt67prKPr .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srt67prKPr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-srt67prKPr .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-srt67prKPr .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-srt67prKPr .navbar.collapsed.opened .navbar-collapse.show,
.cid-srt67prKPr .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-srt67prKPr .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-srt67prKPr .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-srt67prKPr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-srt67prKPr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srt67prKPr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srt67prKPr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-srt67prKPr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srt67prKPr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-srt67prKPr .navbar {
    flex-wrap: nowrap;
  }
  .cid-srt67prKPr .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-srt67prKPr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srt67prKPr .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-srt67prKPr .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-srt67prKPr .navbar.opened .navbar-collapse.show,
  .cid-srt67prKPr .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-srt67prKPr .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-srt67prKPr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-srt67prKPr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srt67prKPr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srt67prKPr .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-srt67prKPr .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-srt67prKPr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srt67prKPr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-srt67prKPr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-srt67prKPr .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-srt67prKPr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-srt67prKPr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-srt67prKPr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srt67prKPr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srt67prKPr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srt67prKPr .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-srt67prKPr .dropdown-item.active,
.cid-srt67prKPr .dropdown-item:active {
  background-color: transparent;
}
.cid-srt67prKPr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srt67prKPr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srt67prKPr .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srt67prKPr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-srt67prKPr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srt67prKPr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srt67prKPr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-srt67prKPr .navbar-buttons {
  text-align: center;
}
.cid-srt67prKPr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-srt67prKPr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srt67prKPr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srt67prKPr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srt67prKPr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srt67prKPr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srt67prKPr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srt67prKPr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srt67prKPr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srt67prKPr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srt67prKPr .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-srt67prKPr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-srt67prKPr a.nav-link:focus {
  outline: none;
}
.cid-srt67prKPr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-srt67prKPr .nav-link:hover,
.cid-srt67prKPr .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-srt67prKPr .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-srt67prKPr .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-srtA6AVkjg {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-srtA6AVkjg .item {
  padding-bottom: 2rem;
}
.cid-srtA6AVkjg .item-wrapper {
  position: relative;
}
.cid-srtA6AVkjg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-srtA6AVkjg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-srtA6AVkjg .carousel-control,
.cid-srtA6AVkjg .close {
  background: #1b1b1b;
}
.cid-srtA6AVkjg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-srtA6AVkjg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-srtA6AVkjg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-srtA6AVkjg .carousel-control-next span {
  margin-left: 5px;
}
.cid-srtA6AVkjg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-srtA6AVkjg .close::before {
  content: '\e91a';
}
.cid-srtA6AVkjg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-srtA6AVkjg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-srtA6AVkjg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-srtA6AVkjg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-srtA6AVkjg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-srtA6AVkjg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-srtA6AVkjg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-srtA6AVkjg .carousel-indicators li.active,
.cid-srtA6AVkjg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-srtA6AVkjg .carousel-indicators li::after,
.cid-srtA6AVkjg .carousel-indicators li::before {
  content: none;
}
.cid-srtA6AVkjg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-srtA6AVkjg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-srtA6AVkjg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-srtA6AVkjg .carousel-indicators {
    display: none;
  }
}
.cid-srtA6AVkjg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-srtA6AVkjg .carousel-inner > .active {
  display: block;
}
.cid-srtA6AVkjg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-srtA6AVkjg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-srtA6AVkjg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-srtA6AVkjg .carousel-control,
  .cid-srtA6AVkjg .carousel-indicators,
  .cid-srtA6AVkjg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-srtA6AVkjg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-srtA6AVkjg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-srtA6AVkjg .carousel-indicators .active,
.cid-srtA6AVkjg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-srtA6AVkjg .carousel-indicators .active {
  background: #fff;
}
.cid-srtA6AVkjg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-srtA6AVkjg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-srtA6AVkjg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-srtA6AVkjg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-srtA6AVkjg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-srtA6AVkjg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-srtA6AVkjg .carousel {
  width: 100%;
}
.cid-srtA6AVkjg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-srtA6AVkjg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-srtA6AVkjg .modal.fade .modal-dialog,
.cid-srtA6AVkjg .modal.in .modal-dialog {
  transform: none;
}
.cid-srtA6AVkjg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-srtA6AVkjg H6 {
  text-align: center;
}
.cid-srtA6AVkjg H4 {
  color: #00b5ae;
}
.cid-srt67peCaN {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-srt67pUTTy {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-srt67pUTTy .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-srt67pUTTy .social-list a:focus {
  text-decoration: none;
}
.cid-srtrpTZ5fE {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/3040791-2000x1333.jpg");
}
.cid-srtrpTZ5fE .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-srtrpTZ5fE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-srtrpTZ5fE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-srtrpTZ5fE .card-wrapper {
    padding: 4rem;
  }
}
.cid-srtrpTZ5fE .card-title {
  color: #00b5ae;
}
.cid-srtsSRlHa3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-srtsSRlHa3 .container-fluid {
  padding: 0 3rem;
}
.cid-srtsSRlHa3 .mbr-section-subtitle {
  color: #767676;
}
.cid-srtsSRlHa3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-srtsSRlHa3 .table-wrapper {
  margin: 0 auto;
}
.cid-srtsSRlHa3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-srtsSRlHa3 table thead tr {
  border: none !important;
}
.cid-srtsSRlHa3 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-srtsSRlHa3 table tr td {
  border-color: #c1c1c1;
}
.cid-srtsSRlHa3 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-srtsSRlHa3 tr:hover {
  background-color: #ffffff !important;
}
.cid-srtsSRlHa3 th:after,
.cid-srtsSRlHa3 th:before {
  display: none !important;
}
.cid-srtsSRlHa3 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-srtsSRlHa3 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-srtsSRlHa3 table th,
  .cid-srtsSRlHa3 table td {
    padding: .75rem;
  }
}
.cid-srtsSRlHa3 .body-item {
  text-align: center;
}
.cid-srtsSRlHa3 .mbr-text {
  color: #767676;
}
.cid-srtsSRlHa3 .head-item {
  color: #232323;
}
.cid-srtsSRlHa3 .mbr-section-title,
.cid-srtsSRlHa3 .head-item {
  color: #00b5ae;
}
.cid-srtrpVqELK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-srtrpVD2hn {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-srtrpVD2hn .mbr-section-subtitle {
  color: #767676;
}
.cid-srtrpVD2hn .formoid {
  margin: auto;
}
.cid-srtrpVD2hn .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-srtrpVD2hn .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-srtrpVD2hn a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-srtrpVD2hn a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-srtrpVD2hn .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-srtrpVD2hn .form-group,
  .cid-srtrpVD2hn .input-group-btn,
  .cid-srtrpVD2hn .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-srtrpVD2hn .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-srtrpVU4MZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-srtrpW6H2T .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #00b5ae;
  background: none;
}
.cid-srtrpW6H2T .navbar.opened {
  transition: all 0.3s;
  background: #00b5ae !important;
}
.cid-srtrpW6H2T .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-srtrpW6H2T .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-srtrpW6H2T .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-srtrpW6H2T .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-srtrpW6H2T .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srtrpW6H2T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-srtrpW6H2T .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-srtrpW6H2T .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-srtrpW6H2T .navbar.collapsed.opened .navbar-collapse.show,
.cid-srtrpW6H2T .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-srtrpW6H2T .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-srtrpW6H2T .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-srtrpW6H2T .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-srtrpW6H2T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srtrpW6H2T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srtrpW6H2T .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-srtrpW6H2T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srtrpW6H2T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-srtrpW6H2T .navbar {
    flex-wrap: nowrap;
  }
  .cid-srtrpW6H2T .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-srtrpW6H2T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srtrpW6H2T .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-srtrpW6H2T .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-srtrpW6H2T .navbar.opened .navbar-collapse.show,
  .cid-srtrpW6H2T .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-srtrpW6H2T .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-srtrpW6H2T .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-srtrpW6H2T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srtrpW6H2T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srtrpW6H2T .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-srtrpW6H2T .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-srtrpW6H2T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srtrpW6H2T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-srtrpW6H2T .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-srtrpW6H2T .navbar.navbar-short {
  background: #00b5ae !important;
  min-height: 60px;
}
.cid-srtrpW6H2T .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-srtrpW6H2T .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-srtrpW6H2T .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srtrpW6H2T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srtrpW6H2T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srtrpW6H2T .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-srtrpW6H2T .dropdown-item.active,
.cid-srtrpW6H2T .dropdown-item:active {
  background-color: transparent;
}
.cid-srtrpW6H2T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srtrpW6H2T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srtrpW6H2T .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srtrpW6H2T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00b5ae;
}
.cid-srtrpW6H2T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srtrpW6H2T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srtrpW6H2T ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-srtrpW6H2T .navbar-buttons {
  text-align: center;
}
.cid-srtrpW6H2T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-srtrpW6H2T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srtrpW6H2T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srtrpW6H2T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srtrpW6H2T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srtrpW6H2T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srtrpW6H2T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srtrpW6H2T nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srtrpW6H2T nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srtrpW6H2T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srtrpW6H2T .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-srtrpW6H2T a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-srtrpW6H2T a.nav-link:focus {
  outline: none;
}
.cid-srtrpW6H2T .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-srtrpW6H2T .nav-link:hover,
.cid-srtrpW6H2T .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-srtrpW6H2T .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-srtrpW6H2T .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-srtrpWzx6j {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #00b5ae, #00b5ae);
}
.cid-srtrpWzx6j .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-srtrpWzx6j .social-list a:focus {
  text-decoration: none;
}
