body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.84rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.92rem;
    font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #5b828f !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #e9204f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5b828f !important;
  border-color: #5b828f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #3d5860 !important;
  border-color: #3d5860 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3d5860 !important;
  border-color: #3d5860 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
  color: #616161 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #616161 !important;
  background-color: #bababa !important;
  border-color: #bababa !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #616161 !important;
  background-color: #bababa !important;
  border-color: #bababa !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e9204f !important;
  border-color: #e9204f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ac1135 !important;
  border-color: #ac1135 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ac1135 !important;
  border-color: #ac1135 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #334951;
  color: #334951;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #5b828f;
  border-color: #5b828f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5b828f !important;
  border-color: #5b828f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #adadad;
  color: #adadad;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #616161;
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #616161 !important;
  background-color: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #940f2e;
  color: #940f2e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #e9204f;
  border-color: #e9204f;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e9204f !important;
  border-color: #e9204f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #5b828f !important;
}
.text-secondary {
  color: #e0e0e0 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #e9204f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #334951 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #adadad !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e9204f !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #e9204f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5b828f;
  border-color: #5b828f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5b828f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a4bdc5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbdae2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #5b828f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5b828f;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5b828f;
  border-bottom-color: #5b828f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #5b828f !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: #e0e0e0 !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='%235b828f' %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;
}
hr {
  border: none;
  background-color: #e9204f;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #e9204f;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #e9204f;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #e9204f;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #e9204f !important;
}
.btn-danger:hover {
  color: #e9204f !important;
}
.btn-warning:hover {
  color: #879a9f !important;
}
.btn-success:hover {
  color: #f7ed4a !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #e0e0e0 !important;
}
.btn-primary:hover {
  color: #5b828f !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #e9204f !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #e9204f;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #e0e0e0 !important;
}
.btn-success-outline:hover::before {
  background-color: #f7ed4a !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #5b828f !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #879a9f !important;
}
.btn-danger-outline:hover::before {
  background-color: #e9204f !important;
}
.cid-t9kPxpkcAy .navbar {
  background: #5b828f;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9kPxpkcAy .navbar-dropdown.bg-color.transparent.opened {
  background: #5b828f;
}
.cid-t9kPxpkcAy a {
  font-style: normal;
}
.cid-t9kPxpkcAy .show {
  overflow: visible;
}
.cid-t9kPxpkcAy .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-t9kPxpkcAy .dropdown-item:active {
  background-color: transparent;
}
.cid-t9kPxpkcAy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t9kPxpkcAy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .nav-item:focus,
.cid-t9kPxpkcAy .nav-link:focus {
  outline: none;
}
.cid-t9kPxpkcAy .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t9kPxpkcAy .menu-logo {
  margin-right: auto;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu {
  background: #5b828f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t9kPxpkcAy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t9kPxpkcAy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-t9kPxpkcAy button.navbar-toggler:focus {
  outline: none;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-t9kPxpkcAy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .btn {
  display: -webkit-flex;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-t9kPxpkcAy .collapsed button.navbar-toggler {
  display: block;
}
.cid-t9kPxpkcAy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t9kPxpkcAy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t9kPxpkcAy.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy img {
    height: 3.8rem !important;
  }
  .cid-t9kPxpkcAy .btn {
    display: -webkit-flex;
  }
  .cid-t9kPxpkcAy button.navbar-toggler {
    display: block;
  }
  .cid-t9kPxpkcAy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing,
  .cid-t9kPxpkcAy .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-t9kPxpkcAy .nav-link {
    justify-content: start!important;
  }
  .cid-t9kPxpkcAy .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-t9kPxpkcAy .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-t9kPxpkcAy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t9kPxpkcAy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t9kPxpkcAy .nav-link:hover,
.cid-t9kPxpkcAy .dropdown-item:hover {
  color: #a8bfc7 !important;
}
@media (min-width: 1500px) {
  .cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-t9kPxpkcAy .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-t9kR0iCzRo {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #ffffff;
}
.cid-t9kR0iCzRo .title-wrap {
  display: flex;
}
@media (max-width: 959px) {
  .cid-t9kR0iCzRo .title-wrap {
    display: block;
  }
}
.cid-t9kR0iCzRo .mbr-section-title {
  color: #1f1437;
}
.cid-t9kR0iCzRo .mbr-title-addition {
  color: #1f1437;
  align-self: flex-end;
  margin-bottom: 20px;
}
.cid-t9kR0iCzRo .mbr-title-addition span {
  position: relative;
}
.cid-t9kR0iCzRo .mbr-title-addition span svg {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 150%;
  height: 9px;
  display: none;
}
@media (max-width: 959px) {
  .cid-t9kR0iCzRo .mbr-title-addition span svg {
    left: -12px;
  }
}
.cid-t9kR0iCzRo .mbr-title-addition span svg path {
  fill: #33d5ad;
}
.cid-t9kR0iCzRo .mbr-section-subtitle {
  color: #1f1437;
}
.cid-t9kR0iCzRo .mbr-section-subtitle span {
  position: relative;
}
.cid-t9kR0iCzRo .mbr-section-subtitle span svg {
  position: absolute;
  right: -50px;
  bottom: 50px;
  transform: rotate(20deg);
  width: 68px;
  height: 62px;
}
.cid-t9kR0iCzRo .mbr-section-subtitle span svg path {
  fill: #1f1437;
}
@media (max-width: 599px) {
  .cid-t9kR0iCzRo .mbr-section-subtitle span svg {
    display: none;
  }
}
.cid-t9kR0iCzRo .mbr-text {
  color: #1f1437;
  margin: 40px 0;
}
.cid-t9kR0iCzRo .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .cid-t9kR0iCzRo .mbr-section-btn {
    justify-content: center!important;
  }
}
.cid-t9kR0iCzRo .right-images {
  position: absolute;
  width: 65%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
}
@media (max-width: 959px) {
  .cid-t9kR0iCzRo .right-images {
    display: none;
  }
}
.cid-t9kR0iCzRo .animated-container {
  width: 150%;
  height: 200%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  transform: rotate(25deg);
}
.cid-t9kR0iCzRo .img {
  width: 270px;
  height: 200px;
  margin: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cid-t9kR0iCzRo .img1 {
  background-image: url("../../../assets/images/mbr-1667x1920.png");
}
.cid-t9kR0iCzRo .img2 {
  background-image: url("../../../assets/images/toptone-160x81.png");
}
.cid-t9kR0iCzRo .bottom-images {
  display: none;
}
@media (max-width: 959px) {
  .cid-t9kR0iCzRo .bottom-images {
    display: block;
    position: absolute;
    width: 100%;
    height: 400px;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 690px) {
  .cid-t9kR0iCzRo .bottom-images {
    display: none;
  }
}
.cid-t9kR0iCzRo .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-t9kR0iCzRo .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-t9kR0iCzRo .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t9kR0iCzRo .wave-container .wave svg path {
  fill: #5b828f;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
@keyframes cooky {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  25% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(5deg) scale(1, 1);
    animation-timing-function: linear;
  }
  50% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  75% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(-5deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-t9kR0iCzRo .mbr-text,
.cid-t9kR0iCzRo .mbr-section-btn {
  text-align: left;
  color: #3a5158;
}
.cid-tbAWspKXlk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #5b828f;
}
@media (max-width: 767px) {
  .cid-tbAWspKXlk h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tbAWspKXlk .container {
    position: relative;
  }
  .cid-tbAWspKXlk .row {
    margin: 0;
  }
  .cid-tbAWspKXlk h2 {
    margin: 0;
  }
}
.cid-tbAWspKXlk .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tbAWspKXlk .mbr-text {
  margin-top: 1.4rem;
  color: #3a5158;
}
.cid-tbBmJZxxzx {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tbBmJZxxzx svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tbBmJZxxzx #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tbBmJZxxzx img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(250, 250, 250, 0.35);
}
@media (max-width: 576px) {
  .cid-tbBmJZxxzx img {
    width: 100%;
    left: 0;
  }
}
.cid-tbBmJZxxzx H1 {
  color: #000000;
}
.cid-tbBmJZxxzx .mbr-text,
.cid-tbBmJZxxzx .mbr-section-btn {
  color: #716c80;
}
.cid-tbAWlYBEOA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tbAWlYBEOA h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tbAWlYBEOA .container {
    position: relative;
  }
  .cid-tbAWlYBEOA .row {
    margin: 0;
  }
  .cid-tbAWlYBEOA h2 {
    margin: 0;
  }
}
.cid-tbAWlYBEOA .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tbAWlYBEOA .mbr-text {
  margin-top: 1.4rem;
  color: #3a5158;
}
.cid-tbAV18AFkA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tbAV18AFkA .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tbAV18AFkA section {
  position: relative;
}
.cid-tbAV18AFkA h4 {
  margin: 0;
}
.cid-tbAV18AFkA a {
  font-weight: 300;
}
.cid-tbAV18AFkA .row {
  align-items: center;
}
.cid-tbAV18AFkA .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tbAV18AFkA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tbAV18AFkA .img1 {
  color: #ffffff;
}
.cid-tbAV18AFkA .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .align-left,
  .cid-tbAV18AFkA .align-right {
    text-align: center;
  }
  .cid-tbAV18AFkA .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tbAV18AFkA .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tbAV18AFkA .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tbAV18AFkA .item-title {
  color: #c1c1c1;
}
.cid-tbAV18AFkA H4 {
  color: #c1c1c1;
}
.cid-t9kPxpkcAy .navbar {
  background: #5b828f;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9kPxpkcAy .navbar-dropdown.bg-color.transparent.opened {
  background: #5b828f;
}
.cid-t9kPxpkcAy a {
  font-style: normal;
}
.cid-t9kPxpkcAy .show {
  overflow: visible;
}
.cid-t9kPxpkcAy .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-t9kPxpkcAy .dropdown-item:active {
  background-color: transparent;
}
.cid-t9kPxpkcAy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t9kPxpkcAy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .nav-item:focus,
.cid-t9kPxpkcAy .nav-link:focus {
  outline: none;
}
.cid-t9kPxpkcAy .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t9kPxpkcAy .menu-logo {
  margin-right: auto;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu {
  background: #5b828f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t9kPxpkcAy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t9kPxpkcAy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-t9kPxpkcAy button.navbar-toggler:focus {
  outline: none;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-t9kPxpkcAy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .btn {
  display: -webkit-flex;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-t9kPxpkcAy .collapsed button.navbar-toggler {
  display: block;
}
.cid-t9kPxpkcAy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t9kPxpkcAy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t9kPxpkcAy.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy img {
    height: 3.8rem !important;
  }
  .cid-t9kPxpkcAy .btn {
    display: -webkit-flex;
  }
  .cid-t9kPxpkcAy button.navbar-toggler {
    display: block;
  }
  .cid-t9kPxpkcAy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing,
  .cid-t9kPxpkcAy .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-t9kPxpkcAy .nav-link {
    justify-content: start!important;
  }
  .cid-t9kPxpkcAy .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-t9kPxpkcAy .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-t9kPxpkcAy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t9kPxpkcAy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t9kPxpkcAy .nav-link:hover,
.cid-t9kPxpkcAy .dropdown-item:hover {
  color: #a8bfc7 !important;
}
@media (min-width: 1500px) {
  .cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-t9kPxpkcAy .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-t9p9JIU5Qy {
  padding-top: 240px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/services-3-1920x1080.png");
}
.cid-t9p9JIU5Qy .mbr-iconfont2 {
  color: #9ec4d1;
}
.cid-t9p9JIU5Qy .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-t9p9JIU5Qy .card-inner {
  background-color: #ffffff;
  transition: 0.7s;
  z-index: 10;
}
.cid-t9p9JIU5Qy .btn {
  margin-left: 0rem;
  color: #101010 !important;
}
.cid-t9p9JIU5Qy .row {
  padding-bottom: 8rem;
}
.cid-t9p9JIU5Qy .link {
  margin: 0;
}
.cid-t9p9JIU5Qy .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-t9p9JIU5Qy .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #9ec4d1;
  transition: 0.7s;
}
.cid-t9p9JIU5Qy .card-img {
  margin-bottom: 3.2rem;
}
.cid-t9p9JIU5Qy .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t9p9JIU5Qy .card:hover .card-inner {
  background-color: #5b828f;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-t9p9JIU5Qy .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-t9p9JIU5Qy .card:hover .card-title {
  color: #ffffff;
}
.cid-t9p9JIU5Qy .card:hover .card-title:after {
  background: #ffffff;
}
.cid-t9p9JIU5Qy .card:hover .mbr-text {
  color: #ffffff;
}
.cid-t9p9JIU5Qy .media-container-row {
  align-items: flex-end;
}
.cid-t9p9JIU5Qy .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-t9p9JIU5Qy .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-t9p9JIU5Qy .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-t9p9JIU5Qy .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-t9p9JIU5Qy .card {
    margin-bottom: 2rem;
  }
  .cid-t9p9JIU5Qy .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t9p9JIU5Qy .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-t9p9JIU5Qy .card {
  position: relative;
}
.cid-t9p9JIU5Qy .card-3::after {
  content: '';
  background-color: #ffffff;
  height: 0px;
  width: 0%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
  opacity: 1;
}
.cid-t9p9JIU5Qy .card:first-child .card-inner {
  background-color: #5b828f;
}
.cid-t9p9JIU5Qy .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-t9p9JIU5Qy .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-t9p9JIU5Qy .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #ffffff !important;
}
.cid-t9p9JIU5Qy .card:first-child .card-inner:hover .card-title:after {
  background: #ffffff;
}
.cid-t9p9JIU5Qy .btn:hover {
  color: #ffffff !important;
}
.cid-t9p9JIU5Qy .line-title {
  width: 40px;
  height: 2px;
  background-color: #e9204f;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-t9p9JIU5Qy .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #e9204f;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-t9HqzdOMne {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.cid-t9HqzdOMne .container {
  max-width: 1400px;
}
.cid-t9HqzdOMne .card-img2 span {
  padding-top: 6px;
}
.cid-t9HqzdOMne .soc-item a {
  padding-top: 5px;
}
.cid-t9HqzdOMne .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-t9HqzdOMne .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-t9HqzdOMne .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-t9HqzdOMne .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t9HqzdOMne svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-t9HqzdOMne #e2_shape {
  fill: #5b828f !important;
}
.cid-t9HqzdOMne .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-t9HqzdOMne .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-t9HqzdOMne .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9HqzdOMne .card-img {
  width: auto;
}
.cid-t9HqzdOMne .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-t9HqzdOMne .soc-item span {
  font-size: 1.4rem;
}
.cid-t9HqzdOMne .soc-item:hover span {
  color: #5b828f !important;
}
.cid-t9HqzdOMne .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-t9HqzdOMne .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-t9HqzdOMne .media-wrap {
  margin-bottom: 1rem;
}
.cid-t9HqzdOMne .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t9HqzdOMne img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-t9HqzdOMne .item {
    justify-content: center;
  }
  .cid-t9HqzdOMne .quote::after {
    left: 60px;
  }
}
.cid-t9HqzdOMne .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-t9HqzdOMne .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t9HqzdOMne .text1 {
  color: #ffffff;
}
.cid-t9HqzdOMne .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-t9HqzdOMne H5 {
  color: #ffffff;
}
.cid-t9HqzdOMne .theme {
  color: #ffffff;
}
.cid-t9HqzdOMne .copyright > p {
  color: #ff3366;
}
.cid-t9HqzdOMne .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tbAV18AFkA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tbAV18AFkA .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tbAV18AFkA section {
  position: relative;
}
.cid-tbAV18AFkA h4 {
  margin: 0;
}
.cid-tbAV18AFkA a {
  font-weight: 300;
}
.cid-tbAV18AFkA .row {
  align-items: center;
}
.cid-tbAV18AFkA .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tbAV18AFkA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tbAV18AFkA .img1 {
  color: #ffffff;
}
.cid-tbAV18AFkA .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .align-left,
  .cid-tbAV18AFkA .align-right {
    text-align: center;
  }
  .cid-tbAV18AFkA .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tbAV18AFkA .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tbAV18AFkA .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tbAV18AFkA .item-title {
  color: #c1c1c1;
}
.cid-tbAV18AFkA H4 {
  color: #c1c1c1;
}
.cid-t9kPxpkcAy .navbar {
  background: #5b828f;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9kPxpkcAy .navbar-dropdown.bg-color.transparent.opened {
  background: #5b828f;
}
.cid-t9kPxpkcAy a {
  font-style: normal;
}
.cid-t9kPxpkcAy .show {
  overflow: visible;
}
.cid-t9kPxpkcAy .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-t9kPxpkcAy .dropdown-item:active {
  background-color: transparent;
}
.cid-t9kPxpkcAy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t9kPxpkcAy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .nav-item:focus,
.cid-t9kPxpkcAy .nav-link:focus {
  outline: none;
}
.cid-t9kPxpkcAy .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t9kPxpkcAy .menu-logo {
  margin-right: auto;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu {
  background: #5b828f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t9kPxpkcAy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t9kPxpkcAy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-t9kPxpkcAy button.navbar-toggler:focus {
  outline: none;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-t9kPxpkcAy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .btn {
  display: -webkit-flex;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-t9kPxpkcAy .collapsed button.navbar-toggler {
  display: block;
}
.cid-t9kPxpkcAy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t9kPxpkcAy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t9kPxpkcAy.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy img {
    height: 3.8rem !important;
  }
  .cid-t9kPxpkcAy .btn {
    display: -webkit-flex;
  }
  .cid-t9kPxpkcAy button.navbar-toggler {
    display: block;
  }
  .cid-t9kPxpkcAy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing,
  .cid-t9kPxpkcAy .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-t9kPxpkcAy .nav-link {
    justify-content: start!important;
  }
  .cid-t9kPxpkcAy .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-t9kPxpkcAy .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-t9kPxpkcAy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t9kPxpkcAy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t9kPxpkcAy .nav-link:hover,
.cid-t9kPxpkcAy .dropdown-item:hover {
  color: #a8bfc7 !important;
}
@media (min-width: 1500px) {
  .cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-t9kPxpkcAy .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-t9pzeDSAyv {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9pzeDSAyv h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-t9pzeDSAyv .container {
    position: relative;
  }
  .cid-t9pzeDSAyv .row {
    margin: 0;
  }
  .cid-t9pzeDSAyv h2 {
    margin: 0;
  }
}
.cid-t9pzeDSAyv .mbr-section-subtitle {
  color: #e9204f;
}
.cid-t9pzeDSAyv .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-t9pzeDSAyv P {
  text-align: left;
}
.cid-tbAV18AFkA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tbAV18AFkA .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tbAV18AFkA section {
  position: relative;
}
.cid-tbAV18AFkA h4 {
  margin: 0;
}
.cid-tbAV18AFkA a {
  font-weight: 300;
}
.cid-tbAV18AFkA .row {
  align-items: center;
}
.cid-tbAV18AFkA .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tbAV18AFkA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tbAV18AFkA .img1 {
  color: #ffffff;
}
.cid-tbAV18AFkA .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .align-left,
  .cid-tbAV18AFkA .align-right {
    text-align: center;
  }
  .cid-tbAV18AFkA .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tbAV18AFkA .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tbAV18AFkA .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tbAV18AFkA .item-title {
  color: #c1c1c1;
}
.cid-tbAV18AFkA H4 {
  color: #c1c1c1;
}
.cid-t9kPxpkcAy .navbar {
  background: #5b828f;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9kPxpkcAy .navbar-dropdown.bg-color.transparent.opened {
  background: #5b828f;
}
.cid-t9kPxpkcAy a {
  font-style: normal;
}
.cid-t9kPxpkcAy .show {
  overflow: visible;
}
.cid-t9kPxpkcAy .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-t9kPxpkcAy .dropdown-item:active {
  background-color: transparent;
}
.cid-t9kPxpkcAy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t9kPxpkcAy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .nav-item:focus,
.cid-t9kPxpkcAy .nav-link:focus {
  outline: none;
}
.cid-t9kPxpkcAy .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t9kPxpkcAy .menu-logo {
  margin-right: auto;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu {
  background: #5b828f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t9kPxpkcAy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t9kPxpkcAy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-t9kPxpkcAy button.navbar-toggler:focus {
  outline: none;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-t9kPxpkcAy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .btn {
  display: -webkit-flex;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-t9kPxpkcAy .collapsed button.navbar-toggler {
  display: block;
}
.cid-t9kPxpkcAy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t9kPxpkcAy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t9kPxpkcAy.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy img {
    height: 3.8rem !important;
  }
  .cid-t9kPxpkcAy .btn {
    display: -webkit-flex;
  }
  .cid-t9kPxpkcAy button.navbar-toggler {
    display: block;
  }
  .cid-t9kPxpkcAy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing,
  .cid-t9kPxpkcAy .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-t9kPxpkcAy .nav-link {
    justify-content: start!important;
  }
  .cid-t9kPxpkcAy .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-t9kPxpkcAy .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-t9kPxpkcAy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t9kPxpkcAy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t9kPxpkcAy .nav-link:hover,
.cid-t9kPxpkcAy .dropdown-item:hover {
  color: #a8bfc7 !important;
}
@media (min-width: 1500px) {
  .cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-t9kPxpkcAy .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-t9pyP5JivQ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9pyP5JivQ h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-t9pyP5JivQ .container {
    position: relative;
  }
  .cid-t9pyP5JivQ .row {
    margin: 0;
  }
  .cid-t9pyP5JivQ h2 {
    margin: 0;
  }
}
.cid-t9pyP5JivQ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-t9pyP5JivQ .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-tbAV18AFkA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tbAV18AFkA .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tbAV18AFkA section {
  position: relative;
}
.cid-tbAV18AFkA h4 {
  margin: 0;
}
.cid-tbAV18AFkA a {
  font-weight: 300;
}
.cid-tbAV18AFkA .row {
  align-items: center;
}
.cid-tbAV18AFkA .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tbAV18AFkA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tbAV18AFkA .img1 {
  color: #ffffff;
}
.cid-tbAV18AFkA .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .align-left,
  .cid-tbAV18AFkA .align-right {
    text-align: center;
  }
  .cid-tbAV18AFkA .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tbAV18AFkA .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tbAV18AFkA .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tbAV18AFkA .item-title {
  color: #c1c1c1;
}
.cid-tbAV18AFkA H4 {
  color: #c1c1c1;
}
.cid-t9kPxpkcAy .navbar {
  background: #5b828f;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9kPxpkcAy .navbar-dropdown.bg-color.transparent.opened {
  background: #5b828f;
}
.cid-t9kPxpkcAy a {
  font-style: normal;
}
.cid-t9kPxpkcAy .show {
  overflow: visible;
}
.cid-t9kPxpkcAy .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-t9kPxpkcAy .dropdown-item:active {
  background-color: transparent;
}
.cid-t9kPxpkcAy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t9kPxpkcAy .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .nav-item:focus,
.cid-t9kPxpkcAy .nav-link:focus {
  outline: none;
}
.cid-t9kPxpkcAy .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9kPxpkcAy .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t9kPxpkcAy .menu-logo {
  margin-right: auto;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu {
  background: #5b828f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9kPxpkcAy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9kPxpkcAy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t9kPxpkcAy .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t9kPxpkcAy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t9kPxpkcAy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-t9kPxpkcAy button.navbar-toggler:focus {
  outline: none;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t9kPxpkcAy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t9kPxpkcAy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-t9kPxpkcAy .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .btn {
  display: -webkit-flex;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t9kPxpkcAy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t9kPxpkcAy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t9kPxpkcAy .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-t9kPxpkcAy .collapsed button.navbar-toggler {
  display: block;
}
.cid-t9kPxpkcAy .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t9kPxpkcAy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t9kPxpkcAy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t9kPxpkcAy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t9kPxpkcAy.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy img {
    height: 3.8rem !important;
  }
  .cid-t9kPxpkcAy .btn {
    display: -webkit-flex;
  }
  .cid-t9kPxpkcAy button.navbar-toggler {
    display: block;
  }
  .cid-t9kPxpkcAy .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t9kPxpkcAy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing,
  .cid-t9kPxpkcAy .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t9kPxpkcAy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t9kPxpkcAy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t9kPxpkcAy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t9kPxpkcAy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-t9kPxpkcAy .nav-link {
    justify-content: start!important;
  }
  .cid-t9kPxpkcAy .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-t9kPxpkcAy .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-t9kPxpkcAy .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-t9kPxpkcAy .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t9kPxpkcAy .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t9kPxpkcAy .nav-link:hover,
.cid-t9kPxpkcAy .dropdown-item:hover {
  color: #a8bfc7 !important;
}
@media (min-width: 1500px) {
  .cid-t9kPxpkcAy .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-t9kPxpkcAy .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-t9pC75dCJl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t9pC75dCJl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t9pC75dCJl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t9pC75dCJl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t9pC75dCJl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t9pC75dCJl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #66a4b9);
}
.cid-t9pC75dCJl .icon-focus {
  display: none;
}
.cid-t9pC75dCJl .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-t9pC75dCJl ul {
  font-size: 0;
}
.cid-t9pC75dCJl .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-t9pC75dCJl .mbr-gallery-filter ul li .btn.active,
.cid-t9pC75dCJl .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-t9pC75dCJl .mbr-gallery-filter ul li .btn.active:after,
.cid-t9pC75dCJl .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5b828f, #e0e0e0);
}
.cid-t9pC75dCJl .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-t9pC75dCJl .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-t9pC75dCJl .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-t9pC75dCJl .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-t9pC75dCJl .btn:hover {
  background: transparent !important;
}
.cid-t9pC75dCJl .btn:hover:before {
  background: transparent !important;
}
.cid-t9pC75dCJl .btn:before {
  background-color: transparent !important;
}
.cid-t9pC75dCJl .btn:focus {
  box-shadow: none;
}
.cid-t9pC75dCJl .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #272727;
}
.cid-t9HqoqdjR1 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.cid-t9HqoqdjR1 .container {
  max-width: 1400px;
}
.cid-t9HqoqdjR1 .card-img2 span {
  padding-top: 6px;
}
.cid-t9HqoqdjR1 .soc-item a {
  padding-top: 5px;
}
.cid-t9HqoqdjR1 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-t9HqoqdjR1 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-t9HqoqdjR1 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-t9HqoqdjR1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t9HqoqdjR1 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-t9HqoqdjR1 #e2_shape {
  fill: #5b828f !important;
}
.cid-t9HqoqdjR1 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-t9HqoqdjR1 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-t9HqoqdjR1 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9HqoqdjR1 .card-img {
  width: auto;
}
.cid-t9HqoqdjR1 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-t9HqoqdjR1 .soc-item span {
  font-size: 1.4rem;
}
.cid-t9HqoqdjR1 .soc-item:hover span {
  color: #5b828f !important;
}
.cid-t9HqoqdjR1 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-t9HqoqdjR1 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-t9HqoqdjR1 .media-wrap {
  margin-bottom: 1rem;
}
.cid-t9HqoqdjR1 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t9HqoqdjR1 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-t9HqoqdjR1 .item {
    justify-content: center;
  }
  .cid-t9HqoqdjR1 .quote::after {
    left: 60px;
  }
}
.cid-t9HqoqdjR1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-t9HqoqdjR1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t9HqoqdjR1 .text1 {
  color: #ffffff;
}
.cid-t9HqoqdjR1 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-t9HqoqdjR1 H5 {
  color: #ffffff;
}
.cid-t9HqoqdjR1 .theme {
  color: #ffffff;
}
.cid-t9HqoqdjR1 .copyright > p {
  color: #ff3366;
}
.cid-t9HqoqdjR1 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tbAV18AFkA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tbAV18AFkA .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-tbAV18AFkA section {
  position: relative;
}
.cid-tbAV18AFkA h4 {
  margin: 0;
}
.cid-tbAV18AFkA a {
  font-weight: 300;
}
.cid-tbAV18AFkA .row {
  align-items: center;
}
.cid-tbAV18AFkA .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-tbAV18AFkA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tbAV18AFkA .img1 {
  color: #ffffff;
}
.cid-tbAV18AFkA .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tbAV18AFkA .align-left,
  .cid-tbAV18AFkA .align-right {
    text-align: center;
  }
  .cid-tbAV18AFkA .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tbAV18AFkA .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-tbAV18AFkA .item {
    padding-bottom: 0.5rem;
  }
}
.cid-tbAV18AFkA .item-title {
  color: #c1c1c1;
}
.cid-tbAV18AFkA H4 {
  color: #c1c1c1;
}
